
body {
  margin: 0;
  font-family: 'Prompt', sans-serif;
  background-color: #f4f6f8;
}


.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  padding: 10px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #218c4a;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 10px 0;
  z-index: 999;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
}

.mobile-menu a i {
  min-width: 24px;
  text-align: center;
  color: #218c4a;
}


.mobile-menu a:hover {
  background: #e8f5e9;
  color: #1b5e20;
}


.mobile-menu.responsive {
  display: flex;
}


@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
