/* Price List Section */
.price-list-section {
    padding: 70px 0;
    background-color: #fff;
}

.price-list-section h2 {
    font-family: 'Spartan', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #252525;
    margin-bottom: 15px;
    text-align: center;
}

.price-list-section p {
    font-family: 'Spartan', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
    text-align: center;
}

.price-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.price-card h3 {
    font-family: 'Spartan', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #252525;
    margin-bottom: 15px;
}

.price-card__price {
    font-family: 'Spartan', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 36px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-card__features li {
    font-family: 'Spartan', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-bottom: 10px;
}

.price-card__features li strong {
    font-weight: 600;
    color: #252525;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .price-list-section {
        padding: 50px 0;
    }

    .price-list-section h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .price-list-section p {
        font-size: 14px;
        line-height: 22px;
    }

    .price-card {
        padding: 20px;
    }

    .price-card h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .price-card__price {
        font-size: 24px;
        line-height: 30px;
    }

    .price-card__features li {
        font-size: 13px;
        line-height: 22px;
    }
}