/* Styling voor de custom FAQ container */
.custom-faq-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 100px;
    align-items: flex-start;
}

.faq-questions-list {
    flex: 1;
    min-width: 300px;
}

.faq-answers-content {
    flex: 1.5;
    min-width: 300px;
    padding-bottom: 16px;
}

.faq-question-item {
    padding: 16px 24px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
}

/* Stijl voor de actieve vraag */
.faq-question-item.active {
    background: linear-gradient(84deg, #0B101E -7.59%, #085CA5 34.04%, #0A1120 97.92%);
    color: #ffffff;
    border-color: #0a4b8f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Stijl voor niet-actieve vraag bij hover */
.faq-question-item:not(.active):hover {
    background-color: #f9f9f9;
    border-color: #ddd;
}

/* Verberg alle antwoorden standaard */
.faq-answer-item {
    display: none;
}

/* Toon alleen het actieve antwoord */
.faq-answer-item.active {
    display: block;
}

/* Antwoord tekst style */
.faq-answer-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 450px;
}

.faq-answer-item p:first-child {
    margin-top: 0;
}