/* FAQ Section Styles - Standalone */
.faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    border-top: 1px solid #eee;
    clear: both;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #4a1c1c;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a1c1c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #B95D0E;
}

.faq-answer {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0;
    padding-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-answer p {
    margin: 0;
}

.faq-answer ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

/* Dynamic behavior via JS for accordion */
.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    max-height: 600px;
    /* Arbitrary large max-height for transition to work */
    opacity: 1;
    margin-top: 10px;
    padding-bottom: 15px;
}

/* --- Dark Mode Support --- */
@media (prefers-color-scheme: dark) {
    .faq-section {
        border-top-color: #333;
    }

    .faq-section h2 {
        color: #f9f7f2;
    }

    .faq-item {
        border-bottom-color: #333;
    }

    .faq-question {
        color: #f9f7f2;
    }

    .faq-question::after {
        color: #ed8526;
    }

    .faq-answer {
        color: #ccc;
    }
}