 
 
 
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b5e20;
    color: white;
    padding: 15px 30px;
  }
  
  .navbar .brand {
    font-size: 1.5em;
  }
  
  .navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar nav a:hover {
    text-decoration: underline;
  }
  
  /* HERO */
  .hero2 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../../images/logo.png');
    background-size: 81%;
    background-position: center;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
 
 .testimonials {
    background: #f9f9f9;
  }
  
  .testimonial {
    max-width: 400px;
    margin: 20px auto;
    font-style: italic;
  }

  .about {
    background: #f5f5f5;
  }

  .contact {
    background: #e8f5e9;
    margin-top:4vh;
  }

  .trust {
    background: #f5f5f5;
  }

  h2, p {
    font-weight: bold;
    font-size: 16px;
  }
  
  h2 {
    font-size: 24px;
  }


  .about, .trust {
    margin: 20px;
    border-radius: 10px;
  }
  
  .trust p {
    background: white;
    margin: 8px auto;
    padding: 10px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  }


  .founder {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
  }
  
  .founder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .founder-info {
    max-width: 400px;
    text-align: left;
  }
  
  .founder-info h3 {
    margin-bottom: 10px;
  }



/* Mobile Optimization */
 /* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 15px;
    }
  
    .navbar .brand {
      font-size: 1.3em;
    }
  
    .navbar nav {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .navbar nav a {
      margin: 5px 10px;
      font-size: 0.9em;
    }
  
    /* HERO FIX (you used wrong class before) */
    .hero2 {
      height: 50vh;
      background-size: cover;
      padding: 20px;
    }
  
    .hero-content h1 {
      font-size: 1.6em;
    }
  
    /* ABOUT SECTION */
    .about {
      padding: 20px;
      text-align: center;
    }
  
    .about h2 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }
  
    .about p {
      font-size: 1em;
      line-height: 1.5;
    }
  
    /* TRUST SECTION */
    .trust {
      padding: 20px;
      text-align: center;
    }
  
    .trust h2 {
      font-size: 1.5em;
      margin-bottom: 10px;
    }
  
    .trust p {
      font-size: 1em;
      margin: 6px 0;
    }
  
    /* GENERAL TEXT FIX */
    h2 {
      font-size: 1.6em;
    }
  
    p {
      font-size: 1em;
    }

    .founder-info {
        text-align: center;
      }
  
  }