.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease;
    opacity: 0;
}

.accordion-content.open {
    max-height: 1000px; /* atau besarin sesuai kebutuhan */
    opacity: 1;
}

.accordion-content.open {
    max-height: 2000px;
}

.rotate-180 {
    transform: rotate(180deg);
}
