.ivb-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    background: none;
    border: none;
    font-size: 1em;
    color: #004838;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 10px 0;
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
    float: right;
}

.faq-question[aria-expanded="false"]::after {
    content: "+";
    float: right;
}

.faq-answer {
    padding: 5px 0 10px 0;
    color: #333;
    font-size: 0.95em;
}

.faq-question:hover,
.faq-question.active {
    background-color: #004838;
    color: #fff;
}

