:root {
  --green: #0f6a4d;
  --light-green: #88ad96;
  --bg: #ffffff;
  --card: #ffffff;
  --text: #222;
  --muted: #555;
  --cta: #d94747;
  --cta-hover: #bd3b3b;
  --white: #fff;
  --border: #e5e5e5;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 22px;
  line-height: 1.25;
}

/* Top bar */
.topbar {
  background: var(--green);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: Georgia, "Times New Roman", serif;
}

.btn {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: 0.2s ease;
  font-size: 15px;
  text-align: center;
}

.btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.btn.wide {
  min-width: 260px;
}

/* Hero */
.hero {
  background: var(--light-green);
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.12;
  color: #f7f7f7;
  margin-bottom: 18px;
  font-weight: 800;
  max-width: 480px;
}

.hero p {
  color: #f2f2f2;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 20px;
  max-width: 560px;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.hero-art img {
  width: 72%;
  max-width: 390px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

/* Generic card */
.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 34px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.card p {
  font-size: 20px;
  line-height: 1.4;
  color: #2f2f2f;
}

.shield-icon {
  text-align: center;
  font-size: 52px !important;
  margin-bottom: 12px;
}

.cta-center {
  text-align: center;
  margin-top: 26px;
}

.mt-22 {
  margin-top: 22px;
}

/* Benefits */
.big-tagline {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.benefit {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.benefit .icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.benefit h3 {
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.benefit p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.35;
}

/* Ingredients */
.ingredients-wrap {
  background:
    linear-gradient(rgba(34, 93, 61, 0.85), rgba(34, 93, 61, 0.85)),
    url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?q=80&w=1600&auto=format&fit=crop")
      center / cover no-repeat;
  padding: 36px 0;
}

.ingredients-title {
  text-align: center;
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 800;
}

.ingredients-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 26px 26px 20px;
}

.ingredients-sub {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.ingredients-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ingredients-list li {
  padding: 12px 2px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  line-height: 1.35;
  color: #2e2e2e;
}

.ingredients-list li:last-child {
  border-bottom: 0;
}

.dot {
  color: #7aba62;
  font-weight: 900;
  margin-right: 8px;
}

/* Testimonials */
.testimonials-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 22px;
  font-weight: 800;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.testi {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.testi .avatar {
  font-size: 44px;
  margin-bottom: 8px;
}

.testi h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.stars {
  color: #f0b400;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testi p {
  color: #3b3b3b;
  font-size: 17px;
  line-height: 1.35;
}

/* FAQ */
.faq-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 16px;
  font-weight: 800;
}

.faq {
  border: 1px solid #e5e5e5;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #d3d3d3;
}

.faq-q {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: #222;
  font-size: 19px;
  text-align: left;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.faq-q span:last-child {
  font-size: 24px;
  transform: rotate(0deg);
  transition: 0.2s ease;
}

.faq-item.active .faq-q span:last-child {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: #444;
  font-size: 17px;
  line-height: 1.45;
  background: #ffffff;
}

.faq-item.active .faq-a {
  display: block;
}

/* Disclaimer */
.disclaimer {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 24px;
  margin-top: 28px;
}

.disclaimer h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.disclaimer p {
  font-size: 15px;
  line-height: 1.45;
  color: #444;
}

/* Footer */
footer {
  background: var(--green);
  color: #fff;
  margin-top: 34px;
  padding: 20px 0 26px;
  text-align: center;
}

.footer-brand {
  margin-bottom: 8px;
  display: block;
  font-size: 40px;
}

.links {
  margin-bottom: 6px;
  font-size: 15px;
  opacity: 0.95;
}

.links a {
  margin: 0 6px;
}

.copy {
  font-size: 14px;
  opacity: 0.9;
}

/* Offer/Pricing */
.offer-section {
  background: #ffffff;
  padding: 54px 0 46px;
  text-align: center;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.offer-inner {
  max-width: 820px;
}

.offer-title {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 760px;
  margin-inline: auto;
  color: #111;
  font-weight: 800;
}

.offer-subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 22px;
}

.offer-subtitle strong {
  font-weight: 800;
}

.offer-product-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}

.offer-product-image {
  width: min(560px, 94vw);
  max-width: 100%;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.price-box {
  margin: 8px auto 0;
  text-align: center;
}

.price-regular,
.price-special {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.price-regular {
  font-size: 26px;
  color: #111;
  margin-bottom: 6px;
}

.price-regular span {
  text-decoration: line-through;
}

.price-special {
  font-size: 34px;
  color: #0f6a4d;
  line-height: 1.2;
  margin-top: 0;
}

.price-special strong {
  color: #0f6a4d;
}

.price-box.compact {
  margin-top: 2px;
}

.btn.btn-green {
  background: #18815f;
}

.btn.btn-green:hover {
  background: #0f6a4d;
}

.btn.btn-offer {
  min-width: min(420px, 92vw);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 18px;
  margin-top: 8px;
}

/* Risk free section */
.riskfree-wrap {
  background: #ffffff;
  padding: 44px 0 34px;
  border-top: 1px solid #f0f0f0;
}

.riskfree-title {
  text-align: center;
  font-size: 40px;
  margin: 0 0 24px;
}

.riskfree-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.riskfree-seal-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.riskfree-card h3 {
  font-size: 36px;
  margin-bottom: 8px;
}

.riskfree-card p {
  font-size: 25px;
  line-height: 1.45;
  color: #333;
}

.trust-badges {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badges span {
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 16px;
}

.trust-badges img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* Sticky CTA for mobile */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 106, 77, 0.96);
  padding: 10px 12px;
  z-index: 30;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.sticky-cta .btn {
  width: 100%;
  font-size: 16px;
  padding: 12px;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 22, 18, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-box {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(14px);
  transition: transform 0.22s ease;
}

.cookie-consent.is-visible .cookie-consent-box {
  transform: translateY(0);
}

.cookie-consent-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.cookie-consent-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1b1b1b;
}

.cookie-consent-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.cookie-accept {
  background: #18815f;
  color: #fff;
}

.cookie-accept:hover {
  background: #0f6a4d;
}

.cookie-decline {
  background: #ececec;
  color: #333;
}

.cookie-decline:hover {
  background: #ddd;
}

/* Legal / contact pages */
.legal-page {
  padding: 36px 0 50px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.legal-card h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.legal-card h2 {
  font-size: 22px;
  margin: 24px 0 10px;
  color: #183d31;
}

.legal-card p,
.legal-card li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 6px;
}

.inline-link {
  color: #0f6a4d;
  font-weight: 700;
  text-decoration: underline;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e2e2e2;
}

.legal-nav a {
  background: #eef6f2;
  color: #0f6a4d;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 22px;
}

.contact-info {
  background: #f5faf7;
  border: 1px solid #d5e6de;
  border-radius: 12px;
  padding: 18px;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-info p {
  margin-top: 10px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.contact-form {
  background: #fafafa;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #222;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(24, 129, 95, 0.35);
  border-color: #18815f;
}

.contact-form .btn {
  margin-top: 16px;
  width: 100%;
}

.contact-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  min-height: 20px;
}

.contact-status.success {
  color: #0f6a4d;
}

.contact-status.error {
  color: #b42318;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .card p,
  .ingredients-list li,
  .testi p,
  .faq-q,
  .faq-a {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .big-tagline,
  .ingredients-title,
  .testimonials-title,
  .faq-title {
    font-size: 28px;
  }

  .benefit h3 {
    font-size: 22px;
  }

  .ingredients-sub {
    font-size: 20px;
  }

  .brand {
    font-size: 28px;
  }

  .footer-brand {
    font-size: 34px;
  }

  .offer-title {
    font-size: 26px;
  }

  .offer-subtitle {
    font-size: 16px;
  }

  .price-regular {
    font-size: 20px;
  }

  .price-special {
    font-size: 24px;
  }

  .btn.btn-offer {
    font-size: 15px;
    padding: 14px 20px;
  }

  .riskfree-title {
    font-size: 30px;
  }

  .riskfree-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .riskfree-card h3 {
    font-size: 26px;
  }

  .riskfree-card p {
    font-size: 18px;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 66px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-card h1 {
    font-size: 30px;
  }

  .legal-card h2 {
    font-size: 20px;
  }
}