@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
  /* border: 1px solid !important; */
}

/* Remove extra space below footer */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
  margin-bottom: 0 !important;
}

/* Consistent horizontal spacing across all sections */
.hero .left,
.hero .right,
.sales,
.grid1-wrapper,
.grid2-wrapper,
.certificate,
.wrapper-drop,
.testimonials,
.buy-now,
.content-wrapper,
.research {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

:root {
  --site-gutter: 60px;
  --site-max-width: 100%;
}

@media (max-width: 1024px) {
  :root {
    --site-gutter: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --site-gutter: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --site-gutter: 18px;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Make all main sections have a white background except the hero section */


.hero {
  background: repeating-linear-gradient(330deg, #f1f0f4, #f1f0f4 2px, #fff 2px, #fff 4px);
  background-repeat: no-repeat;
  display: flex;
  box-shadow: inset 0px -9px 11px 3px rgba(0, 0, 0, 0.2);
  margin-top: 70px;
  /* Let the hero grow/shrink naturally on smaller screens */
  min-height: 750px;
  width: 100%;
}

.left p {
  font-size: 15px !important;
  margin-bottom: 50px;
  margin-left: 0;
  width: 80%;
}

.headings {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 0;
  margin-left: 0;

}

.headings h1 {
  font-weight: 900;
  font-size: 34px;
  max-width: 100%;
  width: 100%;
}

.headings span {
  color: #7f1239;
  font-size: 35px;
  font-weight: 100;

  /* Compact spacing: reduce vertical gaps between major sections site-wide */
  .sales,
  .grid1-wrapper,
  .grid2-wrapper,
  .certificate,
  .wrapper-drop,
  .testimonials,
  .buy-now,
  .content-wrapper,
  .footer {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .hero {
    margin-top: 40px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  @media (max-width: 768px) {

    .hero,
    .sales,
    .grid1-wrapper,
    .grid2-wrapper,
    .certificate,
    .wrapper-drop,
    .testimonials,
    .buy-now,
    .content-wrapper {
      padding-top: 24px !important;
      padding-bottom: 24px !important;
      margin-top: 20px !important;
    }
  }
}

.hero .btn {
  margin-left: 0;
}

.btn {
  background-color: #7f1239;
  color: white;
  font-weight: 900;
  padding: 7px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.7rem;
  border: 1px solid;
  transition: transform 0.5s ease;
  width: 280px;
  height: 70px;
}

.btn:hover {
  background: linear-gradient(to bottom, #6b0f2d 50%, #5a0d26 50%);
}

.left {
  margin: 60px 0;
  flex-basis: 60%;
  padding-left: calc(var(--site-gutter) + 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.left>* {
  margin-left: 0;
}

.right img {
  margin-top: 15px;
  /* Make images responsive: constrain by max-height but allow width to scale */
  max-width: 100%;
  height: auto;
  max-height: 1300px;
}

.left p {
  margin-bottom: 30px;
}

.left img {
  max-width: 380px;
  width: 100%;
  height: auto;
}

/* Reduce paragraph font-size specifically for the hero's left column */
.hero .left p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Hero list styling with checkmarks */
.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 20px;
}

.hero-list li {
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 14px;
  position: relative;
}

.hero-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: #7f1239;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Responsive adjustments for the hero section */
@media (max-width: 900px) {
  .hero {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding: 40px var(--site-gutter);
    min-height: 420px;
    gap: 20px;
  }

  .left {
    flex-basis: 100%;
    padding-left: calc(var(--site-gutter) / 2);
    align-items: center;
    order: 2 !important;
  }

  .hero .left p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .right {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1 !important;
    max-width: 100% !important;
  }

  .right img {
    max-width: 520px;
    width: 100%;
    height: auto;
  }

  .btn {
    width: 200px;
    height: auto;
    padding: 10px 16px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 28px 18px;
    margin-top: 120px !important;
    padding-top: 90px !important;
    min-height: auto;
    flex-direction: column !important;
  }

  .left {
    order: 2 !important;
  }

  .right {
    order: 1 !important;
    max-width: 100% !important;
    padding-top: 50px !important;
  }

  .headings h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .headings span {
    font-size: 22px;
  }

  .hero .left p {
    font-size: 12px;
  }

  .btn {
    width: 180px;
    font-size: 1rem;
  }
}

/* ===== SALES SECTION ===== */
.sales {
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px var(--site-gutter);
  margin-top: 60px;
  min-height: auto;
  box-sizing: border-box;
  width: 100%;
  /* create extra breathing room below the sales cards so following sections don't overlap */
  margin-bottom: 120px;
  /* ensure sales area forms its own stacking context above following sections */
  position: relative;
  z-index: 2;
}

/* ===== BOXES ===== */
.sales .box {
  position: relative;
  min-height: 500px;
  border: 5px solid #ffffff;
  flex: 1;
  box-sizing: border-box;
  border-radius: 20px;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  padding-top: 80px;
  cursor: pointer;
}

.orange-btn {
  background: linear-gradient(to bottom, #e39b49 50%, #b8690e 50%);
}

.orange-btn:hover {
  background: linear-gradient(to bottom, #b8690e 50%, #e39b49 50%);
}

/* make the middle box taller */
.sales .box2 {
  min-height: 630px;
  border: 5px solid #7f1239;
  background-color: #eaede2;
}

.box1 {
  margin-left: 30px;
}

.box3 {
  margin-right: 30px;
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 18px 0 44px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  text-align: center;
  line-height: 1.2;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* downward triangular point */
.badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
  height: 56px;
  background: #000;
  clip-path: polygon(0% 0%, 100% 0%,
      100% 55%, 50% 100%, 0% 55%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* ===== BADGE TEXT ===== */
.badge__title {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sales .box1,
.sales .box3 {
  height: 530x;
}

.badge__sub {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.98;
}

/* Default badge style (all boxes) */
.sales .box>.badge {
  background: #000;
  padding: 10px 0 5px;
}

.sales .box>.badge::after {
  background: #000;
  height: 24px;
  bottom: -17px;
}

/* Custom color for box 2 */
.sales .box2>.badge {
  background: #7f1239;
  border-radius: 0px;
}

.sales .box2>.badge::after {
  background: #7f1239;
}

/* ===== IMAGE SIZES - CONSISTENT ACROSS ALL BOXES ===== */
.box img {
  margin-top: 0;
  height: 200px;
  object-fit: cover;
  width: auto;
}

/* Remove the specific smaller image size for box3 */
.box3 .image img {
  height: 155px;
  /* Now matches other boxes */
}

.box3 .image {
  margin-top: 0;
  margin-bottom: 15px;
}

.box1 .image {
  margin-top: 0;
}

.price {
  display: flex;
  line-height: 16px;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 15px 0;
}

.price h2 {
  font-size: 4rem;
}

/* HR Styling - Reduced gaps significantly */
.box hr {
  border: none;
  border-top: 1px solid rgb(159, 153, 153);
  width: 100%;
  margin: 2px 0;
  /* Reduced from 8px to 2px */
}

.box .checked {
  height: 10px;
}

.btn-second {
  font-size: 0.7rem;
}

.box .btn {
  line-height: 12px;
  margin: 6px 0;
  /* Reduced from 12px to 6px */
}

.tick {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin: 2px 0;
  /* Reduced from 8px to 2px */
  justify-content: center;
}

/* Added consistent spacing for box content */
.box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  gap: 2px;
  /* Reduced from 8px to 2px */
}

/* Specific adjustments for box3 content */
.box3 .box-content {
  gap: 2px;
  /* Reduced from 8px to 2px */
}

.sales .box p {
  font-size: 10px;
}

.sales .box3 .image {
  margin-top: 30px;
}

.tick p {
  color: orange;
}

/* Specific control for elements immediately before and after HR */
.box-content hr+* {
  margin-top: 1px;
  /* Minimal spacing after HR */
}

.box-content *+hr {
  margin-top: 1px;
  /* Minimal spacing before HR */
}

/* Ensure minimal spacing around price and buttons */
.box-content .price+hr {
  margin-top: 1px;
}

.box-content hr+.btn {
  margin-top: 1px;
}

.cards img {
  height: 20px;
  width: 30px;
  border-radius: 3px;
  cursor: pointer;
}

.sales .total p {
  font-size: 14px;
  margin-bottom: 20px;
}

.discount {
  text-decoration: line-through;
  text-decoration-color: red;
}

/* ===== BOX HOVER EFFECT ===== */
.sales .box {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  /* ensure sales boxes render above following sections when effects/box-shadows occur */
  position: relative;
  z-index: 1;
}

.sales .box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Optional: Add a more prominent effect for the middle box */
.sales .box2:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(30, 63, 136, 0.2);
}

.certificate .logo {
  margin-top: 20px;
  margin-bottom: 20px;
}

.certificate .logo img {
  /* prefer flexible sizing: use max-height instead of forcing a fixed height */
  height: auto;
  max-height: 180px;
  width: auto;
  max-width: 100%;
}

/* Make the certificate logo scale down on small screens */
@media (max-width: 768px) {
  .certificate .logo img {
    height: 140px;
  }
}

.certificate {
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 600px;
  /* reduce vertical padding to avoid accidental overlap with previous section */
  padding: 80px var(--site-gutter);
  margin-top: 100px;
  margin-bottom: 120px;
  box-sizing: border-box;
  /* ensure this section clears floated content and doesn't visually intrude */
  clear: both;
  z-index: 0;
  position: relative;
  overflow: visible;
}

.faq-wrapper {
  box-shadow: 5px 5px 5px 5px;
}

.certificate .certificate-box {
  width: 75%;
  max-width: 950px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f3f3f3;
  border-radius: 20px;
  padding: 45px 30px;
  box-shadow: -3px -3px 0px 0px #7f1239, 5px 5px 0px 0px #7f1239;
  margin: 20px auto;
  overflow: visible;
}

.certificate .certificate-box h3 {
  font-size: 1.6rem;
}

.certificate .certificate-box p {
  margin: 0px 50px;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 15px;
}

.certificate-box .made {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.certificate-box .made img {
  height: 50px;
  width: 50px;
  display: none;
  /* Hidden by default on desktop */

}

/* Certificate list: card-style design without bullets */
.certificate-box ul {
  list-style: none;
  padding-left: 0;
  margin: 18px auto 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}

.certificate-box ul li {
  display: block;
  margin: 0;
  padding: 12px 20px;
  font-size: 15px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #7f1239;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-weight: 500;
}

.certificate-box ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(30, 63, 136, 0.15);
  border-color: #6b0f2d;
}

@media (max-width: 720px) {

  /* on small screens make the list full-width again for comfortable reading */
  .certificate-box ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    margin: 18px auto 24px;
    gap: 8px;
  }

  .certificate-box ul li {
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .certificate {
    /* keep slightly larger padding on very large screens but avoid extreme values */
    padding: 90px var(--site-gutter);
  }

  .certificate .certificate-box {
    width: 85%;
    padding: 70px 60px;
  }

  .certificate .certificate-box h3 {
    font-size: 2.1rem;
  }

  .certificate .certificate-box p {
    font-size: 0.95rem;
    margin: 0 70px;
  }

  .certificate .logo img {
    height: 135px;
  }
}

.wrapper-drop {
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  margin-top: 80px;
  padding: 80px var(--site-gutter) 60px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  clear: both;
}

.testimonials {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  height: auto;
  padding: 80px var(--site-gutter);
  margin-top: 60px;
  box-sizing: border-box;
  width: 100%;
}

.testimonials .title span {
  color: #5a0d26;
}

.testimonials .image {
  height: 80px;
}

.testimonials .image img {
  height: 100%;
  border-radius: 50%;
}

.testimonials .personal-info p {
  font-weight: 500;
  font-size: 1.2rem;
}

.testimonials .personal-info :nth-child(2) {
  margin-top: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 20px;
}

.testimonials .review p {
  font-size: 0.8rem;
  font-style: italic;
  margin: 0 30px;
}

.stars {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.stars h4 {
  font-weight: 600;
  font-size: 13px;
}

.stars img {
  height: 20px;
}

.testimonials hr {
  width: 90%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.scientific-references {
  height: auto !important;
  width: 100%;
  text-align: center;
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  padding: 80px var(--site-gutter) 60px;
  margin-top: 60px;
  margin-bottom: 0;
  box-sizing: border-box;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  max-height: none !important;
}

/* Ensure no nested scroll within the scientific references block */
.scientific-references,
.scientific-references .research,
.scientific-references .combined-research,
.scientific-references .research-bottle {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

.scientific-references .combined-research {
  box-sizing: border-box;
  width: 100%;
  float: none;
}

.scientific-references .research-bottle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  margin: 20px auto;
}

.scientific-references .research-bottle img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.logos {
  display: flex;
  align-items: center;
  /* vertically center images */
  justify-content: center;
  /* center the whole row */
  gap: 40px;
  /* no gap between logos */
  width: 100%;
  height: 60px;
  margin: 0;

}

.logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  /* prevents baseline spacing */
  margin: 0;
  /* removes any default margins */
  padding: 0;
}

.left-logo,
.right-logo {
  display: flex;
  gap: 20px;
}

.research {
  font-size: 7px;
  display: flex;
  width: 100%;
  max-width: var(--site-max-width);
  margin: 10px auto 0;
  padding-inline: var(--site-gutter);
  text-align: justify;
  gap: 40px;
  line-height: 15px;
  box-sizing: border-box;
  justify-content: center;
  overflow: visible;
}

.research ol {
  font-size: 12px;
  line-height: 1.6;
  padding-left: 20px;
  margin: 10px 0;
}

.research ol li {
  margin-bottom: 8px;
  font-size: 12px;
}

.research p {
  font-size: 14px;
  line-height: 1.6;
}

.research-bottle {
  height: auto;
  max-height: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.research-bottle img {
  height: auto;
  max-height: 300px;
  width: auto;
  object-fit: contain;
}

/* Prevent reference links from causing horizontal overflow on small screens */
.scientific-references,
.research {
  overflow-x: hidden;
}

.scientific-references a,
.research a {
  /* allow long URLs to break and wrap inside the container */
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  display: inline-block;
}

/* Research / references links: neutral color to match site tone */
.scientific-references a,
.research a {
  color: #333333;
  text-decoration: underline;
}

.scientific-references a:hover,
.research a:hover {
  color: #1f2933;
}

.left-research,
.right-research {
  width: 42%;
  text-align: justify;
}

.buy-now {
  color: white;
  background-color: #7f1239;
  justify-content: center;
  height: 100px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  text-wrap: wrap;
}


@media (max-width: 600px) {

  /* Global mobile fixes */
  html,
  body {

    width: 100%;
  }

  .hero {
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 0px;
    align-items: center;
    padding: 20px 15px;
  }

  .left {
    margin: 30px auto;
    text-align: center;
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
  }

  .right img {
    height: 250px;
    margin: 0 auto;
    display: block;
    max-width: 100%;
  }

  .headings {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 20px 0;
  }

  .headings h2 {
    font-size: 20px;
  }

  .btn {
    font-size: 1.1rem;
    padding: 8px 20px;
    width: 100%;
    max-width: 250px;
  }

  .sales {
    flex-direction: column;
    text-align: center;
    padding: 40px 10px;
    min-height: auto;
    width: 100%;
  }

  .sales .box {
    width: 95%;
    max-width: 400px;
  }

  .box1,
  .box3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .buy-now {
    font-size: 12px;
    margin: 0;
  }

  .buy-now h2 {
    margin: 0 10px;
  }

  .sales .box,
  .sales .box2 {
    min-height: auto;
    height: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px !important;
    padding: 50px 15px 20px;
  }

  .sales .box2 {
    order: 1;
    min-height: auto;
    height: auto;
  }

  .sales .box3 {
    order: 2;
  }

  .sales .box1 {
    order: 3;
  }

  .box-content .image {
    margin-top: 17px;
  }

  .box img {
    height: 150px;
    max-width: 100%;
  }

  .box3 .image img {
    height: 120px;
  }

  .price h2 {
    font-size: 2.5rem;
    margin: 10px 0;
  }

  .price {
    margin: 10px 0;
  }

  .box-content {
    gap: 1px;
    padding: 0 10px;
  }

  .box .btn {
    margin: 4px 0;
    padding: 5px 15px;
    font-size: 1rem;
    width: 90%;
    max-width: 250px;
  }

  .box hr {
    width: 100%;
    max-width: 300px;
  }

  .cards {
    display: none;
  }

  .badge__title {
    font-size: 16px;
  }

  .badge__sub {
    font-size: 16px;
  }

  .price span {
    font-size: 1rem;
  }

  .per-bottle {
    font-size: 0.8rem;
  }

  .sales .box p {
    font-size: 9px;
  }

  .btn-second {
    font-size: 0.6rem;
  }

  .sales .total p {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .total-text {
    font-size: 10px;
  }

  .badge {
    padding: 15px 0 35px;
  }

  .badge::after {
    bottom: -22px;
    height: 44px;
  }

  /* Certificate Section Mobile Styles */
  .certificate {
    height: auto;
    padding: 40px 15px;
    width: 100%;
  }

  .certificate .certificate-box {
    width: 95%;
    height: auto;
    padding: 30px 15px;
    margin: 0 auto;
    box-shadow: -3px -3px 0px 0px #7f1239, 4px 4px 0px 0px #7f1239;
  }

  .certificate .certificate-box h3 {
    font-size: 1.3rem;
    text-align: center;
    padding: 0 10px;
  }

  .certificate .certificate-box p {
    margin: 20px 10px;
    font-size: 0.6rem;
  }

  .certificate .logo img {
    height: 80px;
  }

  /* Show made images only on mobile and position at the end */
  .certificate-box .made {
    display: flex !important;
    /* Force display on mobile */
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
  }

  .certificate-box .made img {
    display: block !important;
    /* Show images on mobile */
    height: 35px;
    width: 35px;
    object-fit: contain;
  }

  /* Testimonials Mobile Styles */
  .testimonials {
    height: auto;
    padding: 30px 15px;
    width: 100%;
  }

  .testimonials .title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .testimonials .title h2 {
    font-size: 1.2rem !important;
    line-height: 1.3;
    margin-top: 10px;
  }

  .testimonials .image {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    display: block;
  }

  .testimonials .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .testimonials .review {
    margin: 10px 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
  }

  .testimonials .review p {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    font-style: italic;
    margin: 0;
    color: #333;
  }

  .testimonials .review * {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    font-style: italic !important;
    color: #333 !important;
    margin: 0 0 8px 0 !important;
  }

  .testimonials .review *:last-child {
    margin-bottom: 0 !important;
  }

  .testimonials .personal-info {
    text-align: center;
    margin: 12px 0 8px 0;
  }

  .testimonials .personal-info p {
    font-size: 0.95rem;
    margin: 3px 0;
    font-weight: 600;
  }

  .testimonials .personal-info :nth-child(2) {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
  }

  .stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
  }

  .stars img {
    height: 16px;
    width: auto;
  }

  .stars h4 {
    font-size: 11px;
    margin: 0;
    color: #666;
  }

  .testimonials hr {
    margin: 25px auto;
    width: 80%;
    border: none;
    border-top: 1px solid #eee;
  }

  /* Scientific References Mobile Styles */
  .scientific-references {
    height: auto;
    padding: 40px 20px 40px;
    width: 100%;
    margin-bottom: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .logos {
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin: 20px 0;
  }

  .left-logo,
  .right-logo {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .logos img {
    height: 30px;
  }

  /* Research Section Mobile Styles */
  .research {
    flex-direction: column;
    width: 100%;
    margin: 20px 0 0;
    gap: 20px;
    padding: 0 20px;
    font-size: 0.75rem;
  }

  .left-research,
  .right-research {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* Make ordered list text even smaller */
  .research ol {
    font-size: 0.65rem !important;
    line-height: 1.3;
    padding-left: 15px;
  }

  .research ol li {
    margin-bottom: 6px;
    font-size: 0.65rem !important;
  }

  .research p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .research-bottle {
    max-height: 200px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .research-bottle img {
    max-height: 200px;
  }
}

.benefits :nth-child(1) {
  font-size: 26px;
  color: hsl(0, 0%, 0%);
  font-weight: 900;
  /* margin-left: 20px; */
}

.benefits :nth-child(2) {
  font-size: 26px;
  color: #7f1239;
  font-weight: 1000;

}

.okay {
  font-weight: 900;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  /* width: 50%; */
}

.content-wrapper {
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  padding: 80px var(--site-gutter);
  margin-top: 60px;
  box-sizing: border-box;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 auto;
  padding-left: calc((var(--site-gutter) + 10px) / 2);
  padding-right: var(--site-gutter);
  max-width: var(--site-max-width);
  width: 100%;
  box-sizing: border-box;
}

.chain {
  margin-left: -25px;
  /* keep chain at its original intrinsic width */
  width: auto;
  height: auto;
}

.tick1 {
  display: flex;
  margin-top: 3px;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  /* keep icon and paragraph on the same line */
}

.tick1 p {
  font-size: 15px;
  /* allow paragraph to shrink so it stays on the same line with the icon */
  flex: 1 1 auto;
  min-width: 0;

}

.below {
  margin-left: 12px;
  font-size: 15px;

}

/* Make non-chain images responsive without changing text sizes */
.content img:not(.chain),
.tick img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Keep the tick image a reasonable fixed visual size on wide screens but allow scaling down */
.tick img {
  width: 48px;
  /* default visual size for the tick icon */
  flex: 0 0 auto;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .benefits :nth-child(1) {
    font-size: 18px;

  }

  .benefits :nth-child(2) {
    font-size: 18px;


  }

  .okay {
    font-weight: 900;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    /* width: 50%; */
  }




  .content {
    margin-left: 40px;
    margin-right: 40px;
    gap: 10px;
    padding-left: 8px;
    padding-right: 20px;
  }

  .chain {
    margin-left: -15px;
    /* align-self: center; */
  }

  .tick1 img {
    width: 30px;

  }
}

@media (max-width: 600px) {

  /* Tighten side margins on smaller devices */
  .content {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 6px;
    padding-right: 15px;
  }

  /* Stack tick items in a compact row and let text flow under/around when needed */
  .tick1 {
    align-items: center;
    gap: 10px;
  }

  /* Make icon smaller on very small screens */
  .tick1 img {
    width: 22px;

  }

  /* Remove extra left margin for the small-footnote line so it doesn't overflow */
  .below {
    margin-left: 0;
  }


  .benefits :nth-child(1) {
    font-size: 18px;

  }

  .benefits :nth-child(2) {
    font-size: 18px;


  }

  .okay {
    font-weight: 900;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    /* width: 50%; */
  }


}

/* Global box-sizing for more predictable sizing across viewports */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.questions {
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  box-shadow: 1px 2px 20px 1px #818181;
  width: 80%;


}

.faq {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  border-radius: 2px;
  /* align-items: center; */
  /* height: 100px; */
  /* height:  80px; */
  border-color: #dee2e6;
  border: 1px solid #dee2e6;
  padding: 18px;
  box-sizing: border-box;
  background-color: white;
  /* gap: 20px; */
}

.faq .que {
  /* height: 90px; */
  height: 25px;

  /* padding-left: 260px; */



}

.wrapper-drop {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}


.que {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* gap: 40px; */
  /* gap:20vw; */
  /* background-color:red; */
  /* height: 6vh; */
  border-color: #dee2e6;

  border-radius: 4px;
  cursor: pointer;

}


.answer {
  max-height: 0;
  overflow: hidden;
  /* backgrou1d-color: #fff8d1; */
  padding: 0 10px;
  /* transition: all 0.5s ease, padding 0.4s ease; */

}

/* .que:hover {
  background-color: #e0b83c;
} */


.active .answer {
  /* height: 200px;  */
  max-height: 500px;
  /* padding: 15px 20px; */
  padding: 15px 5px;
  width: 95%;

  padding-top: 40px;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  transition: max-height 2s ease;
}


.active svg {
  transform: rotate(180deg);
}

.que svg {
  transition: transform 0.5s ease;
}

.que span {
  font-weight: bold;
  font-size: 12px;
  color: #7f1239;
  font-family: sans-serif;
}

.faqtop {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: bolder;
  color: #141b34;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0;
  padding-top: 20px;
}




/* Responsive overrides: don't change the original rules above; only override where needed. */

@media (max-width: 1024px) {

  .que {
    height: 20px;
  }


  .que span {
    font-size: 12px;
  }

  .questions {
    margin-top: 36px;
    padding: 0 0px;
  }

  /* Keep a maximum width but allow it to shrink on smaller viewports */
  /* .faq {
    width: 90%;
    /* max-width: 880px; */
  /* padding: 16px; */
}

*/ .que span {
  font-size: 12px;
}

.active .answer {
  /* height: 200px;  */


  padding-top: 40px;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  transition: max-height 2s ease;


}

@media (max-width: 768px) {


  .que span {
    font-size: 12px;
  }

  .questions {
    margin-top: 28px;
    padding: 0px;
  }

  .faq {
    width: 80%;
    padding: 14px;
  }

  .certificate {
    height: 80vh;
  }



  /* Stack question content vertically on narrower screens */
  .que {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: auto;
    padding: 10px 6px;
  }

  /* Keep the chevron aligned to the right of the block */
  .que svg {
    align-self: flex-end;
  }

  .que span {
    font-size: 12px;
  }



  .active .answer {
    /* height: 200px;  */
    font-size: 14px;
    line-height: 1.5;
    padding-top: 18px;
  }


  .faq .que {
    height: 20px;
  }

}

@media (max-width: 480px) {


  .answer {
    font-size: 13px;
  }

  .que span {
    font-size: 12px;
  }

  .questions {
    margin-top: -12px;
    padding: 0 0px;
  }

  .certificate-box {
    height: 600px;
  }

  .faq {
    width: 100%;
    /* padding: 12px; */
    box-sizing: border-box;
  }

  .faqtop {
    font-size: 22px;
    margin-top: 50px;
  }

  .que {
    width: 100%;
    padding: 10px 6px;
    gap: 6px;
  }

  .que span {
    font-size: 9px;
    color: #7f1239;
  }

  .answer.active {
    font-size: 13px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  /* Ensure long content wraps cleanly */
  .answer,
  .que span {
    word-break: break-word;

  }

  .faq .que {
    height: 20px;
  }

}

/* Larger FAQ question text on large screens (desktop) */
@media (min-width: 1200px) {
  .que span {
    font-size: 18px;
  }

  .faq .que {
    height: 40px;
  }
}


/* ===== TICK STYLING - FIXED ALIGNMENT ===== */
.tick {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
  width: 100%;
  justify-content: center;
  padding: 0 10px;
}

.tick img.checked {
  height: 16px;
  width: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.tick p {
  color: orange;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

/* Specific styling for black text ticks */
.tick p[style*="color:black"] {
  color: black !important;
}

/* Ensure consistent spacing in box content */
.box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  gap: 2px;
}

/* Make sure HR elements span full width */
.box-content hr {
  width: 100%;
  margin: 4px 0;
  border: none;
  border-top: 1px solid #d1d1d1;
}

/* Mobile adjustments for tick alignment */
@media (max-width: 600px) {
  .tick {
    gap: 6px;
    padding: 0 5px;
  }

  .certificate-box {
    height: 00px;
  }

  .tick img.checked {
    height: 14px;
    width: 14px;
  }

  .tick p {
    font-size: 10px;
  }

  .box-content {
    padding: 0 10px;
  }
}

/* Quick fix for mobile sales box alignment */
@media (max-width: 600px) {

  .sales .box,
  .sales .box-content,
  .price,
  .per-bottle,
  .sales .box p,
  .sales .total p {
    text-align: center !important;
  }

  .tick {
    justify-content: center !important;
  }

  .box .btn {
    width: 90% !important;
    max-width: 280px !important;
    min-width: 250px !important;
    padding: 12px 20px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #353535;
}

.grid1-wrapper {
  min-height: auto;
  padding: 80px var(--site-gutter) 100px;
  margin-top: 60px;
  margin-bottom: 0;
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  box-sizing: border-box;
  width: 100%;
}

.gridftext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.gridftext h2 {
  font-size: 43px;
  width: 70%;
  text-align: center;
  color: #353535;
}

.gridftext img {
  max-width: 80px;
  height: auto;
}

.gridftext .subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: bolder;
}

/* increase horizontal margin for the descriptive paragraph in grid1 */
.gridftext p {
  margin: 0 80px;
  line-height: 1.6;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  /* Fixed row height for equal card heights */
  grid-auto-rows: 450px;
  gap: 20px;
  align-items: start;
  justify-content: center;
}

/* HR and paragraph directly after the Ingredients grid */
.grid1-wrapper>hr {
  width: 60%;
  margin: 28px auto;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.grid1-wrapper>p {
  text-align: center;
  margin: 8px auto 48px;
  max-width: 860px;
  padding: 0 18px;
  color: #2f2f2f;
  font-size: 15px;
  line-height: 1.6;
}

/* (Removed 'below-ingredients' / 'how-works' styles) */

/* how-works styles removed per request */

/* ===== How it works (short) ===== */
.how-it-works-short {
  background: #ffffff;
  padding: 60px var(--site-gutter);
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  width: 100%;
  clear: both;
}

.how-it-works-short .how-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.how-it-works-short .how-left {
  flex: 1 1 60%;
}

.how-it-works-short .how-right {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Trusted Brands / Quality Checks (flex layout) ===== */
.trust-quality {
  background: #ffffff;
  padding: 60px var(--site-gutter);
  margin-top: 40px;
  box-sizing: border-box;
  width: 100%;
}

.trust-quality .trust-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--site-max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-quality .trust-text {
  flex: 1 1 60%;
  min-width: 260px;
}

.trust-quality .trust-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #333;
}

/* Keep default bullets and have them render inside the paragraph area */
.trust-quality .trust-text .benefits-list {
  list-style: disc;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.trust-quality .trust-text .benefit-item {
  display: block;
  padding: 8px 0;
}

/* hide the old custom check icon and use native list markers */
.trust-quality .benefit-icon {
  display: none;
}

.trust-quality .benefit-item .benefit-content h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.trust-quality .benefit-item .benefit-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.trust-quality .trust-visual {
  flex: 0 0 36%;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-quality .trust-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .trust-quality .trust-content {
    flex-direction: column;
    gap: 16px;
  }

  /* place the image above text on narrow screens for better visual flow */
  .trust-quality .trust-visual {
    order: -1;
  }
}

.how-it-works-short .how-steps {
  list-style: none;
  /* remove native bullet */
  padding-left: 0;
  /* keep layout handled by li card padding */
  margin-top: 18px;
}

.how-it-works-short .how-steps li {
  margin-bottom: 22px;
}

/* Ensure any remaining list markers are hidden in modern browsers */
.how-it-works-short .how-steps li::marker {
  color: transparent;
  font-size: 0;
}

.how-it-works-short .how-steps h3 {
  font-size: 20px;
  color: #7f1239;
  margin: 0 0 8px;
  font-weight: 800;
}

.how-it-works-short .how-steps p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #6b0f2d;
  margin: 0 0 12px;
  line-height: 1.05;
}

/* Large left-column title for the How it works section */
.how-title-box .section-title {
  text-align: right;
  font-size: 64px;
  line-height: 0.95;
  margin: 0;
}

/* How-it-works 3-column layout */
.how-steps {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.how-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.how-column-left,
.how-column-right {
  flex: 1;
}

.how-column-middle {
  flex: 0 0 auto;
  width: 362px;
  max-width: 362px;
}

.how-it-works-short .how-image {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.how-it-works-short .how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .how-it-works-short .how-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 20px 0;
  }

  .how-steps {
    flex-direction: column;
  }

  .how-column-middle {
    width: 100%;
    max-width: 100%;
    order: 2;
  }

  .how-column-left {
    order: 1;
  }

  .how-column-right {
    order: 3;
  }

  .how-it-works-short .how-image {
    height: 400px;
  }

  .how-it-works-short .how-steps h2 {
    font-size: 28px;
  }
}

/* ===== Real Results Section ===== */
.results-section {
  padding: 60px var(--site-gutter);
  background: linear-gradient(135deg, #faf9fc 0%, #ffffff 100%);
  margin-top: 0;
  margin-bottom: 0;
}

.results-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.result-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 20px rgba(127, 18, 57, 0.08);
  border: 1px solid rgba(127, 18, 57, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(127, 18, 57, 0.15);
}

.result-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.before-after {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.before-label,
.after-label {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
  color: #888;
  background: #ffffff;
}

.before-label {
  border-right: 1px solid #e0e0e0;
}

.result-card h4 {
  color: #7f1239;
  font-size: 20px;
  margin: 20px 30px 10px;
  font-weight: 600;
}

.result-card p {
  color: #555;
  line-height: 1.7;
  margin: 0 30px 25px;
  font-size: 16px;
}

.results-disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  padding: 20px;
  background: rgba(127, 18, 57, 0.05);
  border-radius: 8px;
  border-left: 4px solid #7f1239;
}

.results-disclaimer strong {
  color: #7f1239;
  font-weight: 600;
}

@media (max-width: 768px) {
  .results-section {
    padding: 60px 15px;
  }

  .results-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-card h4 {
    font-size: 18px;
    margin: 15px 20px 10px;
  }

  .result-card p {
    font-size: 15px;
    margin: 0 20px 20px;
  }

  .before-label,
  .after-label {
    font-size: 16px;
    padding: 10px;
  }
}

/* Feedback Section */
.feedback-section {
  padding: 60px var(--site-gutter);
  background: linear-gradient(135deg, #ffffff 0%, #faf9fc 100%);
  margin-top: 0;
  margin-bottom: 0;
}

.feedback-intro {
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
}

.feedback-intro h3 {
  color: #7f1239;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.feedback-intro p {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 15px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feedback-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(127, 18, 57, 0.15);
}

.feedback-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.customer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7f1239;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.customer-info h4 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.rating-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}

.feedback-text {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  font-style: italic;
  position: relative;
  padding-left: 15px;
  border-left: 3px solid #7f1239;
}

@media (max-width: 768px) {
  .feedback-section {
    padding: 60px 15px;
  }

  .feedback-intro h3 {
    font-size: 24px;
  }

  .feedback-intro p {
    font-size: 16px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feedback-card {
    padding: 25px;
  }

  .customer-avatar {
    width: 60px;
    height: 60px;
  }

  .customer-info h4 {
    font-size: 17px;
  }

  .rating-stars {
    font-size: 16px;
  }

  .feedback-text {
    font-size: 15px;
  }
}



@media (max-width: 900px) {
  .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 6px;
  }

  .section-title::after {
    width: 120px;
    height: 5px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-title-box {
    padding-right: 0;
  }
}

/* ===== How-it-works step cards ===== */
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Trusted Brands / Quality Checks layout (two-column) ===== */


.how-steps li {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(16, 41, 85, 0.06);
  border: 1px solid rgba(30, 63, 136, 0.06);
  margin-bottom: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.how-steps li:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 41, 85, 0.09);
}

.how-steps li h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #8f1540;
}

.how-steps li p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .how-steps li {
    padding: 18px 16px;
  }
}

/* Remove the blue underline under centered section titles when requested */



.grid-box {
  /* Fixed height to make all cards equal */
  height: 420px;
  border-radius: 20px;
  width: 320px;
  margin-top: 30px;
  overflow: hidden;
  padding: 18px 12px;
  box-shadow: 5px 5px 1px 0px #ffb000;
  background: white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.grid-box:hover {
  transform: translateY(-5px);
}

.grid-box img {
  /* scale the image area to match larger card height */
  height: 180px;
  width: 100%;
  margin-bottom: 8px;
  border-bottom: 3px dashed #cccccc;
  object-fit: cover;
}

.grid-box h3 {
  margin-bottom: 9px;
  text-align: center;
  font-size: 22px;
}

.grid-box p {
  /* tightened so ingredient descriptions fit reliably */
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  opacity: 0.9;
  margin: 0 5px;
  /* 5px horizontal (x) margin as requested */
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* For screens 848px to 1024px - compact 3-column layout */
@media (max-width: 1024px) and (min-width: 848px) {
  .grid1-wrapper {
    padding: 25px 10px 80px;
    margin-bottom: 0;
  }

  .gridftext {
    gap: 12px;
    margin-bottom: 25px;
  }

  .gridftext p {
    margin: 0 40px;
  }

  .gridftext h2 {
    font-size: 28px;
    width: 90%;
    line-height: 1.3;
  }

  .gridftext .subtitle {
    font-size: 18px;
  }

  .gridftext img {
    max-width: 60px;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 780px;
  }

  .grid-box {
    width: 100%;
    max-width: 240px;
    min-height: 350px;
    height: auto;
    margin-top: 15px;
    border-radius: 15px;
  }

  .grid-box img {
    height: 70px;
    margin-bottom: 6px;
  }

  .grid-box h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .grid-box p {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* Standard Laptop screens (847px and below) */
@media (max-width: 847px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    max-width: 660px;
  }

  .grid-box {
    width: 100%;
    max-width: 320px;
    min-height: 380px;
    height: auto;
  }

  .grid-box img {
    height: 90px;
  }

  .grid-box p {
    font-size: 15px;
  }

  .gridftext h2 {
    font-size: 38px;
    width: 80%;
  }

  .gridftext p {
    margin: 0 20px;
  }

  .gridftext .subtitle {
    font-size: 22px;
  }
}

/* Mobile screens (768px and below) */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-width: 400px;
  }

  .gridftext h2 {
    font-size: 32px;
    width: 90%;
  }

  .gridftext p {
    margin: 0 12px;
  }

  .gridftext .subtitle {
    font-size: 20px;
  }

  .grid1-wrapper {
    padding: 20px 15px 70px;
    margin-bottom: 0;
  }

  .how-it-works-short {
    margin-top: 0;
    padding: 60px var(--site-gutter);
  }
}

/* Small mobile screens (480px and below) */
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .grid-box {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    min-height: 320px;
    height: auto;
  }

  .grid-box img {
    height: 80px;
  }

  .grid-box h3 {
    font-size: 20px;
  }

  .grid-box p {
    font-size: 14px;
    line-height: 1.4;
  }

  .gridftext h2 {
    font-size: 28px;
    width: 95%;
  }

  .gridftext .subtitle {
    font-size: 18px;
  }

  .grid1-wrapper {
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .how-it-works-short {
    margin-top: 0;
    padding: 50px var(--site-gutter);
  }
}


.grid2-wrapper {
  min-height: 100vh;
  padding: 80px var(--site-gutter);
  margin-top: 60px;
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 60px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  grid-auto-rows: 280px;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.grid2-box {
  height: 250px;
  border-radius: 30px;
  width: 320px;
  margin-top: 30px;
  overflow: visible;
  box-shadow: 2px 3px 0px 1px #7f1239;
  background: white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 10px;
}

.grid2-box:hover {
  transform: translateY(-5px);
}

.image2 {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -55px;
}

.grid2-box img {
  height: 70px;
  width: 70px;
}

.grid2-box .title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: bolder;
  margin-top: 70px;
}

.grid2-box p {
  font-size: 18px;
  text-align: center;
  opacity: 0.8;
  width: 280px;
  color: rgb(0, 0, 0);
  line-height: 1.4;
  margin-bottom: 15px;
}

/* For screens 848px to 1024px - Increased side margins */
@media (max-width: 1024px) and (min-width: 848px) {
  .grid2-wrapper {
    padding: 40px 30px;
    /* Increased left & right from 15px to 30px */
  }

  .grid2 {
    grid-template-columns: repeat(3, 250px);
    gap: 20px;
    grid-auto-rows: 220px;
  }

  .grid2-box {
    width: 250px;
    height: 180px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .image2 {
    height: 80px;
    width: 80px;
    top: -40px;
  }

  .grid2-box img {
    height: 50px;
    width: 50px;
  }

  .grid2-box .title {
    font-size: 17px;
    margin-top: 45px;
    margin-bottom: 8px;
  }

  .grid2-box p {
    font-size: 14px;
    width: 230px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

/* Standard Laptop screens (847px and below) */
@media (max-width: 847px) {
  .grid2-wrapper {
    padding: 40px 30px;
    /* Added side margins */
  }

  .grid2 {
    grid-template-columns: repeat(2, 280px);
    grid-auto-rows: 240px;
    gap: 25px;
  }

  .grid2-box {
    width: 280px;
    height: 200px;
  }

  .grid2-box .title {
    font-size: 18px;
    margin-top: 55px;
  }

  .grid2-box p {
    font-size: 15px;
    width: 240px;
  }
}

/* Mobile screens (768px and below) */
@media (max-width: 768px) {
  .grid2-wrapper {
    padding: 30px 25px;
    /* Increased side margins */
  }

  .grid2 {
    grid-template-columns: 280px;
    grid-auto-rows: auto;
    gap: 20px;
  }
}

/* Small mobile screens (480px and below) */
@media (max-width: 480px) {
  .grid2-wrapper {
    padding: 30px 20px;
    /* Increased side margins */
  }

  .grid2 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
  }

  .grid2-box {
    width: 100%;
    max-width: 280px;
    height: 190px;
    margin: 0 auto;
    margin-top: 0;
  }

  .image2 {
    height: 80px;
    width: 80px;
    top: -40px;
  }

  .grid2-box img {
    height: 45px;
    width: 45px;
  }

  .grid2-box .title {
    font-size: 16px;
    margin-top: 45px;
  }

  .grid2-box p {
    font-size: 13px;
    width: 90%;
    line-height: 1.3;
  }
}

.footer {
  height: 30vh;
  background-color: black;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footerlinks ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footerlinks ul li {
  font-size: 16px;
  width: auto;
  text-align: center;
  padding: 5px 15px;
}

.footerlinks ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footerlinks ul li a:hover {
  color: #cccccc;
}

.copyright {
  text-align: center;
  color: rgb(70, 62, 62);
  margin-top: 20px;
  font-size: 19px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.copyright img {
  border-bottom: 1px solid white;
  max-width: 200px;
  /* Default size */
  height: auto;
}

/* Specific adjustment for 847px width */
@media (max-width: 847px) {
  .footer {
    height: 20vh;
    /* Reduced height */
    padding: 25px 15px;
  }

  .footerlinks ul li {
    font-size: 14px;
    /* Smaller font */
    padding: 4px 12px;
  }

  .footerlinks ul li a {
    font-size: 14px;
    /* Smaller font */
  }

  .copyright {
    font-size: 16px;
    /* Smaller font */
    margin-top: 15px;
  }

  .copyright img {
    max-width: 150px;
    /* Reduced image size */
    margin: 5px auto;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer {
    padding: 30px 16px;
    height: auto;
    min-height: 25vh;
  }

  .footerlinks ul {
    gap: 8px;
    padding: 0 10px;
  }

  .footerlinks ul li {
    font-size: 15px;
    padding: 4px 12px;
  }

  .footerlinks ul li a {
    font-size: 15px;
  }

  .copyright {
    font-size: 17px;
  }

  .copyright img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 25px 12px;
    min-height: 20vh;
  }

  .footerlinks ul {
    gap: 6px 12px;
    justify-content: center;
  }

  .footerlinks ul li {
    font-size: 14px;
    padding: 3px 10px;
  }

  .footerlinks ul li a {
    font-size: 14px;
  }

  .copyright {
    font-size: 15px;
    margin-top: 15px;
  }

  .copyright img {
    max-width: 140px;
    margin: 8px auto 4px;
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 20px 10px;
    min-height: 15vh;
  }

  .footerlinks ul {
    gap: 4px 8px;
  }

  .footerlinks ul li {
    font-size: 13px;
    padding: 2px 8px;
  }

  .footerlinks ul li a {
    font-size: 13px;
  }

  .copyright {
    font-size: 13px;
    margin-top: 12px;
  }

  .copyright img {
    max-width: 120px;
    margin: 6px auto 3px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px 8px;
    height: auto;
  }

  .footerlinks ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px 6px;
    padding: 0 5px;
  }

  .footerlinks ul li {
    width: auto;
    max-width: none;
    font-size: 12px;
    padding: 2px 6px;
    flex: 0 0 auto;
  }

  .footerlinks ul li a {
    font-size: 12px;
    padding: 4px 0;
  }

  .copyright {
    margin-top: 10px;
    font-size: 12px;
    color: #bdbdbd;
    padding: 0 10px;
  }

  .copyright img {
    max-width: 100px;
    margin: 4px auto 2px;
  }
}

@media (max-width: 360px) {
  .footer {
    padding: 12px 5px;
  }

  .footerlinks ul {
    gap: 2px 4px;
  }

  .footerlinks ul li {
    font-size: 11px;
    padding: 1px 4px;
  }

  .footerlinks ul li a {
    font-size: 11px;
    padding: 3px 0;
  }

  .copyright {
    font-size: 11px;
    margin-top: 8px;
  }

  .copyright img {
    max-width: 90px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Offset for fixed navbar when jumping to sections */
section,
div[id] {
  scroll-margin-top: 50px;
}

@media (max-width: 768px) {

  section,
  div[id] {
    scroll-margin-top: 35px;
  }
}

@media (max-width: 480px) {

  section,
  div[id] {
    scroll-margin-top: 15px;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100vw;
  padding: 0 60px;
  background-color: #7f1239;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.navbar ul li {
  list-style-type: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins";
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.navbar ul li a {
  text-decoration: none !important;
  color: white;
}

.navbar a {
  text-decoration: none !important;
  color: white;
}

.navbar ul li:hover {
  opacity: 0.8;
}

.logo {
  height: 80px;
  width: 160px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 70%;
  width: 100%;
  object-fit: contain;
}

.navbar button {
  height: 45px;
  width: 140px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  cursor: pointer;
  background-color: #000;
  font-family: "Poppins";
  border: 2px solid white;
  transition: all 0.3s ease;
}

.navbar button:hover {
  /* Match hero button hover */
  background: linear-gradient(to bottom, #6b0f2d 50%, #5a0d26 50%);
  transform: translateY(-2px);
}

.order-btn button {
  display: none;
  height: 0;
  width: 0;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 40px;
    height: 75px;
  }

  .navbar ul {
    gap: 35px;
  }

  .navbar ul li {
    font-size: 15px;
  }

  .navbar button {
    height: 42px;
    width: 130px;
    font-size: 13px;
  }

  .logo {
    height: 75px;
    width: 140px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {

  .navbutton {
    display: none;
  }

  .navbar {
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
  }

  /* hide menu initially */
  .navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 0;
    max-height: 0;
    background-color: #7f1239;
    gap: 20px;
    display: none;
    padding-top: 0;
    z-index: 10;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar.active ul {
    display: flex;
    height: auto;
    max-height: 400px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  /* list items */
  .navbar ul li {
    font-size: 18px;
    font-weight: 600;
    width: auto;
  }

  /* "Order Now" button inside ul */
  .order-btn button {
    width: 160px;
    height: 45px;
    font-size: 15px;
    margin-top: 10px;
    display: block;
    margin-left: 0;
  }

  /* Logo smaller and fixed left */
  .logo {
    margin: 0;
    height: 70px;
    width: 120px;
  }

  .logo img {
    height: 80%;
    width: auto;
  }

  /* Hamburger icon */
  .hamburger {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    right: 30px;
    top: 33px;
    transition: all 0.3s ease;
    z-index: 15;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }

  .hamburger::before {
    transform: translateY(-9px);
  }

  .hamburger::after {
    transform: translateY(9px);
  }

  /* Active hamburger -> X */
  .navbar.active .hamburger {
    background-color: transparent;
  }

  .navbar.active .hamburger::before {
    transform: rotate(45deg);
  }

  .navbar.active .hamburger::after {
    transform: rotate(-45deg);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .navbar {
    height: 65px;
    padding: 0 20px;
  }

  .navbar ul {
    gap: 15px;
  }

  .navbar ul li {
    font-size: 16px;
  }

  .order-btn button {
    width: 140px;
    height: 42px;
    font-size: 14px;
  }

  .logo {
    height: 65px;
    width: 100px;
  }

  .hamburger {
    width: 28px;
    right: 20px;
    top: 30px;
  }

  .hamburger::before,
  .hamburger::after {
    width: 28px;
  }
}

/* Grid2 Title Responsive Styles */
.gird2-title {
  padding: 40px 60px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.gird2-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.2;
}

.gird2-title p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .gird2-title {
    padding: 35px 40px;
    margin-bottom: 35px;
  }

  .gird2-title h2 {
    font-size: 32px;
  }

  .gird2-title p {
    font-size: 15px;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .gird2-title {
    padding: 30px 30px;
    margin-bottom: 30px;
  }

  .gird2-title h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .gird2-title p {
    font-size: 14px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gird2-title {
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .gird2-title h2 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .gird2-title p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.certificate {
  background: repeating-linear-gradient(330deg,
      #f1f0f4,
      #f1f0f4 2px,
      #fff 2px,
      #fff 4px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* balanced padding so the box doesn't overflow the viewport */
  padding: 60px var(--site-gutter);
  box-sizing: border-box;
  overflow: visible;
}

.certificate .logo {
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate .logo img {
  height: auto;
  max-height: 120px;
  width: auto;
  display: block;
}

.certificate .certificate-box {
  width: 75%;
  max-width: 950px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f3f3f3;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: -3px -3px 0px 0px #7f1239, 5px 5px 0px 0px #7f1239;
  margin: 0 auto;
  overflow: visible;
}

.certificate .certificate-box h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-align: center;
}

.certificate .certificate-box p {
  margin: 0 30px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

.certificate-box .made {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.certificate-box .made img {
  height: 40px;
  width: 40px;
  display: inline-block;
}

@media (min-width: 1200px) {

  /* Keep certificate comfortably sized on very large screens */
  .certificate {
    padding: 80px var(--site-gutter);
  }

  .certificate .certificate-box {
    width: 80%;
    max-width: 950px;
    padding: 50px 40px;
  }

  .certificate .certificate-box h3 {
    font-size: 1.9rem;
  }

  .certificate .certificate-box p {
    font-size: 0.95rem;
    margin: 0 40px;
  }

  .certificate .logo img {
    height: 120px;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .certificate {
    padding: 50px 30px;
    min-height: 50vh;
  }

  .certificate .certificate-box {
    width: 90%;
    padding: 35px 25px;
  }

  .certificate .certificate-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .certificate .certificate-box p {
    font-size: 0.85rem;
    margin: 0 20px;
  }

  .certificate .logo {
    margin-bottom: 12px;
  }

  .certificate .logo img {
    height: 90px;
  }

  .certificate-box .made {
    margin-top: 20px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .certificate {
    padding: 40px 20px;
    min-height: auto;
  }

  .certificate .certificate-box {
    width: 95%;
    padding: 30px 20px;
    box-shadow: -3px -3px 0px 0px #7f1239, 4px 4px 0px 0px #7f1239;
  }

  .certificate .certificate-box h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding: 0 10px;
  }

  .certificate .certificate-box p {
    margin: 0 15px;
    font-size: 0.75rem;
  }

  .certificate .logo {
    margin-bottom: 10px;
  }

  .certificate .logo img {
    height: 80px;
  }

  .certificate-box .made {
    margin-top: 18px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .certificate {
    padding: 30px 15px;
  }

  .certificate .certificate-box {
    width: 95%;
    padding: 25px 15px;
  }

  .certificate .certificate-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .certificate .certificate-box p {
    margin: 0 10px;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .certificate .logo {
    margin-bottom: 8px;
  }

  .certificate .logo img {
    height: 70px;
  }

  .certificate-box .made {
    display: flex !important;
    gap: 10px;
    margin-top: 15px;
  }

  .certificate-box .made img {
    display: block !important;
    height: 35px;
    width: 35px;
  }
}

/* ===== HERO SECTION - FULLY RESPONSIVE ===== */

.headings {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 20px;
  margin-left: 0;
}

.headings h2 {
  font-weight: 900;
  font-size: 26px;
  margin-top: 15px;
}

.headings span {
  color: #7f1239;
  font-weight: 900;
}

.left p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  margin-left: 0;
}

.hero .btn {
  background-color: #7f1239;
  color: white;
  font-weight: 900;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  border: 1px solid;
  transition: all 0.3s ease;
  width: fit-content;
  min-width: 200px;
  text-align: center;
  margin-left: 0;
}

.hero .btn:hover {
  background: linear-gradient(to bottom, #6b0f2d 50%, #5a0d26 50%);
  transform: translateY(-2px);
}

/* ===== Button shine effect (hover) =====
   Applies to native buttons and common button-like classes. The shine uses a
   pseudo-element so it doesn't change markup. Animation only runs on hover. */
button,
.btn,
button,
.btn,
input[type="button"],
input[type="submit"],
a.btn,
.navbar button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  /* ensure pseudo-element is positioned relative to the button */
}

button::after,
.btn::after,
input[type="button"]::after,
input[type="submit"]::after,
a.btn::after,
.navbar button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  opacity: 0.25;
  z-index: -1;
  /* keep the shine behind the button text */
  /* continuous slow looping shine */
  animation: vivalis-shine 5s linear infinite;
}


@keyframes vivalis-shine {
  0% {
    left: -75%;
    opacity: 0;
  }

  50% {
    left: 150%;
    opacity: 0.35;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}


.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 60%;
}

.right img {
  max-width: 125%;
  height: auto;
  max-height: 1300px;
  object-fit: contain;
  /* margin-top: 50px; */
}

/* Override scroll-margin for hero section */
#hero {
  scroll-margin-top: 0 !important;
}

/* ===== TABLET BREAKPOINT (1024px) ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: 450px;
    padding: 15px;
  }

  .left {
    padding: 30px 40px;
  }

  .headings {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .left p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero .btn {
    font-size: 1.1rem;
    padding: 12px 25px;
    min-width: 180px;
  }

  .right img {
    max-height: 380px;
  }
}

/* ===== TABLET/MOBILE TRANSITION (768px) ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    height: auto;
    margin-top: 100px !important;
    /* remove extra top gap */
    padding: 30px 20px;
    padding-top: 80px !important;
    align-items: center;
  }

  .left {
    max-width: 100%;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    order: 1;
    align-items: center;
  }

  .headings,
  .left p,
  .hero .btn {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .right {
    max-width: 100%;
    width: 100%;
    order: 2;
    margin-top: 20px;
  }

  .headings {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .left p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero .btn {
    margin: 0 auto;
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
    max-width: 280px;
  }

  .right img {
    max-height: 300px;
    width: auto;
    margin-top: -40px;
  }
}

/* ===== MOBILE BREAKPOINT (600px) ===== */
@media (max-width: 600px) {
  .hero {
    padding: 20px 15px;
    margin-top: 70px;
    align-items: center;
  }

  .left {
    padding: 15px 0;
    margin: 0 auto;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .headings {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .left p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
    max-width: 260px;
  }

  .right img {
    max-height: 250px;
  }
}

/* ===== SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .hero {
    padding: 15px 10px;
    margin-top: 65px;
  }

  .left {
    padding: 10px 0;
    margin: 0 auto;
  }

  .headings {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .left p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .hero .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
    max-width: 240px;
    min-width: 200px;
  }

  .right img {
    max-height: 220px;
  }
}

/* ===== EXTRA SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
  .hero {
    padding: 12px 8px;
  }

  .headings {
    font-size: 1.1rem;
  }

  .left p {
    font-size: 0.8rem;
  }

  .hero .btn {
    font-size: 0.85rem;
    padding: 9px 16px;
    min-width: 180px;
  }

  .right img {
    max-height: 200px;
  }
}

/* ===== BOXES ===== */
/* ===== BOXES ===== */
.sales .box {
  position: relative;
  min-height: 500px;
  border: 5px solid #ffffff;
  flex: 1;
  box-sizing: border-box;
  border-radius: 20px;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center !important;
  font-weight: 700;
  padding-top: 80px;
  cursor: pointer;
  text-align: center;
}

.about {
  background-color: #f0f0f0;
}

.about {
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--site-gutter);
  background-color: #ffffff;
  border-radius: 0;
  /* Removed border radius */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.about-left {
  flex: 1;
  min-width: 300px;
  padding: 20px 40px;
  /* Increased horizontal padding */
  margin: 0 20px;
  /* Added horizontal margin */
}

.about-left p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: justify;
}

.about-left ul {
  list-style: none;
  padding: 0;
  margin: 0 20px;
  /* Added horizontal margin */
}

.about-left li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 30px;
  color: #444;
  line-height: 1.6;
}

.about-left li:last-child {
  border-bottom: none;
}

.about-left li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  background-color: #7f1239;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.about-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  /* Increased horizontal padding */
  margin: 0 20px;
  /* Added horizontal margin */
}

.about-right img {
  max-width: 100%;
  height: auto;
  /* Limit the displayed height so the image is shorter */
  max-height: 380px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  /* Removed border radius from image */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-right img:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .about-left,
  .about-right {
    width: 100%;
    padding: 10px 30px;
    /* Increased horizontal padding for mobile */
    margin: 0 15px;
    /* Adjusted margin for mobile */
  }

  .about-left p {
    font-size: 1rem;
    text-align: left;
  }

  .about-left ul {
    margin: 0 15px;
    /* Adjusted margin for mobile */
  }

  /* Reduce about image height on tablet */
  .about-right img {
    max-height: 260px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 20px 10px;
  }

  .about h2 {
    font-size: 1.6rem;
  }

  .about-left,
  .about-right {
    padding: 10px 20px;
    /* Increased horizontal padding for small mobile */
    margin: 0 10px;
    /* Adjusted margin for small mobile */
  }

  .about-left li {
    padding-left: 25px;
    font-size: 0.95rem;
  }

  .about-left li::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .about-left ul {
    margin: 0 10px;
    /* Adjusted margin for small mobile */
  }

  /* Reduce about image height on small mobile */
  .about-right img {
    max-height: 180px;
  }
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #6b0f2d;
  margin: 0 0 12px;
  line-height: 1.05;
}

/* Large left-column title for the How it works section */
.how-left .section-title {
  text-align: left;
  font-size: 64px;
  line-height: 0.95;
  margin: 0 0 18px;
}

.how-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

/* How VittaBurn - 3 column layout with image in middle */
.how-intro {
  margin: 0 auto 20px;
  color: #444;
  max-width: 760px;
  line-height: 1.6;
  text-align: center;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: start;
}

.how-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.how-column-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card {
  background: #fff;
  border: 1px solid #efecec;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.how-card h4 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  color: #5a0d26;
  font-weight: 700;
}

.how-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(127, 18, 57, 0.09);
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-list {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 0;
}

.step-item {
  padding: 18px 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #a01848;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #7f1239;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-weight: bold;
  margin-right: 8px;
  font-size: 0.8rem;
}

.step-title {
  font-size: 1.1rem;
  color: #5a0d26;
  margin-bottom: 8px;
  font-weight: 600;
  display: inline-block;
}

.step-description {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
  margin-top: 8px;
}

.image-placeholder {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.placeholder-box {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.placeholder-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.placeholder-box img:hover {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 15px;
  }

  .how-it-works h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .steps-container {
    flex-direction: column;
    gap: 30px;
  }

  .steps-list,
  .image-placeholder {
    width: 100%;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }

  .step-item {
    padding: 16px;
    margin-bottom: 12px;
  }

  .step-title {
    font-size: 1.05rem;
  }

  .placeholder-box {
    height: 280px;
  }

  /* Stack how-steps into 1 column on smaller screens */
  .how-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-card {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 30px 10px;
  }

  .how-it-works h2 {
    font-size: 1.6rem;
  }

  .steps-container {
    gap: 25px;
  }

  .step-item {
    padding: 14px;
    margin-bottom: 10px;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-description {
    font-size: 0.9rem;
  }

  .step-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 0.75rem;
  }

  .placeholder-box {
    height: 220px;
  }
}

.sales,
.grid1-wrapper,
.grid2-wrapper,
.certificate,
.wrapper-drop,
.testimonials,
.content-wrapper {
  background: #ffffff;
}

/* Compact: remove vertical gaps between main sections */
.sales,
.grid1-wrapper,
.grid2-wrapper,
.certificate,
.wrapper-drop,
.testimonials,
.buy-now,
.content-wrapper,
.hero {
  margin-top: 0 !important;
  padding: 20px !important;
  margin-bottom: 0px !important;

}

.trust-quality {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.trust-quality h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.trust-quality h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.trust-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefit-item {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  background: #7f1239;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.1rem;
  color: #5a0d26;
  margin-bottom: 4px;
  font-weight: 600;
}

.benefit-description {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.trust-visual {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* center image vertically within the visual column */
  padding: 0;
}

.trust-visual img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  /* ensure perfect horizontal centering */
}

/* Responsive Design */
@media (max-width: 768px) {
  .trust-quality {
    padding: 40px 15px;
  }

  .trust-quality h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .trust-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .trust-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .trust-text,
  .trust-visual {
    width: 100%;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }

  .benefit-item {
    padding: 10px 0;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .trust-visual img {
    max-height: 180px;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .trust-quality {
    padding: 30px 10px;
  }

  .trust-quality h2 {
    font-size: 1.6rem;
  }

  .trust-content {
    gap: 25px;
  }

  .benefit-item {
    padding: 8px 0;
  }

  .benefit-title {
    font-size: 0.95rem;
  }

  .benefit-description {
    font-size: 0.9rem;
  }

  .benefit-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .trust-visual img {
    max-height: 150px;
    max-width: 250px;
  }
}

.who-should-buy {
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--site-gutter);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.who-should-buy h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.who-should-buy h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.who-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.who-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 0;
}

.who-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.buyer-points {
  list-style: disc;
  padding-left: 40px;
}

.buyer-point {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.who-visual {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.who-visual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .who-should-buy {
    padding: 40px 15px;
  }

  .who-should-buy h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .who-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .who-text,
  .who-visual {
    width: 100%;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }

  .who-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .buyer-points {
    padding-left: 30px;
  }

  .buyer-point {
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .who-visual img {
    max-height: 250px;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .who-should-buy {
    padding: 30px 10px;
  }

  .who-should-buy h2 {
    font-size: 1.6rem;
  }

  .who-content {
    gap: 25px;
  }

  .buyer-points {
    padding-left: 25px;
  }

  .buyer-point {
    padding: 5px 0;
    font-size: 0.9rem;
  }

  .who-visual img {
    max-height: 200px;
    max-width: 250px;
  }
}

.cta-section {
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--site-gutter);
  background-color: #ffffff;
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
}

.cta-section h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.cta-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 0;
}

.cta-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-points {
  list-style: disc;
  padding-left: 40px;
}

.cta-point {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.cta-visual {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.cta-visual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 15px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .cta-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .cta-text,
  .cta-visual {
    width: 100%;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }

  .cta-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .cta-points {
    padding-left: 30px;
  }

  .cta-point {
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .cta-visual img {
    max-height: 250px;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 30px 10px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-content {
    gap: 25px;
  }

  .cta-points {
    padding-left: 25px;
  }

  .cta-point {
    padding: 5px 0;
    font-size: 0.9rem;
  }

  .cta-visual img {
    max-height: 200px;
    max-width: 250px;
  }
}

/* CTA button: theme-matching blue variant, centered and wider */
.cta-section .btn {
  display: block;
  margin: 28px auto 0;
  width: 420px;
  max-width: 92%;
  height: 64px;
  padding: 12px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.3px;
  border-radius: 12px;
  background: linear-gradient(180deg, #6b0f2d 0%, #5a0d26 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(16, 85, 188, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.cta-section .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 46px rgba(16, 85, 188, 0.22), 0 6px 18px rgba(0, 0, 0, 0.14);
}

.cta-section .btn:active {
  transform: translateY(0) scale(0.995);
  box-shadow: 0 8px 20px rgba(16, 85, 188, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Mobile adjustments for the CTA button */
@media (max-width: 768px) {
  .cta-section .btn {
    width: 340px;
    max-width: 88%;
    height: 56px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-section .btn {
    width: 100%;
    max-width: 420px;
    height: 54px;
    font-size: 0.98rem;
  }
}

.testimonials {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonials h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.testimonials .title p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review {
  max-width: 600px;
  margin: 0 auto;
}

.review p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 40px 15px;
  }

  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .testimonials .title p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .review {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 30px 10px;
  }

  .testimonials h2 {
    font-size: 1.6rem;
  }

  .review p {
    font-size: 0.95rem;
  }
}

.dosage-instructions {
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--site-gutter);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.dosage-instructions h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.dosage-instructions h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

.dosage-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.dosage-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 0;
}

.dosage-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.instructions-list {
  list-style: disc;
  padding-left: 40px;
}

.instruction-item {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.dosage-visual {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.dosage-visual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dosage-instructions {
    padding: 40px 15px;
  }

  .dosage-instructions h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .dosage-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .dosage-text,
  .dosage-visual {
    width: 100%;
    padding: 0;
    min-width: unset;
    max-width: 100%;
  }

  .dosage-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .instructions-list {
    padding-left: 30px;
  }

  .instruction-item {
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .dosage-visual img {
    max-height: 250px;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .dosage-instructions {
    padding: 30px 10px;
  }

  .dosage-instructions h2 {
    font-size: 1.6rem;
  }

  .dosage-content {
    gap: 25px;
  }

  .instructions-list {
    padding-left: 25px;
  }

  .instruction-item {
    padding: 5px 0;
    font-size: 0.9rem;
  }

  .dosage-visual img {
    max-height: 200px;
    max-width: 250px;
  }
}

.testimonials {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  background: white;
  border-radius: 16px;
}

.testimonials h2 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #a01848, #27ae60);
  border-radius: 4px;
}

.testimonials .title p {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #a01848, #27ae60, #a01848);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  color: rgba(52, 152, 219, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: rgba(52, 152, 219, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a01848;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.3rem;
  color: #5a0d26;
  margin-bottom: 5px;
  font-weight: 700;
}

.testimonial-age {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 500;
}

.review {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.review p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  text-align: left;
  font-style: italic;
  margin: 0;
  background: rgba(237, 237, 237, 0.7);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #a01848;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 15px;
  border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #5a0d26;
  font-weight: 600;
  font-style: italic;
  flex: 1;
}

.stars {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(52, 152, 219, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
}

.stars img {
  width: 120px;
  height: 20px;
  object-fit: contain;
}

.testimonials hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a01848, transparent);
  margin: 40px auto;
  max-width: 200px;
}

.testimonials p[style*="font-size:12px"] {
  text-align: center;
  font-size: 0.9rem !important;
  color: #7f8c8d !important;
  margin-top: 40px !important;
  font-weight: 500 !important;
  font-style: italic;
  background: rgba(52, 152, 219, 0.05);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(52, 152, 219, 0.1);
  max-width: 300px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 15px;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .testimonials .title p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .testimonial-container {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-header {
    gap: 12px;
  }

  .testimonial-image {
    width: 50px;
    height: 50px;
  }

  .testimonial-name {
    font-size: 1.2rem;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .stars {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 40px 10px;
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }

  .testimonial-container {
    padding: 20px 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card::before {
    font-size: 3rem;
    right: 20px;
  }

  .review p {
    font-size: 1rem;
    padding: 12px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }
}

.offers {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.offers p {
  text-align: center;
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offers {
    padding: 40px 15px;
  }

  .offers p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .offers {
    padding: 30px 10px;
  }

  .offers p {
    font-size: 0.95rem;
  }
}

.offers {
  width: 100%;
  margin: 0 auto;
  /* reduced vertical padding to decrease bottom gap */
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.offers p {
  text-align: center;
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin: 20px auto 0 auto;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offers {
    /* slightly reduced for tablet */
    padding: 30px 15px;
  }

  .offers p {
    font-size: 1rem;
    margin: 18px auto 0 auto;
  }
}

@media (max-width: 480px) {
  .offers {
    /* mobile: keep compact spacing */
    padding: 0 10px;
  }

  .offers p {
    font-size: 0.95rem;
    margin: 0 auto 0 auto;
  }
}

/* Mobile tweaks: add top margin to hero title and center the hero left paragraph */
@media (max-width: 768px) {
  .hero .headings {
    margin-top: 36px;
    /* give the title more breathing room on mobile */
    text-align: center;
  }

  .hero .headings h1,
  .hero .headings h2 {
    margin-top: 8px;
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .hero .left p {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .hero .headings {
    margin-top: 46px;
  }

  .hero .headings h1,
  .hero .headings h2 {
    font-size: 1.5rem;
  }

  .hero .left p {
    font-size: 15px !important;
    padding: 0 10px;
  }
}

.grid1-wrapper h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.how-it-works-short h2 {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: #5a0d26;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.how-it-works-short h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a01848, #5a0d26);
  border-radius: 2px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  padding: 20px 0;
}

.keybenefits {
  margin-top: 0;
  margin-bottom: 0;
  padding: 60px var(--site-gutter);
  background: white;
}

.benefits-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 60px 80px;
  /* Increased horizontal gap to 80px */
  align-items: start;
  justify-content: center;
  max-width: 1400px;
  /* Increased max-width to accommodate larger gaps */
  margin: 0 auto;
  padding: 40px 60px;
  /* Increased side padding */
}

/* Why People Choose VittaBurn Section - Redesigned */
.why-choose {
  background: white;
  padding: 60px var(--site-gutter);
  margin: 0;
}

.why-choose .section-title {
  text-align: center;
  color: #7f1239;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.why-choose-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
}

.why-card {
  background: #f9f9f9;
  border: none;
  border-radius: 8px;
  padding: 25px 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.why-card::before {
  display: none;
}

.why-card:hover {
  background: #f4f4f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.why-card h3 {
  color: #333;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-left: 0;
  line-height: 1.3;
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card ul li {
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #555;
  font-size: 0.92rem;
  position: relative;
}

.why-card ul li:last-child {
  margin-bottom: 0;
}

.why-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-color: #7f1239;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.why-choose-image {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  padding-top: 20px;
}

.why-choose-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-choose-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .why-choose-container {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .why-choose-image {
    flex: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 0;
  }

  .why-choose-cards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 50px 20px;
  }

  .why-choose .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 20px 22px;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card ul li {
    font-size: 0.88rem;
    padding-left: 28px;
  }

  .why-card ul li::before {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
}

.benefit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  padding: 40px 25px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(127, 18, 57, 0.15);
  border-color: #7f1239;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7f1239, #a01848);
}

.benefit-image {
  border-radius: 50%;
  background: linear-gradient(135deg, #7f1239, #a01848);
  box-shadow: 0 8px 20px rgba(127, 18, 57, 0.3);
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.benefit-box:hover .benefit-image {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(127, 18, 57, 0.4);
}

.benefit-image img {
  height: 50px;
  width: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.benefit-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1e293b;
  line-height: 1.3;
  position: relative;
  padding-bottom: 12px;
}

.benefit-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7f1239, #3b82f6);
  border-radius: 2px;
}

.benefit-description {
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: center;
  color: #64748b;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Responsive Media Queries */

/* For tablets and smaller desktops */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    /* Adjusted gaps for tablet */
    padding: 30px 40px;
    max-width: 1000px;
  }
}

/* For smaller tablets */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Single column so only vertical gap matters */
    padding: 20px 30px;
    max-width: 600px;
  }

  .benefit-box {
    min-height: 280px;
    padding: 30px 20px 25px;
  }

  .benefit-title {
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 15px;
  }

  .benefit-description {
    font-size: clamp(13px, 1.8vw, 15px);
    padding: 0 5px;
  }

  .benefit-image {
    height: 90px;
    width: 90px;
    margin-bottom: 15px;
  }

  .benefit-image img {
    height: 45px;
    width: 45px;
  }
}

/* For small mobile devices */
@media (max-width: 480px) {
  .benefits-grid {
    padding: 15px 20px;
    gap: 30px;
  }

  .benefit-box {
    min-height: 260px;
    padding: 25px 15px 20px;
    border-radius: 16px;
  }

  .benefit-title {
    font-size: clamp(16px, 4vw, 18px);
  }

  .benefit-description {
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.5;
    padding: 0 8px;
  }
}

/* For very large screens */
@media (min-width: 1600px) {
  .benefits-grid {
    gap: 80px 100px;
    /* Even larger gaps for big screens */
    max-width: 1600px;
    padding: 50px 80px;
  }
}

/* Override: Increase the 90-day guarantee logo size and ensure it wins over earlier rules */
.certificate .logo img {
  max-height: 220px !important;
  height: auto !important;
  width: auto !important;
}

@media (max-width: 1024px) {
  .certificate .logo img {
    max-height: 160px !important;
  }
}

@media (max-width: 768px) {
  .certificate .logo img {
    max-height: 140px !important;
  }
}

@media (max-width: 480px) {
  .certificate .logo img {
    max-height: 120px !important;
  }
}

/* Trust Badges Section - Below Product Image */
.right .trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.right .trust-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.right .trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 63, 136, 0.12);
  border-color: #7f1239;
}

.right .trust-logo {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right .trust-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
  margin-top: 0;
}

.right .trust-stars {
  display: flex;
  gap: 2px;
}

.right .trust-stars .star {
  color: #d4af37;
  font-size: 14px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.right .trust-stars .star.half {
  position: relative;
  color: #d1d1d1;
}

.right .trust-stars .star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
  width: 50%;
  overflow: hidden;
}

.right .trust-rating {
  color: #333333;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.right .trust-rating strong {
  font-size: 16px;
  color: #7f1239;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .right .trust-badges {
    margin-top: 20px;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .right .trust-card {
    min-width: 100px;
    padding: 12px 10px;
    gap: 6px;
  }

  .right .trust-logo {
    height: 35px;
    width: 100%;
    max-width: 100%;
  }

  .right .trust-logo img {
    max-width: 90px;
    max-height: 100%;
    object-fit: contain;
  }

  .right .trust-stars .star {
    font-size: 12px;
  }

}

.benefit-image img {
  height: 45px;
  width: 45px;
}


/* For small mobile devices */
@media (max-width: 480px) {
  .benefits-grid {
    padding: 15px 20px;
    gap: 30px;
  }

  .benefit-box {
    min-height: 260px;
    padding: 25px 15px 20px;
    border-radius: 16px;
  }

  .benefit-title {
    font-size: clamp(16px, 4vw, 18px);
  }

  .benefit-description {
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.5;
    padding: 0 8px;
  }
}

/* For very large screens */
@media (min-width: 1600px) {
  .benefits-grid {
    gap: 80px 100px;
    /* Even larger gaps for big screens */
    max-width: 1600px;
    padding: 50px 80px;
  }
}

/* Override: Increase the 90-day guarantee logo size and ensure it wins over earlier rules */
.certificate .logo img {
  max-height: 220px !important;
  height: auto !important;
  width: auto !important;
}

@media (max-width: 1024px) {
  .certificate .logo img {
    max-height: 160px !important;
  }
}

@media (max-width: 768px) {
  .certificate .logo img {
    max-height: 140px !important;
  }
}

@media (max-width: 480px) {
  .certificate .logo img {
    max-height: 120px !important;
  }
}

/* Trust Badges Section - Below Product Image */
.right .trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.right .trust-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.right .trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 63, 136, 0.12);
  border-color: #7f1239;
}

.right .trust-logo {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right .trust-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.right .trust-stars {
  display: flex;
  gap: 2px;
}

.right .trust-stars .star {
  color: #d4af37;
  font-size: 14px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.right .trust-stars .star.half {
  position: relative;
  color: #d1d1d1;
}

.right .trust-stars .star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #d4af37;
  width: 50%;
  overflow: hidden;
}

.right .trust-rating {
  color: #333333;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.right .trust-rating strong {
  font-size: 16px;
  color: #7f1239;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 900px) {
  .right .trust-badges {
    margin-top: 20px;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .right .trust-card {
    min-width: 100px;
    padding: 12px 10px;
    gap: 6px;
  }

  .right .trust-logo {
    height: 35px;
    width: 100%;
    max-width: 100%;
  }

  .right .trust-logo img {
    max-width: 90px;
    max-height: 100%;
    object-fit: contain;
    margin-top: 10px;
  }

  .right .trust-stars .star {
    font-size: 12px;
  }

  .right .trust-rating {
    font-size: 10px;
  }

  .right .trust-rating strong {
    font-size: 10px;
  }

  .right .trust-rating strong {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .right .trust-badges {
    margin-top: 15px;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .right .trust-card {
    min-width: 90px;
    padding: 20px 8px 10px 8px;
    gap: 5px;
    position: relative;
    overflow: visible;
  }

  .right .trust-logo {
    height: 30px;
    width: 100%;
    max-width: 100%;
    margin-top: -25px !important;
    transform: none !important;
    background: #fff;
    padding: 0 5px;
    border-radius: 4px;
  }

  .right .trust-logo img {
    max-width: 80px;
    max-height: 100%;
    object-fit: contain;
  }

  .right .trust-stars {
    gap: 1px;
  }

  .right .trust-stars .star {
    font-size: 11px;
  }

  .right .trust-rating {
    font-size: 10px;
  }

  .right .trust-rating strong {
    font-size: 14px;
  }
}

/* =====================
   Health Experts Section
   ===================== */
.health-experts {
  background: #f8f9fa;
  padding: 60px var(--site-gutter);
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.health-experts-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.health-experts-image {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 58px;
  /* Aligns image with paragraph text, not title */
}

.health-experts-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-experts-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.health-experts-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.health-experts-title {
  font-size: 28px;
  font-weight: 700;
  color: #7f1239;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.health-experts-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.health-experts-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  text-align: justify;
}

.health-experts-text p strong {
  font-weight: 600;
  color: #222;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .health-experts {
    padding: 60px var(--site-gutter);
  }

  .health-experts-wrapper {
    gap: 35px;
    padding: 35px;
  }

  .health-experts-image {
    flex: 0 0 280px;
  }

  .health-experts-image img {
    max-width: 280px;
  }

  .health-experts-title {
    font-size: 24px;
  }

  .health-experts-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .health-experts {
    padding: 50px 30px;
  }

  .health-experts-wrapper {
    flex-direction: column;
    gap: 25px;
    padding: 30px 25px;
  }

  .health-experts-image {
    flex: 0 0 auto;
    max-width: 250px;
    margin: 0 auto;
    /* Reset margin on mobile for centered layout */
  }

  .health-experts-image img {
    max-width: 250px;
  }

  .health-experts-title {
    font-size: 22px;
    text-align: center;
  }

  .health-experts-text p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .health-experts {
    padding: 35px 18px;
  }

  .health-experts-wrapper {
    padding: 25px 18px;
    gap: 20px;
  }

  .health-experts-image {
    max-width: 200px;
    margin: 0 auto;
    /* Keep centered on mobile */
  }

  .health-experts-image img {
    max-width: 200px;
  }

  .health-experts-title {
    font-size: 20px;
  }

  .health-experts-text p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =====================
   Approvals & Certification Section
   ===================== */
.approvals-certification {
  background: #f8f9fa;
  padding: 60px var(--site-gutter);
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.approvals-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.approvals-wrapper .section-title {
  text-align: center;
  font-size: 32px;
  color: #7f1239;
  margin-bottom: 30px;
  font-weight: 700;
}

.approvals-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.approvals-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.approval-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.approval-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.approval-item h3 {
  font-size: 19px;
  font-weight: 700;
  color: #7f1239;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.approval-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}

.approvals-badges {
  flex: 0 0 320px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-content: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.badge-item {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(127, 18, 57, 0.15);
}

.badge-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive Design for Approvals */
@media (max-width: 1024px) {
  .approvals-certification {
    padding: 60px var(--site-gutter);
  }

  .approvals-wrapper .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .approvals-content {
    gap: 40px;
    padding: 40px 35px;
  }

  .approvals-badges {
    flex: 0 0 280px;
    gap: 16px;
    padding: 16px;
  }

  .badge-item {
    width: 75px;
    height: 75px;
    padding: 10px;
  }

  .approval-item h3 {
    font-size: 17px;
  }

  .approval-item p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .approvals-certification {
    padding: 50px 30px;
  }

  .approvals-wrapper .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .approvals-content {
    flex-direction: column;
    gap: 30px;
    padding: 35px 28px;
  }

  .approvals-badges {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
  }

  .badge-item {
    width: 70px;
    height: 70px;
  }

  .approval-item {
    padding-bottom: 16px;
  }

  .approval-item h3 {
    font-size: 16px;
  }

  .approval-item p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .approvals-certification {
    padding: 35px 18px;
  }

  .approvals-wrapper .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .approvals-content {
    padding: 28px 20px;
    gap: 25px;
  }

  .approvals-text {
    gap: 20px;
  }

  .approvals-badges {
    gap: 12px;
    padding: 12px;
  }

  .badge-item {
    width: 60px;
    height: 60px;
    padding: 8px;
  }

  .approval-item {
    padding-bottom: 14px;
  }

  .approval-item h3 {
    font-size: 15px;
  }

  .approval-item p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Who Should Use Section */
.who-should-use {
  padding: 60px var(--site-gutter);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.who-should-use-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.who-should-use .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #7f1239;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.who-should-use-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Use Section with Image */
.use-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.use-text {
  order: 1;
}

.use-image {
  order: 2;
}

.use-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Avoid Section with Image */
.avoid-section {
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.avoid-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 25px;
}

.avoid-image {
  order: 1;
}

.avoid-text {
  order: 2;
}

.avoid-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.who-should-use-content .intro-text {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.who-should-use-content .use-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.who-should-use-content .use-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding: 12px 0 12px 35px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.who-should-use-content .use-list li:last-child {
  border-bottom: none;
}

.who-should-use-content .use-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #7f1239, #a01546);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.who-should-use-content .avoid-title {
  font-size: 24px;
  font-weight: 700;
  color: #7f1239;
  margin-bottom: 20px;
  padding-top: 10px;
  text-align: center;
}

.who-should-use-content .avoid-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-should-use-content .avoid-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding: 12px 0 12px 35px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.who-should-use-content .avoid-list li:last-child {
  border-bottom: none;
}

.who-should-use-content .avoid-list li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.who-should-use-content .avoid-list strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .use-section {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .use-text {
    order: 2;
  }

  .use-image {
    order: 1;
  }

  .avoid-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .avoid-image {
    order: 1;
  }

  .avoid-text {
    order: 2;
  }

  .who-should-use .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .who-should-use-content {
    padding: 30px 24px;
  }

  .who-should-use-content .intro-text {
    font-size: 18px;
  }

  .who-should-use-content .avoid-title {
    font-size: 20px;
  }

  .who-should-use-content .use-list li,
  .who-should-use-content .avoid-list li {
    font-size: 15px;
    padding-left: 32px;
  }

  .who-should-use-content .use-list li::before,
  .who-should-use-content .avoid-list li::before {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .use-section {
    gap: 20px;
    margin-bottom: 30px;
  }

  .avoid-content-wrapper {
    gap: 20px;
  }

  .who-should-use .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .who-should-use-content {
    padding: 24px 20px;
  }

  .who-should-use-content .intro-text {
    font-size: 17px;
  }

  .who-should-use-content .avoid-title {
    font-size: 19px;
  }

  .who-should-use-content .use-list li,
  .who-should-use-content .avoid-list li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* How to Take VittaBurn Section */
.how-to-take {
  background: #ffffff;
  padding: 60px var(--site-gutter);
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.how-to-take .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #7f1239;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.how-take-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.how-take-left {
  width: 100%;
}

.how-take-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.how-take-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.how-take-column-left,
.how-take-column-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-take-column-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 370px;
}

.how-take-image {
  width: 370px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-take-image img {
  width: 100%;
  height: auto;
  max-width: 370px;
  filter: drop-shadow(0 8px 20px rgba(127, 18, 57, 0.15));
  transition: transform 0.3s ease;
}

.how-take-image img:hover {
  transform: scale(1.05);
}

.how-take-card {
  background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #f0e6eb;
  transition: all 0.3s ease;
}

.how-take-card:hover {
  border-color: #7f1239;
  box-shadow: 0 6px 20px rgba(127, 18, 57, 0.12);
  transform: translateY(-2px);
}

.how-take-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #7f1239;
  margin: 0 0 12px 0;
}

.how-take-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.how-take-important {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  padding: 28px;
  border-radius: 12px;
  border: 2px solid #ffd5d5;
  max-width: 800px;
  margin: 0 auto;
}

.important-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.important-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #e74c3c;
  margin: 0 0 10px 0;
}

.important-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .how-take-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-take-column-middle {
    order: -1;
    min-width: auto;
    margin: 0 auto;
  }

  .how-take-column-left {
    order: 1;
  }

  .how-take-column-right {
    order: 2;
  }

  .how-take-image {
    width: 290px;
  }

  .how-take-image img {
    max-width: 290px;
  }
}

@media (max-width: 768px) {
  .how-to-take .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .how-take-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .how-take-steps {
    gap: 24px;
  }

  .how-take-card {
    padding: 20px;
  }

  .how-take-card h4 {
    font-size: 18px;
  }

  .how-take-card p {
    font-size: 14px;
  }

  .how-take-important {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .important-content h4 {
    font-size: 18px;
  }

  .important-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .how-to-take .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .how-take-intro {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .how-take-steps {
    gap: 20px;
  }

  .how-take-image {
    width: 230px;
  }

  .how-take-image img {
    max-width: 230px;
  }

  .how-take-card {
    padding: 18px;
  }

  .how-take-card h4 {
    font-size: 17px;
  }

  .how-take-important {
    padding: 20px;
  }

  .important-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* Safety Information & Warnings Section */
.safety-warnings {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  padding: 60px var(--site-gutter);
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.safety-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.safety-warnings .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #7f1239;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.safety-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.safety-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #ffe8d6;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.safety-card:hover {
  border-color: #ff9d5c;
  box-shadow: 0 8px 24px rgba(255, 157, 92, 0.15);
  transform: translateY(-3px);
}

.safety-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #d35400;
  margin: 0;
}

.safety-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .safety-warnings .section-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .safety-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safety-card {
    padding: 24px;
  }

  .safety-card h3 {
    font-size: 20px;
  }

  .safety-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .safety-warnings .section-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .safety-intro {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .safety-card {
    padding: 20px;
  }

  .safety-card h3 {
    font-size: 19px;
  }

  .safety-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Money-Back Guarantee Section */
.money-back-guarantee {
  background: #f8f9fa;
  padding: 60px var(--site-gutter);
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.guarantee-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-card {
  background: #ffffff;
  border: 6px solid #7f1239;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(127, 18, 57, 0.15);
  position: relative;
}

.guarantee-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.guarantee-badge img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.guarantee-title {
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.guarantee-subtitle {
  display: block;
  font-size: 42px;
  color: #7f1239;
  margin-top: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #E5C158;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.guarantee-content {
  max-width: 850px;
  margin: 30px auto 0;
}

.guarantee-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  text-align: center;
  margin: 0;
}

.guarantee-content strong {
  color: #7f1239;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .money-back-guarantee {
    padding: 50px var(--site-gutter);
  }

  .guarantee-card {
    padding: 40px 30px;
    border-width: 5px;
    border-radius: 20px;
  }

  .guarantee-badge img {
    width: 170px;
  }

  .guarantee-title {
    font-size: 28px;
  }

  .guarantee-subtitle {
    font-size: 34px;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
  }

  .guarantee-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .money-back-guarantee {
    padding: 40px var(--site-gutter);
  }

  .guarantee-card {
    padding: 30px 20px;
    border-width: 4px;
    border-radius: 16px;
  }

  .guarantee-badge {
    margin-bottom: 20px;
  }

  .guarantee-badge img {
    width: 140px;
  }

  .guarantee-title {
    font-size: 24px;
  }

  .guarantee-subtitle {
    font-size: 28px;
    margin-top: 8px;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }

  .guarantee-content {
    margin-top: 20px;
  }

  .guarantee-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Privacy & Secure Checkout Section */
.privacy-secure {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  padding: 60px var(--site-gutter);
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.privacy-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.privacy-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: auto;
}

.privacy-icon img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
  border-radius: 12px;
}

.privacy-text {
  flex: 1;
}

.privacy-title {
  font-size: 32px;
  font-weight: 800;
  color: #7f1239;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.privacy-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.privacy-text strong {
  color: #7f1239;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .privacy-secure {
    padding: 50px var(--site-gutter);
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
    padding: 35px 30px;
    gap: 30px;
  }

  .privacy-icon {
    width: 170px;
  }

  .privacy-title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .privacy-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .privacy-secure {
    padding: 40px var(--site-gutter);
  }

  .privacy-content {
    padding: 30px 20px;
    gap: 24px;
  }

  .privacy-icon {
    width: 150px;
  }

  .privacy-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .privacy-text p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Contact Support Section */
.contact-support {
  background: #ffffff;
  padding: 60px var(--site-gutter);
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  border-top: 1px solid #e0e0e0;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  color: #7f1239;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}

.contact-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px 40px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 16px 0;
}

.contact-text p:last-child {
  margin-bottom: 0;
}

.contact-text strong {
  color: #7f1239;
  font-weight: 700;
}

.contact-link {
  color: #7f1239;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #a01546;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-support {
    padding: 50px var(--site-gutter);
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .contact-content {
    padding: 30px 28px;
  }

  .contact-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .contact-support {
    padding: 40px var(--site-gutter);
  }

  .contact-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-content {
    padding: 25px 20px;
  }

  .contact-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
}