.pricing-tiers-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.pricing-tiers {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.pricing-tier {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-tier.featured {
    transform: scale(1.05);
    border: 2px solid #784494;
}

.pricing-tier h3 {
    margin-bottom: 10px;
    font-size: clamp(22px, 2vw, 28px);
}

.pricing-tier .price {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #784494;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-tier ul li {
    font-family: "Poppins", sans-serif;
    position: relative;
    padding: 10px 0 10px 30px;
}

.pricing-tier ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #784494;
    font-weight: bold;
}

.pricing-tier .button {
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .pricing-tiers {
        flex-direction: column;
    }
}