/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background-color: var(--bg-secondary);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--card-shadow);
    overflow: hidden;
}
.faq-question {
    background-color: var(--bg-tertiary);
    color: var(--heading-color);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}
.faq-question.active {
    background-color: var(--primary-color);
    color: var(--header-text);
}
.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--bg-secondary);
}
.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}
.faq-answer p {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* FAQ Section */
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .faq-question::after {
        font-size: 1.3em;
    }
    .faq-answer.active {
        max-height: 250px; /* Adjust as needed */
    }
}