        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #2d3436;
            scroll-behavior: smooth;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
        }
        header {
            background-color: #2e8b57;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        header h1 {
            color: white;
            margin: 0;
        }
        nav {
            display: flex;
        }
        
        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 10px;
            }
            nav {
                margin-top: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }
            nav a {
                margin: 5px 8px;
                font-size: 0.9rem;
            }
        }
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
            background-size: cover;
        }
        .hero h2 {
            font-size: 2.5em;
            margin: 0;
            color: #2d3436;
            font-weight: 600;
            font-size: 1.8rem;
            line-height: 1.4;
        }
        .hero p {
            font-size: 1.2em;
            margin: 20px 0;
            font-size: 1rem;
        }
        .cta-button {
            background-color: #2e8b57;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
        }
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2e8b57;
            font-size: 1.8rem;
            font-weight: 600;
        }

        section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products, .testimonials, .benefits, .usage {
            display: flex;
            justify-content: center;
            padding: 20px 10px;
            flex-wrap: wrap;
            gap: 20px;
        }

        @media (max-width: 768px) {
            section {
                padding: 30px 15px;
            }
            .section-title {
              font-size: 1.5rem;
            }
        }
        .card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            text-align: center;
            width: 280px;
            transition: all 0.3s ease;
            border: 1px solid rgba(46, 139, 87, 0.1);
            margin: 0;
        }

.product-img {
  border-radius: 15px;
    width: 100%; /* Mengatur lebar gambar agar sesuai dengan card */
    max-height: 250px;
    height: auto; /* Mengatur tinggi gambar secara otomatis */
    object-fit: cover; /* Memastikan gambar ter-crop dengan baik */
}

        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
        }
        
        
        .testimonial-card {
            max-width: 350px;
            position: relative;
            padding-top: 40px;
        }
        
        .testimonial-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .card {
                width: 100%;
                max-width: 300px;
            }
        }
.footer {
  background-color: #2e8b57;
  padding: 40px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  width: 50px;
  margin-bottom: 10px;
}

.footer h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.footer-socials {
  margin: 15px 0;
}

.footer-socials a {
  margin: 0 10px;
  color: white;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #dfffe2;
}

.footer .copyright {
  font-size: 0.8rem;
  color: #dcdcdc;
  margin-top: 20px;
}
        .rating {
            font-size: 1.2em;
            margin: 30px 0;
            text-align: center;
        }
        .rating::before {
            content: "★ ★ ★ ★ ★";
            color: #ffb400;
            font-size: 1.5em;
            display: block;
            margin-bottom: 10px;
        }
        
        .agree-section {
    text-align: center;
    margin: 40px 0;
}

.agree-section p {
    font-weight: 500;
    margin: 10px 0;
    font-size: 1rem;
}

.agree-buttons {
    margin-top: 10px;
}

.agree-button {
    background-color: #2e8b57;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.agree-button:hover:not(.pressed):not(:disabled) {
    background-color: #256c45;
}

.agree-button.pressed {
    background-color: #1e5636;
}

.agree-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.faq .accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  background-color: #f1f1f1;
  color: #2d3436;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  border-radius: 10px;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.6s ease;
}
.logo {
  max-width: 40px;
}
.benefits ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e8b57;
  font-weight: bold;
}