body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f6f1;
    color: #1a3e2e;
  }
  
  .hero {
    text-align: center;
    background-color: #e5e0d8;
    padding: 40px 20px;
  }
  
  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #e5e0d8;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .about, .contact, .cta {
    padding: 40px 20px;
    max-width: 600px;
    margin: auto;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  
  input, textarea {
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    padding: 12px;
    background-color: #1a3e2e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .footer {
    text-align: center;
    padding: 20px;
    background-color: #e5e0d8;
    margin-top: 40px;
  }

  .hero.with-bg {
    position: relative;
    background: url('trees.png') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(26, 62, 46, 0.5);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .how-it-works {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
  }
  
  th, td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
  }

  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
  }
  
  .about-text {
    flex: 1 1 55%;
  }
  
  .about-image {
    flex: 1 1 35%;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  
  