﻿.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.faq-active .faq-content {
    max-height: max-content; /* or max content height */
}