.faq-container {
    width: 100%;
}

.faq-row {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background-color: var(--light-accent);
    cursor: pointer;
    position: relative;
    font-weight: bold;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.faq-row.active .faq-answer {
    padding: 15px;
    max-height: 500px; /* Adjust as needed */
}
