
/* Стили для подменю */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.submenu.active {
  max-height: 500px; /* Увеличь при необходимости */
}
