/* CSS Variables & Global Styles */
    :root {
      --primary: #1e4d2b;
      --primary-light: #e6f4ea;
      --primary-hover: #15381f;
      --text-dark: #0f172a;
      --text-muted: #475569;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    /* Hero Banner */
    .hero-banner {
      background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 77, 43, 0.85)), 
                  url('https://images.unsplash.com/photo-1511497584788-876761c119ef?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: var(--white);
      text-align: center;
      padding: 100px 20px;
    }

    .hero-banner span {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.875rem;
      font-weight: 600;
      color: #a7f3d0;
    }

    .hero-banner h1 {
      font-size: 2.75rem;
      font-weight: 800;
      margin: 8px 0 16px 0;
      letter-spacing: -0.5px;
    }

    .hero-banner p {
      font-size: 1.125rem;
      color: #cbd5e1;
      max-width: 680px;
      margin: 0 auto;
    }

    /* Main Container */
   

    /* Impact Numbers Section */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: -120px;
      margin-bottom: 70px;
      position: relative;
      z-index: 10;
    }

    .stat-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 20px;
      text-align: center;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-title {
      font-size: 0.938rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .stat-desc {
      font-size: 0.813rem;
      color: var(--text-muted);
    }

    /* Section Typography */
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title span {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.813rem;
      letter-spacing: 1.5px;
    }

    .section-title h2 {
      font-size: 2.125rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-top: 6px;
    }

    /* Pillars of Impact Grid */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 80px;
    }

    .pillar-card {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 28px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
    }

    .pillar-card:hover {
      transform: translateY(-5px);
    }

    .pillar-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .pillar-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .pillar-card p {
      font-size: 0.938rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Detailed Focus Area Split Box */
    .focus-split {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 80px;
    }

    @media (max-width: 768px) {
      .focus-split {
        grid-template-columns: 1fr;
      }
    }

    .focus-image {
      background: url('../images/community.jpg') center/cover no-repeat;
      min-height: 320px;
    }

    .focus-content {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .focus-content h3 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-dark);
    }

    .focus-content p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .check-list {
      list-style: none;
    }

    .check-list li {
      font-size: 0.9rem;
      color: var(--text-dark);
      font-weight: 500;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .check-list li::before {
      content: "✓";
      color: var(--primary);
      font-weight: bold;
      background: var(--primary-light);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
    }

    /* CTA Banner */
    .cta-banner {
      background: var(--primary);
      color: var(--white);
      border-radius: 12px;
      padding: 48px 30px;
      text-align: center;
    }

    .cta-banner h3 {
      font-size: 1.85rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta-banner p {
      color: #d1fae5;
      max-width: 620px;
      margin: 0 auto 24px auto;
      font-size: 1rem;
    }

    .btn-light {
      display: inline-block;
      background: var(--white);
      color: var(--primary);
      font-weight: 700;
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s ease;
    }

    .btn-light:hover {
      background: #f1f5f9;
      text-decoration: none;
    }


    /* Impact Categories Grid */
.benefits-section {
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.category-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.benefit-item {
  margin-bottom: 16px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item strong {
  color: var(--text-dark);
  font-size: 0.938rem;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 2px;
  line-height: 1.5;
}

/* Impact Category Cards - Updated with Core Outcomes Hover & Styling */
.benefits-section {
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

/* Card Hover Lift & Shadow */
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: #cbd5e1;
}

/* Icon Wrapper Styling */
.category-card .icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Icon Flip on Hover */
.category-card:hover .icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.benefit-item {
  margin-bottom: 16px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item strong {
  color: var(--text-dark);
  font-size: 0.938rem;
  display: block;
  margin-bottom: 2px;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}