.about-page {
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.about-hero {
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
  ),
  url("../images/Kilimanjaro\ Tanzania.jpg") center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
}

/* SECTIONS */
.about-section {
  padding: 70px 20px;
}

.light-bg {
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  color: #228B22;
  margin-bottom: 15px;
}

.about-content h4 {
  margin-top: 15px;
  color: #0d7e1c;
}

.about-content p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.about-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.about-content ul li {
  margin-bottom: 8px;
}

/* IMAGES */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* REVERSE GRID */
.reverse {
  grid-template-columns: 1fr 1fr;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
}

/* ONYESHA HAMBURGER */
  .menu-toggle {
    display: block !important;
  }

  /* MENU IKIFUNGUKA */
  .nav.active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    z-index: 1500;
  }
    .nav-menu {
    display: flex;
    flex-direction: column;
  }
}
