/* Base Styles */
:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #dcfce7;
    --primary-very-light: #f0fdf4;
    --text-dark: #111827;
    --text-medium: #ffffff;
    --text-medium1: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --border-radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  p1 {
    margin-bottom: 1rem;
    color: var(--text-medium1);
  }
  p  {
    margin-bottom: 1rem;
    color: var(--text-medium);
  }
  
  .highlight {
    color: var(--primary);
  } 
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
  }
  
  .btn svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
  }
  
  .btn-white {
    background-color: var(--white);
    color: var(--primary);
  }
  
  .btn-white:hover {
    background-color: var(--gray-100);
  }
  
  .btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  } */
  
/* Badge */
.badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .logo-icon {
    color: var(--primary);
    margin-right: 0.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .header-buttons {
    display: none;
  }
  
  .mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
  }
  
  /* Hero Section */
  .hero {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--primary-very-light), var(--white));
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
  }
  
  /* Section Styles */
  section {
    padding: 3rem 0;
  }
  
  .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
  }
  
  /* Mission Section */
  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
  }
  
  .card-icon {
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .card-icon svg {
    width: 3rem;
    height: 3rem;
  }
  
  /* CTA Section */
.cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
  }
  
  .cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 1rem auto 2rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }

  /* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-card {
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  .news-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
  }
  
  .read-more svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
  }
  
  .news-button {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  @media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex: 1;
    }
  }
  
  @media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .involvement-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
  }
  
  @media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
    }
    
    .header-buttons {
        display: flex;
        gap: 1rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero .container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .impact .container {
        flex-direction: row;
    }
    
    .impact-content {
        flex: 1;
    }
    
    .impact-images {
        flex: 1;
    }
    
    .get-involved .container {
        flex-direction: row;
        align-items: center;
    }
    
    .get-involved-image {
        flex: 1;
        order: 2;
    }
    
    .get-involved-content {
        flex: 1;
        order: 1;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
  }