.faq-section {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.faq-answer.hidden {
    display: none;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    margin-left: 10px;
    padding: 0px 10px 10px 10px;
    max-width: 260px;
}