 
 :root {
      --green-1: #22543d;
      --green-2: #38a169;
      --green-3: #9ae6b4;
      --green-4: #f0fff4;
      --glass: rgba(255, 255, 255, 0.28);
      --blur: blur(14px);
    }
.list {
  list-style: none;
  padding-left: 0;
   text-indent: 3px;
}
.list li::before {
  content: "✓ ";
  color: green;
  font-weight: bold;
  
}
#contact {
  max-width: 600px;
  margin: auto;
}

input, textarea {
 /* width: 100%;*/
  margin-bottom: 10px;
  padding: 10px;
}
    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      background: var(--green-4);
      color: #0f2418;
      scroll-behavior: smooth;
    }

   
    header {
      padding: 40px 20px;
      text-align: center;
      position: relative;
      color: green;
    }

    header::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.15);
    }

    header h1, header p {
      position: relative;
      animation: fadeIn 1.2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    header h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.3rem;
      opacity: 0.9;
    }

    nav {
      position:sticky;
      top: 0;
      backdrop-filter: var(--blur);
      background: var(--glass);
      padding: 15px 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 25px rgba(0,0,0,0.15);
      z-index: 50;
    }

    .logo {
      
     margin-right: 30px;
	  
    }

    .menu {
      display: flex;
	  margin: 0;
      gap: 30px;
    }

    .menu a {
      color: #0f2418;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .menu a:hover {
      color: var(--green-3);
    }

    

    @media (max-width: 768px) {
      .menu {
        display: none;
        position: absolute;
        right: 20px;
        top: 70px;
        flex-direction: column;
        background: var(--glass);
        padding: 20px;
        border-radius: 15px;
        backdrop-filter: var(--blur);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }
      .menu.show {
        display: flex;
      }
     
    }

    /* HERO GRID */
    .hero {
      padding: 100px 20px;
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      animation: fadeUp 1.2s ease;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(35px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero img {
     /* width: 100%;*/
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
	  
    }

    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; text-align: center; }
    }

    .section {
      padding: 70px 25px;
      max-width: 1100px;
      margin: 60px auto;
      background: white;
      border-radius: 25px;
      box-shadow: 0 20px 35px rgba(0,0,0,0.09);
      transition: 0.5s;
      animation: fadeUp 1s ease;
    }

    .section:hover {
      transform: translateY(-10px) scale(1.015);
    }

    h2 {
      font-size: 2.4rem;
      color: var(--green-1);
      margin-bottom: 20px;
      text-align: center;
    }

    .icons {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-top: 20px;
      font-size: 3rem;
    }

    footer {
      text-align: center;
      padding: 40px;
      background: #153524;
      color: white;
      margin-top: 80px;
      font-size: 1.1rem;
    }
	
	form {
       
        max-width: 800px;
        
        margin: auto;
        
        padding: 10px;
        
        border: 1px solid #ccc;
        
        border-radius: 5px;
    }

    label {
        
        display: block;
       
       margin-bottom: 5px;
    }

    input, textarea {
        
        width: 96.5%;
        
        padding: 8px;
        
        margin-bottom: 10px;
        
        border: 1px solid #ccc;
        
        border-radius: 4px;
    }

    input[type="submit"] {
        
        background-color: #22543d;
        
        color: white;

        border: none;
        
        cursor: pointer;
    }

    input[type="submit"]:hover {
        
        background-color: #3d2a24;