#faq {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

#faq .faq-title {
    font-family: 'Play', sans-serif;
    color: #1f1d1c;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #00B9E4;
    color: #ffffff;
    font-family: 'Play', sans-serif;
    padding: 15px 20px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 26px;
    margin-left: 15px;
}

/* Antwoordblok met fade + slide animatie */
.faq-answer {
    background: #ffffff;
    color: #1f1d1c;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px; /* alleen horizontaal, verticaal komt bij open */
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 800px; /* ruim genoeg voor alle tekst */
    opacity: 1;
    padding: 20px; /* nu ook boven/onder padding */
}

.faq-answer p {
    margin-bottom: 15px;
    color: #1f1d1c;
}

/* ---------------------------------------------------- */
/* BULLET OPMAAK */
/* ---------------------------------------------------- */

.faq-answer ul {
    margin: 12px 0 18px 0;
    padding: 0;
    list-style: none;
}

.faq-answer ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px; /* hoofd bullets */
    font-size: 18px;
    line-height: 1.5;
    color: #1f1d1c;
}

/* hoofd bullets (blauw) */
.faq-answer ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #00B9E4;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* sub bullets verder ingesprongen en zwart */
.faq-answer ul ul li {
    padding-left: 38px;
    font-size: 17px;
}

.faq-answer ul ul li::before {
    width: 6px;
    height: 6px;
    background: #1f1d1c;
    border-radius: 50%;
    position: absolute;
    left: 16px;
    top: 10px;
}

/* ---------------------------------------------------- */
/* RESPONSIVE */
/* ---------------------------------------------------- */

@media (max-width: 600px) {
    #faq {
        margin: 0 15px 30px 15px;
    }

    #faq .faq-title {
        font-size: 22px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 18px;
    }

    .faq-toggle {
        font-size: 22px;
    }

    /* basis voor animatie op mobiel */
    .faq-answer {
        padding: 0 15px;
        font-size: 16px;
    }

    .faq-answer.open {
        padding: 15px;
    }

    .faq-answer ul li {
        font-size: 16px;
        padding-left: 20px;
    }

    .faq-answer ul li::before {
        width: 7px;
        height: 7px;
        top: 8px;
    }

    .faq-answer ul ul li {
        padding-left: 32px;
        font-size: 15px;
    }

    .faq-answer ul ul li::before {
        width: 5px;
        height: 5px;
        left: 14px;
        top: 9px;
    }
}
