* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
  }
  
  /* Header */
  .header {
    background: #2c6742;
    color: #fff;
    padding: 1rem 0;
    width: 100%;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  .menu .nav-link {
    margin-left: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    margin: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
    color: #006400;
  }
  
  .hero p {
    margin: 1rem 0;
  }
  
  .about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
    margin: 2rem 0;
    gap: 2rem; /* Adjust the gap between the columns */
  }
  
  .about-column {
    text-align: center;
    flex: 0 0 auto; /* Prevent columns from stretching too far apart */
  }
  
  .about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .about-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c6742;
  }
  
  .cta {
    background: #2c6742;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  

  /* Newsletter Section */
  .newsletter {
    text-align: center;
    margin: 2rem 0 0;
    background-color: #2c6742; 
    color: #fff; 
    padding: 2rem; 
    border-radius: 5px; 
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form input {
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
  }
  
  .newsletter-form button {
    background: #fff;
    color: #2c6742;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    margin-top: auto;
    width: 100%;
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .hero h1 {
      font-size: 3rem;
    }
  
    .nav {
      justify-content: space-between;
    }
  
    .menu {
      display: flex;
    }
  }