/* FAQ Page Specific Styles */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* Hero Section */
.faq-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.faq-hero h1 {
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #1961a0;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    margin-bottom: 4rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.1);
    border-color: #1E73BE;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: #f0f7ff;
    color: #1E73BE;
}

.faq-question.active {
    background: #1E73BE;
    color: white;
    border-bottom-color: #1d4ed8;
}

.faq-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.show {
    padding: 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer a {
    color: #1E73BE;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.faq-image {
    margin: 1.5rem 0;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-cta {
    text-align: center;
    margin: 1.5rem 0;
}

/* Pricing Section */
.pricing-section {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-family: sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.1);
    border-color: #1E73BE;
}

.pricing-card.featured {
    border-color: #1E73BE;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-10px);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E73BE;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E73BE;
    margin-bottom: 1.5rem;
}

.plan-details {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-disclaimer {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-disclaimer a {
    color: #1E73BE;
    text-decoration: none;
}

.pricing-disclaimer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.faq-cta-section {
    background: linear-gradient(135deg, #1E73BE 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.faq-cta-section h2 {
    font-family: sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-cta-section .btn {
    background: white;
    color: #1E73BE;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.faq-cta-section .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 100px 1rem 2rem;
    }
    
    .faq-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer.show {
        padding: 1.5rem;
    }
    
    .pricing-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-cta-section {
        padding: 3rem 2rem;
    }
    
    .faq-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        width: 30px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .faq-cta-section h2 {
        font-size: 1.5rem;
    }
}