/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-img {
  height: 50px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #2c5e2e;
}

.header-cta {
  background-color: #2c5e2e;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.header-cta:hover {
  background-color: #1e3f20;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #2c5e2e;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e4d4 100%);
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #2c5e2e;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #2c5e2e;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1e3f20;
}

.hero-image {
  flex: 1;
}

.product-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section.light-bg {
  background-color: #f1f7f1;
}

.section h2 {
  font-size: 2.2rem;
  color: #2c5e2e;
  margin-bottom: 30px;
  text-align: center;
}

.section h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 20px 0 10px;
}

.section p {
  margin-bottom: 20px;
}

.section-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

.image-placeholder {
  text-align: center;
}

/* Lists */
.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.benefits-list li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #2c5e2e;
  position: absolute;
  left: 0;
  top: 0;
}

.section ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.section ol li {
  margin-bottom: 10px;
}

/* Ingredient Grid */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
  font-size: 2rem;
  color: #2c5e2e;
  margin-bottom: 10px;
}

.ingredient-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ingredient-card p {
  font-size: 0.9rem;
}

/* Review Grid */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stars {
  color: #f4c430;
  margin-bottom: 10px;
}

.review-card p {
  font-style: italic;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 10px;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: block;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.faq-item label:after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  transition: transform 0.3s;
}

.faq-item input:checked ~ label:after {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  background-color: #f1f7f1;
  padding: 15px;
  border-radius: 5px;
}

.faq-item input:checked ~ .faq-content {
  display: block;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pricing-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #2c5e2e;
  position: relative;
}

.pricing-card.popular:before {
  content: 'Most Popular';
  background-color: #2c5e2e;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  color: #2c5e2e;
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* Guarantee Section */
.secure-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.secure-img {
  height: 40px;
}

/* Final CTA Section */
#final-cta {
  text-align: center;
  background: linear-gradient(135deg, #e8f0e8 0%, #d4e4d4 100%);
}

#final-cta h2 {
  margin-bottom: 20px;
}

#final-cta p {
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color: #2c5e2e;
  color: #fff;
  padding: 20px 0;
  text-align: center;

}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}





footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #A8D5D8;
}












/* Responsive Design */
@media (max-width: 768px) {
  .sticky-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .nav-menu ul li {
    margin-bottom: 15px;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .ingredient-grid, .review-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
}