<style>
    :root {
      --bg: #f3faf3;
      --surface: #ffffff;
      --green-700: #1f6f35;
      --green-600: #2f8d47;
      --green-100: #e9f7ed;
      --text-900: #1f2937;
      --text-700: #4b5563;
      --border: #d5e7d8;
      --shadow: 0 18px 45px rgba(31, 111, 53, 0.12);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      color: var(--text-900);
      background: linear-gradient(180deg, #f7fcf7 0%, var(--bg) 100%);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1150px, 92%);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .header-row {
      min-height: 70px;
      color: #1f6f35;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      text-decoration: none;
      color: var(--green-700);
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    nav ul {
      margin: 20px;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 24px;
      align-items: center;
      font-weight: 600;
    }

    nav a, .dropdown-toggle {
      color: #45822f;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .menu-item {
      position: relative;
    }

    .dropdown-toggle {
      border: none;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      font-weight: 600;
      padding: 0;
    }

    .dropdown-panel {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 210px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
      padding: 8px;
      display: none;
    }

    .dropdown-panel a {
      display: block;
      padding: 9px 10px;
      border-radius: 8px;
    }

    .dropdown-panel a:hover {
      background: var(--green-100);
    }

    .menu-item:hover .dropdown-panel,
    .menu-item:focus-within .dropdown-panel {
      display: block;
    }

    .hero {
      padding: 64px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: center;
    }

    .eyebrow {
      margin: 0 0 10px;
      color: #389915;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    h1 {
      margin: 0;
      color: #124b24;
      font-size: clamp(1.95rem, 4vw, 3rem);
      line-height: 1.18;
      letter-spacing: -0.4px;
    }

    .subheading {
      margin: 14px 0 0;
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--text-700);
      max-width: 54ch;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 11px;
      padding: 12px 18px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .btn:hover {
      filter: brightness(0.98);
      transform: translateY(-1px);
    }

    .btn-primary {
      background: #389915;
      color: #fff;
    }

    .btn-whatsapp {
      background: #25d366;
      color: #0e3b1c;
    }

    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
    }
    
.youtube-link {
      display: block;
      padding: 12px 16px;
      background: var(--green-100);
      color: var(--green-700);
      font-weight: 800;
      text-align: center;
      text-decoration: none;
      border-top: 1px solid var(--border);
    }

    .youtube-link:hover {
      background: #dff2e5;
    }
    
    section {
      padding: 34px 0;
    }

    .section-head {
      margin: 0 0 6px;
      font-size: 1.65rem;
      color: #154f29;
    }

    .section-lead {
      margin: 0 0 20px;
      color: var(--text-700);
      max-width: 75ch;
    }

    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px;
    }

    .feature-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-list li {
      background: #f9fdf9;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 600;
      color: #225530;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 26px rgba(22, 73, 38, 0.08);
      text-decoration: none;
      color: inherit;
      display: block;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .card:hover {
      box-shadow: 0 12px 32px rgba(22, 73, 38, 0.15);
      transform: translateY(-2px);
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .card-body {
      padding: 16px;
    }

    .card h3 {
      margin: 0 0 8px;
      color: #184f29;
      font-size: 1.08rem;
    }

    .card p {
      margin: 0;
      color: var(--text-700);
      font-size: 0.95rem;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .why-item {
      background: #f7fcf7;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 14px;
      text-align: center;
      font-weight: 700;
      color: #205a34;
    }

    .contact-strip {
      background: linear-gradient(120deg, #1f6f35 0%, #2e8f47 100%);
      color: #fff;
      border-radius: 16px;
      padding: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .contact-strip a.phone {
      color: #d4ffd9;
      font-weight: 700;
      text-decoration: none;
    }

    footer {
      margin-top: 34px;
      background: #0f2e1a;
      color: #d9f1df;
      padding: 34px 0 20px;
    }

    .footer-grid {
      display: grid;
      gap: 22px;
      grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-title {
      margin: 0 0 8px;
      color: #fff;
      font-size: 1.1rem;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: #d9f1df;
      text-decoration: none;
    }

    .copyright {
      margin: 20px 0 0;
      border-top: 1px solid rgba(219, 248, 224, 0.22);
      padding-top: 14px;
      color: #ccead3;
      font-size: 0.9rem;
    }

    @media (max-width: 992px) {
      .hero-grid { grid-template-columns: 1fr; }
      .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
       .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  nav ul {
    gap: 14px;
    flex-wrap: wrap;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .cards,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }
}
.about-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:30px;
    align-items:start;
    margin-bottom:25px;
}

.video-box{
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    border:1px solid #d5e7d8;
}

.video-box iframe{
    display:block;
    width:100%;
    min-height:300px;
}

@media (max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .video-box iframe{
        min-height:250px;
    }

}
</style>