#faq {
    padding: 35px 0px;
}
#faq h2 {
    text-align: center;
}
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    background-color: #E8F9FB;
    border-radius: 20px;
    margin-bottom: 10px;
}
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0; /* Zorgt dat het icoon niet wordt platgedrukt bij lange vragen */
    margin-left: 20px;
}
.faq-question {
	color: #101010;
}
.faq-question span {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
}

/* De horizontale lijn */
.faq-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333; /* Kleur van het plusje */
    transform: translateY(-50%);
}

/* De verticale lijn */
.faq-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #333;
    transform: translateX(-50%);
    transition: transform 0.3s ease; /* Zorgt voor de animatie naar minnetje */
}

/* Wanneer de vraag 'active' is, draaien we de verticale lijn weg */
.faq-question.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0; /* Maakt de verticale lijn onzichtbaar -> resultaat is een minnetje */
}

/* Optioneel: laat de horizontale lijn ook een beetje draaien voor een speels effect */
.faq-question.active .faq-icon::before {
    transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 1024px) {
    #faq {
        padding: 50px 0px;
    }
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Twee gelijke kolommen */
        gap: 40px; /* Ruimte tussen de kolommen */
        align-items: start;
    }
}
.faq-question {
    width: 100%;
    padding: 25px 25px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question span {
    font-size: 22px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.answer-content {
    padding: 0 25px 20px 25px;
    line-height: 1.6;
}