body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

.main-nav {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
}

/* активное меню */
.main-nav.active {
  max-height: 500px; /* раскрытие */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 10px;
}

/* список */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  margin: 10px 0;
}

.main-nav a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
  display: block;
  padding: 5px;
  transition: background 0.3s;
}

.main-nav a:hover {
  background: #f0f0f0;
}

/* подменю */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.has-submenu.open .submenu {
  max-height: 200px; /* раскрытие подменю */
}

/* бургер */
.menu-toggle {
  font-size: 1.2em;
  background: none;
  border: none;
  cursor: pointer;
  color: #2563eb;
  margin: 10px;
}

main {
  padding: 20px;
  background: #fff;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
}
