.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.accordion-content.open {
  max-height: 1000px; /* Set according to your content height */
}
