header {
    background-color: #004225;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
}

header .logo {
    font-size: 15px;
    font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding-right: 35px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a8d5a8;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 35px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.about-image {
    border-radius: 15px;
}

.flyer-img {
    width: 100%;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #2d5a27;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }
   .hamburger.active span:nth-child(1){
    transform: translate(-50%, 70%) rotate(-45deg);
  }
    .hamburger.active span:nth-child(2){
    transform: translate(-50%, -30%) rotate(45deg);
  }
    .hamburger.active span:nth-child(3){
      opacity: 0;
  }
}