.faq-accordion {
    margin: 0 auto;
    padding: 20px 0;
}

.faq-item {
    background: #3890ad17;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #013040;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #866e02;
}

.faq-question.active {
    color: #013040;
}

.faq-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.2s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: #333;
    line-height: 1.6;
}

.faq-editor-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.faq-item[data-state="open"] .faq-icon-closed {
    display: none !important;
}

.faq-item[data-state="open"] .faq-icon-open {
    display: block !important;
}

.faq-item[data-state="closed"] .faq-icon-closed {
    display: block !important;
}

.faq-item[data-state="closed"] .faq-icon-open {
    display: none !important;
}
.faq-accordion .faq-item .faq-question {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .faq-accordion .faq-item .faq-question {
        font-size: 18px !important;
    }
}