/* FAQ Page Styles */

.page-hero {
    background-color: #2563eb;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.faq-section {
    padding: 40px 0 60px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    color: #2563eb;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.faq-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-content ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-section {
    background-color: #f3f4f6;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
    color: #4b5563;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .faq-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .faq-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
    }
}
