.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease-out;
}

details[open] .faq-content {
    max-height: 500px; /* Adjust based on your content */
    transition: max-height 0.15s ease-in;
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}
