/* === Reset & Base === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #222;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* === Header === */
  header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
  }
  
  .logo img {
    height: 45px;
  }
  
  .main-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #2a623d;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    color: #26b74f;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    color: #2a623d;
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2a623d;
  }

  /* === Hero Section === */
  .hero {
    position: relative;
    text-align: center;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .button-primary {
    background-color: #2a623d;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }

  .button-primary:hover {
    background-color: #1dd150;
  }

  /* === Content === */
  .content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
  }

  .section {
    margin-top: 3rem;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card p {
    padding: 1rem;
  }

  /* === Footer === */
  footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    background-color: #2a623d;
    color: white;
    padding: 2rem;
    margin-top: 3rem;
  }

  footer h4 {
    margin-bottom: 1rem;
  }

  footer a {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }

  footer a:hover {
    color: #37ea0b;
  }

  footer img {
    height: 40px;
    margin-bottom: 1rem;
  }

  footer small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  /* === Responsive === */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
      display: flex;
    }

    .social-icons.mobile {
      display: flex;
    }

    .social-icons.desktop {
      display: none;
    }
  }

  @media (min-width: 769px) {
    .social-icons.mobile {
      display: none;
    }
  }

  /* === Our Priorities Section === */
.priorities.section {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 3rem;
    align-items: center;
  }
  
  .priorities-text {
    flex: 1;
    padding: 2rem;
    min-width: 280px;
  }
  
  .priorities-text h2 {
    color: #2a623d;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  
  .priorities-text ol {
    padding-left: 1.5rem;
    list-style-type: decimal;
  }
  
  .priorities-text li {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .priorities-image {
    flex: 1;
    min-width: 280px;
  }
  
  .priorities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-left: 1px solid #eee;
  }
  
  @media (max-width: 768px) {
    .priorities.section {
      flex-direction: column;
    }
    .priorities-image img {
      border-left: none;
      border-top: 1px solid #eee;
    }
  }
  

  .partners-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
  }
  
  .partner-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .partner-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logo img {
    max-height: 120px;
    width: auto;
  }
  
  .partner-info {
    flex: 2;
    padding: 1.5rem 2rem;
  }
  
  .partner-info a {
    color: #2a623d;
    text-decoration: underline;
  }
  
  .partner-info a:hover {
    color: #1e4d2b;
  }
  
  @media (max-width: 768px) {
    .partner-card {
      flex-direction: column;
      text-align: center;
    }
  
    .partner-logo,
    .partner-info {
      padding: 1rem;
    }
  
    .partner-info {
      text-align: left;
    }
  }



  .project-results-intro {
    background-color: #f2fdf6;
    padding: 2rem;
    text-align: center;
  }
  .project-results-intro .intro-text {
    font-size: 1.2rem;
    color: #2a623d;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .result-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .result-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .result-item.reverse {
    flex-direction: row-reverse;
  }
  
  .result-item img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  .result-content {
    flex: 1 1 300px;
  }
  
  .result-content h2 {
    font-size: 1.5rem;
    color: #2a623d;
    margin-bottom: 1rem;
  }
  
  .result-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .button-primary {
    background-color: #2a623d;
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .button-primary:hover {
    background-color: #1e4d2b;
  }
  
  @media (max-width: 768px) {
    .result-item,
    .result-item.reverse {
      flex-direction: column !important;
    }
  }






  .page-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .news-section {
    padding: 3rem 1rem;
  }
  
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-5px);
  }
  
  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  .news-content .date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
  }
  
  .button-secondary {
    display: inline-block;
    margin-top: 1rem;
    background-color: #2a623d;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .button-secondary:hover {
    background-color: #1cb24a;
  }





  .contact-section {
    background: #f9f9f9;
    padding: 3rem 1rem;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
  }

  .contact-info h2 {
    color: #2a623d;
    margin-bottom: 1rem;
  }

  .contact-details {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }

  .contact-details li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .contact-details a {
    color: #2a623d;
    text-decoration: underline;
  }

  .follow-us {
    margin-top: 2rem;
  }

  .follow-us h4 {
    margin-bottom: 0.5rem;
    color: #2a623d;
  }

  .social-icons a {
    font-size: 1.4rem;
    color: #2a623d;
    margin-right: 1rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #26b74f;
  }

  .contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }

  .button-primary {
    background-color: #2a623d;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .button-primary:hover {
    background-color: #1dd150;
  }
  

  .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content .date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.button-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #2a623d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.button-secondary:hover {
  background-color: #1dd150;
}



.footer-bottom {
    text-align: center;
    background-color: #ffffff;
    color: #2a623d;
    padding: 10px;
    width: 100%;
}

.footer-bottom a {
    color: #1dd150;
    font-weight: bold;
}

/* === Language Switcher === */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
}

.language-switcher select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #2a623d;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.language-switcher select:hover {
  background-color: #f0f0f0;
}

.language-switcher select:focus {
  outline: none;
  background-color: #e8f5e8;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
  }
  
  .language-switcher select {
    font-size: 12px;
    padding: 2px 6px;
  }
}
