    :root {
      --primary-green: #1c6d30;
      --accent-yellow: #fcce05;
      --deep-blue: #0026ad;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      line-height: 1.6;
      color: #222;
      background: #f4f4f4;
    }

   .navbar {
      background-color: white;
      padding: 0.75rem 1.5rem;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-group {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 10px;
    }

    .logo-img {
      height: 50px;
      width: auto;
      border-radius: 6px;
    }

    .logo-text {
      font-size: 1.5rem;
      color: #1c6d30; /* Primary green */
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 1.25rem;
    }

    .nav-link {
      text-decoration: none;
      color: #0026ad; /* Deep blue */
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: #fcce05; /* Accent yellow */
    }

    .hamburger {
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      display: none;
      color: #0026ad;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 1.5rem;
        background-color: white;
        width: 200px;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
      }

      .nav-links.active {
        display: flex;
      }

      .hamburger {
        display: block;
      }
    }

    header.hero {
      background-image: url("../images/dc61428c-02fd-4775-b046-b06cefda6e13.jpeg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem 1rem;
    }

    header.hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    header.hero > * {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 3rem;
      color: var(--accent-yellow);
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 1.5rem;
    }

    .hero-buttons a {
      text-decoration: none;
      padding: 0.75rem 1.5rem;
      margin: 0.5rem;
      display: inline-block;
      font-weight: bold;
      border-radius: 5px;
    }

    .btn-yellow {
      background: var(--accent-yellow);
      color: black;
    }

    .btn-green {
      background: var(--primary-green);
      color: white;
    }

    section {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: auto;
      width: 100%;
    }

    .about-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 4rem 1rem;
      max-width: 1200px;
      margin: auto;
    }

    .about-text {
      flex: 1;
    }

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--deep-blue);
      position: relative;
      display: inline-block;
    }

    .about-text h2::after {
      content: "";
      width: 50%;
      height: 4px;
      background: var(--accent-yellow);
      position: absolute;
      bottom: -5px;
      left: 0;
    }

    .about-text h3 {
      margin-top: 2rem;
      font-size: 1.5rem;
      color: var(--primary-green);
    }

    .about-text p,
    .about-text ul {
      margin: 0.5rem 0 1rem;
      font-size: 1rem;
    }

    .about-text ul {
      padding-left: 1.5rem;
      list-style-type: disc;
    }

    .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-image img {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid var(--primary-green);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      z-index: 1;
      position: relative;
    }

    .about-image img:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }

    @media (max-width: 768px) {
      .about-grid {
        flex-direction: column;
        text-align: center;
      }

      .about-image img {
        width: 220px;
        height: 220px;
      }
    }
    
    .contact-icons {
      background: var(--primary-green);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    .contact-icons h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .contact-icons p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .icons i {
      font-size: 2rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
      cursor: pointer;
    }

    .icons i:hover {
      transform: scale(1.2);
      color: var(--accent-yellow);
    }

    .donate-box {
      margin-top: 2rem;
      padding: 2rem;
      background: white;
      border-left: 8px solid var(--accent-yellow);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      text-align: center;
    }

    .donate-box p {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
    }

    .donate-box a {
      display: inline-block;
      margin-top: 1rem;
      padding: 1.2rem 2.5rem;
      background: var(--primary-green);
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: 1px;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .donate-box a i {
      margin-right: 10px;
      font-size: 1.4rem;
    }

    .donate-box a:hover {
      background: #145122;
      transform: scale(1.05);
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }

    .modal-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .modal-content, .second-modal {
      background: white;
      padding: 2.5rem;
      border-radius: 12px;
      max-width: 500px;
      text-align: center;
      position: relative;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      transform: translateY(-40px);
      opacity: 0;
      transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    }

    .modal-overlay.show .modal-content,
    .modal-overlay.show .second-modal {
      transform: translateY(0);
      opacity: 1;
    }

    .modal-content h2,
    .second-modal h2 {
      color: var(--deep-blue);
      margin-bottom: 1rem;
      font-size: 1.9rem;
    }

    .modal-content p,
    .second-modal p {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .modal-content .btn-green,
    .second-modal .btn-green {
      padding: 1rem 2.5rem;
      font-size: 1.3rem;
      font-weight: 800;
      background: var(--primary-green);
      color: white;
      border-radius: 10px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .modal-content .btn-green i,
    .second-modal .btn-green i {
      font-size: 1.4rem;
    }

    .modal-content .btn-green:hover,
    .second-modal .btn-green:hover {
      background: #145122;
      transform: scale(1.05);
    }

    .close-modal,
    .close-second-modal {
      position: absolute;
      top: 10px;
      right: 15px;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #333;
    }

    .team-section {
      padding: 3rem 1rem;
      text-align: center;
    }

    .team-section h2 {
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: var(--deep-blue);
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .team-member {
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      max-width: 250px;
    }

    .team-member img {
      width: 100%;
      border-radius: 8px;
      border: 2px solid var(--primary-green);
      margin-bottom: 1rem;
    }

    .team-member h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--primary-green);
    }

    .team-member p {
      font-size: 1rem;
      color: #555;
    }

footer {
  background: var(--deep-blue);
  color: white;
  padding: 3rem 1rem 1.5rem; /* Less bottom space */
  width: 100%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.footer-grid > div {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}

.footer-grid h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-yellow);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 0.5rem;
}

.footer-grid ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.footer-grid ul li a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #0f0f0f;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    text-align: left;
  }
}
