.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  will-change: max-height;
}

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