.menu {
  background-color: #004d00;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-logo a {
  text-decoration: none;
  color: #fff;
}
.menu-logo img {
  height: 50px;
  width: auto;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu-items li {
  margin: 0 10px;
}
.menu-items li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.menu-items li a:hover {
  background-color: #003300;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
}


@media screen and (max-width: 600px) {
  .menu {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .menu-toggle {
    display: block;
  }
  .menu-items {
    width: 100%;
    flex-direction: column;
    display: none;
  }
  .menu-items li {
    margin: 5px 0;
  }
  .menu-items li a {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
