
    /* Base Styles - Matching index.html */
    :root {
      --primary-color: #166534;
      --primary-light: #059669;
      --primary-dark: #14532d;
      --text-color: #333;
      --bg-color: #f8f9fa;
      --header-bg: #f0fdf4;
      --header-text: #166534;
      --card-bg: #fff;
      --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --footer-bg: #000;
      --footer-text: #d1d5db;
      --green-light: #e6f0e6;
      --green-dark: #2f4f33;
      --green-mid: #4a7c3a;
    }

    [data-theme="dark"] {
      --primary-color: #4ade80;
      --primary-light: #34d399;
      --primary-dark: #166534;
      --text-color: #f0f0f0;
      --bg-color: #1a1a1a;
      --header-bg: #264734;
      --header-text: #f0f0f0;
      --card-bg: #2d2d2d;
      --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      --footer-bg: #050505;
      --footer-text: #b0b0b0;
      --green-light: #1a2a1a;
      --green-dark: #4a7c3a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: background-color 0.3s, color 0.3s;
    }

    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      padding-top: 80px;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header - Matching index.html */
    header {
      background-color: var(--header-bg);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo img {
      width: 30px;
    }

    .logo-text {
      color: var(--green-dark);
      font-weight: bold;
      font-size: 1.25rem;
      font-family: 'Poppins', sans-serif;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-color);
    }

    .nav-link.active {
      color: var(--primary-color);
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 0.25rem;
    }

    /* Theme Toggle */
    .theme-toggle {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      margin-left: 1rem;
      color: var(--text-color);
      font-size: 1.25rem;
    }

    /* Mobile Menu Button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: var(--text-color);
      font-size: 1.5rem;
    }

    /* Button */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* About Section */
    .about-section {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin: 4rem 0;
    }

    @media (min-width: 768px) {
      .about-section {
        flex-direction: row;
      }
    }

    .about-content {
      flex: 2;
    }

    .about-image {
      flex: 1;
      background-color: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1.5rem;
      min-height: 250px;
      border-radius: 8px;
      box-shadow: var(--card-shadow);
    }

    .about-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
    }

    .about-text {
      color: var(--text-color);
      margin-bottom: 1rem;
      line-height: 1.7;
      font-size: 1.125rem;
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .stat-item {
      text-align: center;
      flex: 1 1 140px;
      min-width: 140px;
      background-color: var(--green-light);
      padding: 1rem;
      border-radius: 0.5rem;
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      display: block;
      font-weight: 700;
      font-size: 1.375rem;
      color: var(--primary-color);
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary-color);
    }

    /* Mission Section */
    .mission-section {
      text-align: center;
      margin: 4rem 0;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
    }

    .section-text {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.125rem;
      color: var(--text-color);
      line-height: 1.7;
    }

    /* Founder Section */
    .founder-section {
      max-width: 300px;
      margin: 4rem auto;
      text-align: center;
    }

    .founder-image {
      border-radius: 8px;
      margin: 0 auto;
      width: 200px;
      height: 250px;
      object-fit: cover;
      box-shadow: var(--card-shadow);
    }

    .founder-name {
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--primary-color);
      margin-top: 1rem;
    }

    .founder-bio {
      font-size: 1rem;
      color: var(--text-color);
      line-height: 1.7;
      margin-top: 0.5rem;
    }

    /* Team Section */
    .team-section {
      margin: 4rem 0;
      text-align: center;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    @media (min-width: 640px) {
      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .team-member {
      text-align: center;
      transition: transform 0.3s;
      background-color: var(--card-bg);
      border-radius: 0.75rem;
      padding: 1.5rem;
      box-shadow: var(--card-shadow);
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-image {
      border-radius: 8px;
      width: 150px;
      height: 180px;
      object-fit: cover;
      margin: 0 auto;
    }

    .team-placeholder {
      background-color: var(--green-light);
      border-radius: 8px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1rem;
    }

    .team-name {
      font-weight: 600;
      font-size: 1.125rem;
      color: var(--primary-color);
      margin-top: 1rem;
    }

    .team-position {
      font-size: 0.875rem;
      color: var(--text-color);
      margin-top: 0.25rem;
    }

    /* Newsletter Section */
    .newsletter-section {
      background-color: var(--green-light);
      border-radius: 0.75rem;
      padding: 2rem;
      margin: 4rem 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      box-shadow: var(--card-shadow);
    }

    @media (min-width: 768px) {
      .newsletter-section {
        flex-direction: row;
        align-items: center;
      }
    }

    .newsletter-content {
      flex: 2;
    }

    .newsletter-form {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }

    .newsletter-text {
      font-size: 1.125rem;
      color: var(--text-color);
      line-height: 1.7;
    }

    .form-input {
      padding: 0.75rem 1rem;
      border: 1px solid var(--primary-light);
      border-radius: 0.5rem;
      font-size: 1rem;
      color: var(--text-color);
      background-color: var(--bg-color);
    }

    .form-input:focus {
      outline: none;
      box-shadow: 0 0 0 2px var(--primary-color);
    }

    .btn-subscribe {
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-subscribe:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .header-container {
        padding: 1rem;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
      }

      nav.open {
        left: 0;
      }

      .about-section {
        flex-direction: column;
      }

      .stats {
        justify-content: center;
      }
    }

    /* Footer Styles */
    footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 4rem 2rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .footer-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .footer-about {
      grid-column: 1 / -1;
    }

    @media (min-width: 768px) {
      .footer-about {
        grid-column: auto;
      }
    }

    .footer-about h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .footer-about h2 span {
      color: #4ade80;
    }

    .footer-about p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--footer-text);
    }

    .footer-info h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-info ul {
      list-style: none;
    }

    .footer-info li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .footer-info svg {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
      color: #4ade80;
    }

    .footer-info a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-info a:hover {
      color: white;
    }

    .footer-contact {
      display: flex;
      gap: 1rem;
      font-size: 0.8rem;
      color: #9ca3af;
      margin-top: 0.5rem;
    }

    .footer-contact svg {
      width: 1rem;
      height: 1rem;
      color: #4ade80;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer-social a {
      color: var(--footer-text);
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #4ade80;
    }

    .footer-social svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .footer-links h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-links nav {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: #4ade80;
    }

    .footer-links svg {
      width: 1rem;
      height: 1rem;
      color: #4ade80;
    }

    .footer-description {
      max-width: 800px;
      margin: 2rem auto 0;
      text-align: center;
      font-size: 0.8rem;
      color: #9ca3af;
      line-height: 1.6;
    }

    .footer-copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #374151;
      font-size: 0.75rem;
      color: #9ca3af;
    }
