body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: 80px;
  background-color: #f8f8f8;
}

/* NAV BAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  color: #006837;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-sizing: border-box;
}

.logo img {
  height: 90px;
  width: auto;
  padding: auto;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: green;
  z-index: 1001;
}

/* SIDE MENU */
.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #008000;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 9999;
}

.side-menu a {
  display: block;
  padding: 16px 32px;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.side-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.side-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  text-decoration: none;
  color: white;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-img {
  width: 100%;
  max-height: 600px;
  object-fit:cover;
  filter: brightness(0.5);
  transform: scale(1);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
}

section {
  padding: 3rem 2rem;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 16px;
}
