.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #2c3e50;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* vraag + plusje hover ook groen */
.faq-question:hover {
    background-color: #f1f1f1;
    color: #27ae60;
}

.faq-question:hover .plus {
    color: #27ae60;
}

.faq-question .plus {
    font-size: 32px;
    font-weight: 400;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #333;
}

.faq-question.active .plus {
    transform: rotate(45deg);
    color: #27ae60;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #fff;
    padding: 0 20px; /* alleen horizontaal, wordt opengeklapt */
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    padding: 15px 0; /* ruimte boven en onder de tekst */
    margin: 0;
}

.email-footer {
    border-bottom: none;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.email-footer a {
    color: #219150;
    text-decoration: none;
}

.email-footer a:hover {
    text-decoration: underline;
}
