/* FAQs Page Specific Styles */

/* Hero Section */
.faqs-hero {
    background: #F5F4F0;
    text-align: center;
    padding: 50px 20px;
}

.faqs-hero h1 {
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 400;
    color: #3C3D42;
    line-height: 1.3;
    margin-bottom: 25px;
}

.faqs-hero h1 em {
    font-style: italic;
    color: #E56B4D;
}

.faqs-hero p {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    color: #6D6E71;
    line-height: 1.3;
    margin: 0;
}

/* FAQ Container */
.faq-container {
    background: #F5F4F0;
    padding: 0 20px 100px;
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 30px;
}

.faq-divider {
    height: 1px;
    background: #CECED0;
    margin-bottom: 24px;
}

.faq-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: #3C3D42;
    line-height: 1.3;
    width: 400px;
    flex-shrink: 0;
    margin: 0;
}

.faq-answer {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 400;
    color: #6D6E71;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Collapsed state - hide answer */
.faq-item.collapsed .faq-answer {
    display: none;
}

.faq-item.collapsed .faq-question-wrapper {
    justify-content: space-between;
}

/* Quiz Banner styles moved to global style.css */

/* Responsive Design */
@media (max-width: 991px) {
    .faqs-hero h1 {
        font-size: 44px;
    }

    .faqs-hero p {
        font-size: 24px;
    }

    .faq-question-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .faq-question {
        width: 100%;
    }

    .faq-item.collapsed .faq-question-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .faqs-hero h1 {
        font-size: 36px;
    }

    .faqs-hero p {
        font-size: 20px;
    }

    .faq-question {
        font-size: 20px;
        width: calc(100% - 40px);
        padding-right: 10px;
    }

    .faq-answer {
        font-size: 18px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: auto;
    }

    .faq-item.collapsed .faq-question-wrapper {
        gap: 10px;
    }

    .faq-question-wrapper {
        gap: 10px;
    }
}
