/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.main-header {
  background-color: #004d00;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Add this to position hamburger inside */
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute; /* Now right: 0 will work */
  right: 15px;            /* Align to right edge */
  top: 50%;            /* Vertically center */
  transform: translateY(-50%);
}

/* Hamburger Bars */
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #004d00;
    width: 200px;
    padding: 15px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
