section#faq .antwoord{
    display: none;
}

section#faq h2{
flex: 0 0 100%;
color: #15388d;
font-weight: 900;
text-transform: uppercase;
margin-bottom: 40px;
}

section#faq .single-faq{
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

section#faq .vraag{
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}

section#faq .antwoord{
    padding-top: 20px;
    font-size: 20px;
}

section#faq .vraag .vraagtekst{
    flex: 1;
    font-size: 20px;
}

section#faq .faq-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 40px;
    align-items: flex-start;
}

section#faq .faq-row .vraag .vraagnummer{
    width: 30px;
    height: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eb5c1d;
    font-weight: bold;
    border-radius: 4px;
}

section#faq .faq-row .vraag .fa-minus{
    display: none;
}

@media only screen and (max-width: 1000px) {
    section#faq .faq-row{
        grid-template-columns: auto;
    }

    section#faq h2{
        font-size: 30px;
        line-height: 30px;
    }
}