/* FAQ Widget Styles */
.faq-widget .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.faq-widget .faq-item.active .faq-answer {
    max-height: 200px; /* adjust as needed */
    opacity: 1;
    margin-top: 12px;
}

.faq-widget .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #f39200; /* accent color */
}
