.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2em;
}

.faq-answer {
    display: none;
    margin-top: 10px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    display: block;
}

#showMoreFaq {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #e6b980;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#additionalFaqs {
    display: none;
}