/* FAQ Page Specific Styles */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    position: relative;
    z-index: 2;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* FAQ Graphic */
.faq-graphic {
    max-width: 300px;
    margin: 0 auto 40px;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 20px;
    background-color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer-content {
    padding-top: 10px;
    color: var(--gray-dark);
}

.faq-answer-content p {
    margin-bottom: 15px;
}

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

.faq-answer-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.faq-answer-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light);
    border-radius: var(--radius);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Responsive Styles for FAQ Page */
@media (max-width: 768px) {
    .faq-graphic {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}