body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  background-size: cover;
  position: relative;
  color: white;
  transition: opacity 0.4s ease;
  font: 400 1.2rem 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 5px 10px;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.company-logo {
  height: auto;
  width: clamp(80px, 15vw, 160px);
  object-fit: contain;
  display: block;
}

.top-navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  margin-right: 20px;
  border-radius: 50px;
  border: 2.5px solid black;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  font-weight: normal;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-links a.active, .nav-links a:hover {
  background: black;
  color: white;
  font-weight: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg);
}

.hamburger i {
  pointer-events: none;
  color: black;
}

@media (max-width: 768px) {
  .top-section{
    padding: 12px;
  }

  .top-navbar {
    justify-content: flex-end;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.4s ease;
    z-index: 90;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    background: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 2.5px 6px;
    transition: all 0.3s;
  }

  .nav-links a.active, .nav-links a:hover {
    color: white;
    background: black;
  }
}

.giz-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 0 8%;
}

.giz-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  max-width: 90vw;
  z-index: 1;
  pointer-events: none;
}

.giz-body {
  position: relative;
  z-index: 2; 
  width: 100%;
  color: #2b2b2b;
  box-sizing: border-box;
  max-height: 100vh;
  overflow-y: auto;
}

.giz-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2b2b2b;
}

.project-info p {
  margin: 4px 0;
  font-size: 1rem;
  color: #2b2b2b;
}

.objective-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 2.5rem;
  gap: 1.5rem;
}

.objective-box {
  background: linear-gradient(135deg, #d6c28d, #c4aa6f);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.objective-section p {
  flex: 1;
  min-width: 250px;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.approach-section, .deliverables-section, .impact-section {
  margin-top: 2.5rem;
}

.approach-section h2,
.deliverables-section h2,
.impact-section h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 0.6rem;
}

.approach-section p,
.impact-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2b2b2b;
  margin: 0;
}

.deliverables-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.deliverables-section li {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.deliverables-section li strong {
  font-weight: 600;
  color: #2b2b2b;
}

@media (max-width: 900px) {
  .giz-hero-wrapper {
    padding: 0 6%;
  }

  .giz-header h1 {
    font-size: 2rem;
  }

  .objective-section {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .camfed-hero-wrapper {
    padding: 0 5%;
  }

  .giz-header h1 {
    font-size: 1.8rem;
  }

  .objective-box {
    padding: 0.5rem 1rem;
  }

  .approach-section h2,
  .deliverables-section h2,
  .impact-section h2 {
    font-size: 1.4rem;
  }

  .objective-section p,
  .approach-section p,
  .impact-section p,
  .deliverables-section li {
    font-size: 0.95rem;
  }
}

.hamburger i {
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.hamburger.open i {
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 375px) {
  .top-section {
    padding: 0 5px 10px 5px;
  }

  .camfed-hero-wrapper {
    padding: 0 3%;
  }
}