body {
  margin: 0;
  font-family: sans-serif;
}
.menu-toggle,
.menu-close {
  position: fixed;
  top: 15px;
  left: 15px;
  background: #EC4C24;
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease;
}
.menu-close {
  display: none;
  background: #EC4C24;
  left: 265px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: #F7F7F7;
  color: black;
  padding: 20px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
  transition: left 0.9s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.mobile-menu li {
  cursor: pointer;
  font-size: 18px;
}
.mobile-menu a {
  color: black;
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: #EC4C24;
}
.dropdown {
  overflow: hidden;
  max-height: 0;
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  gap: 8px;
  transition: max-height 0.9s ease;
}
.dropdown a {
  font-size: 16px;
}
li.active .dropdown {
  max-height: 300px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
}
.dropdown-toggle span {
  flex-grow: 1;
}
.menu-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.menu-buttons button {
  padding: 10px;
  font-size: 18px;
  background: #EC4C24;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.menu-buttons button:hover {
  background: #EC4C24;
  transform: scale(1.02);
}
