

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5fff6;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    color: #2e7d32;
    text-decoration: none;
  }
  
  .content-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 1rem;
  }
  
  .section {
    margin-bottom: 3rem;
  }
  
  .section h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .section h3 {
    color: #2e7d32;
    margin-top: 2rem;
  }
  .img-box {
    text-align: center;
    margin: 1rem 0;
    
  }
  
  .img-box img {
    max-width: 100%;
    min-width: 70vw;
    height: auto;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .benefits {
    list-style: 🌿 inside;
    padding-left: 1rem;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 1rem;
  }
  
  th, td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  th {
    background-color: #e8f5e9;
  }
  
  .note {
    background-color: #fffbe6;
    border-left: 4px solid #f9a825;
    padding: 15px;
    font-size: 0.95rem;
    margin-top: 2rem;
  }
  
  @media screen and (max-width: 768px) {
    .section h2 {
      font-size: 1.5rem;
    }
  
    th, td {
      font-size: 0.9rem;
    }
  }

  .video-box {
    width: 100%;
    max-width: 360px;      /* Keeps it slim like a phone screen */
    margin: 1rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .video-box video {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
  }
  
  @media (max-width: 600px) {
    .video-box {
      width: 90vw;  /* 90% of screen width on small devices */
    }
  }
  
  
  .order-box {
    margin-top: 2rem;
    background-color: #f1f8e9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ebd5a;
  }
  
  /* Step-by-step carousel */
.step-carousel { 
  max-width: 900px; 
  margin: 2rem auto;
  position: relative; 
  outline: none; 
  max-width: fit-content; /* so arrows are close to images */
}
.carousel-track { 
  position: relative; 
  height: auto; 
  min-height: 150px; 
}
.slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity .35s ease; 
  display: flex; flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  padding: 1rem; 
  box-sizing: border-box; 
}
.slide img {
  max-width: 100%;
  height: auto;
  max-height: 500px; /* keeps them reasonable on desktop */
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  object-fit: contain; /* fits without cropping */
}

.slide figcaption { 
  margin-top: .6rem; 
  font-size: .95rem; 
  color: #555; 
  text-align: center; 
}
.slide.active { 
  opacity: 1; 
  position: relative;
 }

/* Controls */
.carousel-btn { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  z-index: 20; 
  background: rgba(46,125,50,0.95); 
  color: #fff; 
  border: none; 
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.12); 
  
}

.carousel-btn:focus { 
  outline: 2px solid #fff; 
}
.carousel-btn.prev { 
  left: 5px; 
}
.carousel-btn.next { 
  right: 5px; 
}

/* Dots */
.carousel-dots { 
  text-align: center; 
  margin-top: 0.8rem; 
}
.carousel-dots .dot { 
  width: 10px; 
  height: 10px; 
  background: #dcedc8; 
  border-radius: 50%; 
  display: inline-block; 
  margin: 0 6px;
  border: none; 
  cursor: pointer; 
}
.carousel-dots .dot.active { 
  background: #2e7d32; 
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .step-carousel {
    max-width: 100%; /* let it expand full width on mobile */
  }
  .carousel-btn { 
    width: 36px; 
    height: 36px; 
  }
  .slide figcaption { 
    font-size: 0.9rem; 
    padding: 0 .5rem;
   }
  .slide img {
    max-height: 300px;
  }
}

  