* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f7f6;
  color: #1f2a24;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.page-hero {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(15,61,46,0.75) 0%, rgba(15,61,46,0.88) 100%),
    url("Kirsten4.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  color: #fff;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #d8ab37;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.page-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  max-width: 760px;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.92;
}

.section {
  padding: 70px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.section-heading span {
  display: block;
  color: #2db7b7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 36px;
  line-height: 1.2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(20, 40, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(20, 40, 30, 0.12);
}

.card h3 {
  color: #0f3d2e;
  margin-bottom: 16px;
}

.card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.86;
}

.process-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step,
.impact-card {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(20, 40, 30, 0.08);
}

.process-step .step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d8ab37;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-step h3,
.impact-card h3 {
  margin-bottom: 14px;
  color: #0f3d2e;
}

.process-step p,
.impact-card p {
  line-height: 1.8;
  opacity: 0.82;
}

.impact-card h3 {
  font-size: 40px;
}

.impact-list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 16px;
}

.impact-list li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 14px 30px rgba(20, 40, 30, 0.06);
  font-size: 16px;
  line-height: 1.7;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.support-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(20, 40, 30, 0.08);
}

.support-card h3 {
  margin-bottom: 14px;
  color: #0f3d2e;
}

.support-note {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 18px;
  opacity: 0.82;
}

.partner-list {
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.partner-list li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(20, 40, 30, 0.06);
}

.cta {
  background: #e9f3ee;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.8;
  opacity: 0.86;
}

.btn,
.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #1f7a4d;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn:hover,
.hero-btn:hover {
  background: #16603b;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .grid,
  .process-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  .page-hero {
    min-height: 420px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .grid,
  .process-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
