/* Pricing page styles */
.pricing-hero {
    padding: 3rem 0;
    background: white;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-primary, #886ab5);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-hero .text-primary {
    color: var(--theme-primary, #886ab5) !important;
}

.pricing-hero .btn-warning {
    background-color: #ff743c;
    border-color: #ff743c;
    color: white;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-hero .btn-warning:hover {
    background-color: #e05d2b;
    border-color: #e05d2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 116, 60, 0.3);
}

.pricing-faq {
    padding: 3rem 0;
    background: white;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-primary, #886ab5);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 1.8rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }
}

