
    {
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins', sans-serif;
      background:#f7fbf8;
      color:#1d1d1d;
      line-height:1.6;
    }

    a{
      text-decoration:none;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    /* NAVBAR */
    nav{
      width:100%;
      padding:20px 0;
      position:fixed;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,0.95);
      backdrop-filter:blur(10px);
      border-bottom:1px solid #e5e5e5;
    }

    .nav-content{
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .logo{
      font-size:1.7rem;
      font-weight:700;
      color:#1f8f4e;
    }

    .nav-links{
      display:flex;
      gap:30px;
    }

    .nav-links a{
      color:#333;
      font-weight:500;
      transition:0.3s;
    }

    .nav-links a:hover{
      color:#1f8f4e;
    }

    .btn{
      background:#1f8f4e;
      color:white;
      padding:12px 24px;
      border-radius:50px;
      font-weight:600;
      transition:0.3s;
      display:inline-block;
    }

    .btn:hover{
      background:#16693a;
      transform:translateY(-2px);
    }

    /* HERO */
    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      padding-top:120px;
      background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('./Pics/background1.png') center/cover;
      color:white;
    }

    .hero-content{
      max-width:700px;
    }

    .hero h1{
      font-size:4rem;
      line-height:1.1;
      margin-bottom:20px;
    }

    .hero p{
      font-size:1.1rem;
      margin-bottom:35px;
      color:#f1f1f1;
    }

    .hero-buttons{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .btn-secondary{
      background:transparent;
      border:2px solid white;
    }

    .btn-secondary:hover{
      background:white;
      color:#1f8f4e;
    }

    /* FEATURES */
    .features{
      padding:100px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:2.5rem;
      color:#1f8f4e;
      margin-bottom:10px;
    }

    .section-title p{
      color:#666;
    }

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
    }

    .card{
      background:white;
      padding:35px;
      border-radius:20px;
      box-shadow:0 10px 25px rgba(0,0,0,0.05);
      transition:0.3s;
    }

    .card:hover{
      transform:translateY(-8px);
    }

    .icon{
      width:70px;
      height:70px;
      background:#e8f7ee;
      color:#1f8f4e;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      font-size:2rem;
      margin-bottom:20px;
    }

    .card h3{
      margin-bottom:15px;
    }

    .card p{
      color:#666;
    }

    /* ABOUT */
    .about{
      padding:100px 0;
      background:#eff8f2;
    }

    .about-content{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      align-items:center;
      gap:50px;
    }

    .about img{
      width:100%;
      border-radius:20px;
    }

    .about-text h2{
      font-size:2.7rem;
      margin-bottom:20px;
      color:#1f8f4e;
    }

    .about-text p{
      margin-bottom:20px;
      color:#555;
    }

    /* STATS */
    .stats{
      padding:90px 0;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
      gap:30px;
      text-align:center;
    }

    .stat{
      background:white;
      padding:40px 20px;
      border-radius:20px;
      box-shadow:0 8px 20px rgba(0,0,0,0.05);
    }

    .stat h3{
      font-size:3rem;
      color:#1f8f4e;
    }

    .stat p{
      color:#666;
      margin-top:10px;
    }

    /* CTA */
    .cta{
      padding:100px 20px;
      text-align:center;
      background:#1f8f4e;
      color:white;
    }

    .cta h2{
      font-size:3rem;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:0 auto 30px;
      color:#ecfdf1;
    }

    .cta .btn{
      background:white;
      color:#1f8f4e;
    }

    .cta .btn:hover{
      background:#e8f7ee;
    }

    /* FOOTER */
    footer{
      background:#111;
      color:#ccc;
      padding:40px 0;
      text-align:center;
    }

    footer p{
      margin-top:10px;
      font-size:0.95rem;
    }

    @media(max-width:768px){

      .hero h1{
        font-size:2.8rem;
      }

      .nav-links{
        display:none;
      }

      .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
      }

      .cta h2{
        font-size:2.2rem;
      }
    }