.faq-accordion {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
}

.faq-question {
    cursor: pointer;
    padding: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbfbfb;
}

.faq-question span {
    font-size: 18px;
}

.faq-answer {
    display: none;
    padding: 16px;
}

.faq-answer p {
    margin: 0;
}

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