.header {
  background-color: #2e8b57;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.nav__logo img {
  height: 48px;
}

.nav__menu {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #d0ffe4;
}

.nav__toggle,
.nav__close {
    
}

