.acf-faq .faq-item {
    margin-bottom: 10px;
}

.acf-faq .faq-question {
    background: #f5f5f5;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.acf-faq .faq-question::after {
    content: ">";
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}

.acf-faq .faq-item.active .faq-question::after {
    transform: rotate(90deg);
}

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

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