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


.accordion-content.expanded {
    max-height: 550px; /* Adjust as needed */
}