/* Top Bar Styles */
.top-bar {
  background-color: #8fae9a; /* Soft Sage Green */
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

/* Divider Style */
.top-bar .divider {
  margin: 0 8px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
  .top-bar {
    font-size: 12.5px;
    padding: 8px 12px;
  }
}


.hero-section {
  background: linear-gradient(180deg, #f4f8f5, #ffffff);
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.container {
  display: block;
}

/* =========================
   GRID
========================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   CONTENT
========================= */
.hero-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2d27;
}

.hero-title .highlight {
  color: #5f8f76;
  background: none;
}

.hero-description {
  font-size: 18px;
  color: #3d4d46;
  margin-top: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: #6a7d74;
  margin-top: 12px;
}

/* =========================
   PRICE BOX
========================= */
.price-box {
  background: #ffffff;
  border-left: 5px solid #9c7c38;
  padding: 18px 20px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.regular-price {
  font-size: 15px;
  color: #888;
}

.regular-price span {
  text-decoration: line-through;
}

.today-price {
  font-size: 20px;
  color: #1f2d27;
  margin-top: 6px;
}

.badge {
  background: #5f8f76;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

/* =========================
   CTA
========================= */
.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #a88a3c, #d4b86a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   TRUST
========================= */
.trust-text {
  font-size: 14px;
  color: #5f8f76;
  margin-top: 14px;
}

/* =========================
   IMAGE
========================= */
.hero-image-wrapper {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 90%;
  margin: -60px auto 0;
  border-left: 4px solid #9c7c38;
}

.stars {
  color: #f1b84b;
  font-size: 16px;
}

.testimonial p {
  font-size: 15px;
  color: #3d4d46;
  line-height: 1.5;
  margin: 10px 0;
}

.testimonial span {
  font-size: 14px;
  color: #6a7d74;
  font-weight: 600;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 991px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrapper {
    order: 1;
    margin-top: 0;
  }

  .hero-content {
    order: 2;
    margin-top: 30px;
  }

  .testimonial {
    order: 3;
    margin-top: 25px;
    max-width: 100%;
    border-left: none;
    border-top: 4px solid #9c7c38;
  }

  .hero-title {
    font-size: 34px;
  }
}



/* PROBLEM / SOLUTION SECTION */

.problem-solution {
  padding: 80px 0;
  background: #f9fbfa;
}

.ps-header {
  max-width: 720px;
  margin: 0 auto 50px;
}

.ps-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
}

.ps-intro {
  font-size: 18px;
  color: #6b7280;
  margin-top: 10px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.ps-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ps-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ps-points li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
  text-align: left;
}

.ps-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5f8f76;
  font-weight: bold;
}

.ps-medical {
  font-size: 15px;
  color: #4b5563;
  background: #f4fef8;
  padding: 18px;
  border-radius: 12px;
}

.ps-medical span {
  color: #b91c1c;
  font-weight: 600;
}

/* PRODUCT */
.ps-product {
  display: flex;
  justify-content: center;
}

.product-card {
  position: relative;
  /* background: #329762; */
  padding: 10px;
  border-radius: 20px;
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1); */
  border: 4px dashed #329762;
}

.product-card img {
  max-width: 260px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ee2111;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

/* SOLUTION */
.ps-solution {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ps-solution h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ps-solution p {
  font-size: 18px;
  color: #374151;
}

/* MOBILE */
@media (max-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ps-points li {
    text-align: left;
  }

  .product-card img {
    max-width: 220px;
  }
}


 
/* SCIENCE SECTION */
.science-section {
  background: #fefefe;
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
}

/* .container {
  max-width: 1150px;
  margin: auto;
} */

/* HEADER */
.science-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.science-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2d27;
}

.science-header h2 span {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #5f8f76;
}

.science-intro {
  font-size: 17px;
  color: #3d4d46;
  line-height: 1.7;
  margin-top: 18px;
}

/* GRID */
.science-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.science-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  text-align: left;
}

/* IMAGE + TITLE */
.science-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.science-top img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: #f4f8f5;
  border-radius: 50%;
  /* padding: 10px; */
}

/* TITLES */
.science-item h3 {
  font-size: 21px;
  color: #1f2d27;
}

.science-item h3 span {
  display: block;
  font-size: 14px;
  color: #9c7c38;
  margin-top: 4px;
}

/* LABELS */
.label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5f8f76;
  margin-top: 10px;
  margin-bottom: 4px;
}

/* TEXT */
.science-item p {
  font-size: 15.5px;
  color: #3d4d46;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .science-list {
    grid-template-columns: 1fr;
  }

  .science-header h2 {
    font-size: 32px;
  }

  .science-top {
    align-items: flex-start;
  }
}


/* DELIVERY SECTION */
.delivery-section {
  background: #ffffff;
  padding: 90px 20px;
  font-family: "Inter", sans-serif;
}

/* .container {
  max-width: 1100px;
  margin: auto;
} */

/* HEADER */
.delivery-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.delivery-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2d27;
  margin-bottom: 16px;
}

.delivery-header p {
  font-size: 17px;
  color: #3d4d46;
  line-height: 1.7;
}

/* CONTENT GRID */
.delivery-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.delivery-text h3 {
  font-size: 26px;
  color: #1f2d27;
  margin-bottom: 14px;
  text-align: left;
}

.delivery-text p {
  font-size: 16.5px;
  color: #3d4d46;
  line-height: 1.6;
  text-align: left;
}

/* BENEFITS */
.delivery-benefits {
  margin-top: 26px;
  list-style: none;
  padding: 0;
}

.delivery-benefits li {
  font-size: 16px;
  color: #3d4d46;
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
  text-align: left;
}

.delivery-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5f8f76;
  font-weight: 700;
}

/* IMAGE */
.delivery-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .delivery-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .delivery-text h3 {
    font-size: 24px;
  }

  .delivery-benefits li {
    padding-left: 0;
  }

  .delivery-benefits li::before {
    position: static;
    margin-right: 8px;
  }
}


/* =========================
   SOCIAL PROOF SECTION
========================= */
.social-proof {
  background: #f6faf8;
  padding: 90px 20px;
  font-family: "Inter", sans-serif;
}

/* =========================
   HEADER
========================= */
.social-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.social-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2d27;
}

.social-header p {
  font-size: 18px;
  color: #5f8f76;
  margin-top: 10px;
}

/* =========================
   GRID
========================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   CARD
========================= */
.testimonial-card {
  background: #ffffff;
  padding: 34px 32px;
  border-radius: 20px;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.06); */
  transition: transform 0.3s ease;
  margin: 0 15px;
  min-height: 390px!important;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* =========================
   TOP AREA (IMAGE + INFO)
========================= */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* CUSTOMER IMAGE */
.customer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e6efe9;
}

/* CUSTOMER INFO */
.customer-info {
  display: flex;
  flex-direction: column;
}

/* STARS */
.stars {
  color: #f1b84b;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* NAME */
.name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2d27;
}

/* VERIFIED BADGE */
.verified {
  font-size: 12px;
  color: #ffffff;
  background: #089d48;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-top: 4px;
}

/* =========================
   TEXT
========================= */
.testimonial-text {
  font-size: 16.5px;
  color: #3d4d46;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .social-header h2 {
    font-size: 32px;
  }

}

@media (max-width: 576px) {

  .testimonial-card {
    padding: 28px 24px;
  }

  .customer-img {
    width: 52px;
    height: 52px;
  }

}


/* OFFER SECTION */
.offer-section {
  background: #ffffff;
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
}

.offer-section .container {
  max-width: 1100px;
  margin: auto;
}

/* TOP BANNER */
.offer-banner {
  background: linear-gradient(135deg, #c40000, #ff2a2a);
  color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 50px;
}

.offer-banner h2 {
  font-size: 42px;
  font-weight: 800;
}

.offer-banner p {
  margin-top: 8px;
  font-size: 18px;
}

.offer-banner span {
  font-weight: 700;
}

/* GRID */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.offer-left {
  text-align: center;
}

.product-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.2));
}

/* RIGHT CONTENT */
.offer-right {
  background: #f9fbfa;
  border-radius: 26px;
  padding: 50px 45px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.offer-right h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #1f2d27;
}

/* PRICE PILL */
.price-pill {
  display: inline-flex;
  border-radius: 50px;
  overflow: hidden;
  border: 3px solid #000;
  margin-bottom: 30px;
}

.price-pill .old {
  padding: 14px 26px;
  background: #fff;
  text-decoration: line-through;
  font-size: 22px;
}

.price-pill .new {
  padding: 14px 30px;
  background: #d60000;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

/* LIST */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  margin-bottom: 14px;
  color: #3d4d46;
}

.free {
  color: #5f8f76;
  font-weight: 800;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: #dde6e1;
  margin: 30px 0;
}

/* BONUS */
.bonus {
  margin-bottom: 22px;
}

.bonus h4 {
  font-size: 18px;
  color: #1f2d27;
}

.bonus p {
  font-size: 15px;
  margin: 6px 0;
  color: #3d4d46;
}

.bonus span {
  font-size: 14px;
  font-weight: 700;
  color: #9c7c38;
}

/* CTA */
.cta-btn {
  display: block;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #5f8f76, #7fb59a);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 60px;
  text-decoration: none;
  /* box-shadow: 0 20px 45px rgba(95,143,118,0.45); */
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* PAYMENT */
.payment-img {
  margin-top: 20px;
  text-align: center;
}

.payment-img img {
  max-width: 420px!important;
  width: 100%;
}

/* SHIPPING */
.shipping {
  margin-top: 16px;
  font-size: 14px;
  color: #3d4d46;
  text-align: center;
}

/* MOBILE */
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-right {
    padding: 0px;
  }

  .offer-banner h2 {
    font-size: 32px;
  }
  #togData {
    position: relative;
    bottom: 9px;
  }
}

@media (max-width: 413px) {
  .togData {
    position: relative;
    bottom: 9px;
  }
}



/* COMPARISON SECTION */
.comparison-section {
  background: #f9fbfa;
  padding: 100px 20px;
  font-family: "Inter", sans-serif;
}

.comparison-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.comparison-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2d27;
}

.comparison-header p {
  font-size: 17px;
  color: #4b6158;
  margin-top: 12px;
}

/* TABLE */
.comparison-table {
  max-width: 1000px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  background: #ffffff;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e3ece7;
}

.table-row:last-child {
  border-bottom: none;
}

/* CELLS */
.cell {
  padding: 20px 18px;
  font-size: 15.5px;
  color: #3d4d46;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature {
  font-weight: 600;
  background: #f3f7f5;
}

/* HEADER ROW */
.table-head .cell {
  font-weight: 700;
  font-size: 15px;
  /* background: #eef4f1; */
}

.table-head span {
  font-weight: 500;
  font-size: 13px;
  color: #6b7f76;
}

/* HIGHLIGHT COLUMN */
.highlight {
  background: linear-gradient(135deg, #5f8f76, #7fb59a);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
 
/* MOBILE */
@media (max-width: 768px) {
  .comparison-table {
    overflow-x: auto;
  }

  .table-row {
    grid-template-columns: 140px repeat(3, 200px);
  }

  .comparison-header h2 {
    font-size: 30px;
  }
}

.brain-scan{
   width: 100%;
   padding: 60px 0 0;
}

.image-testimonial {
    background: #fff;
    padding: 20px;
    border: 2px dashed #5f8f76;
    border-radius: 12px;
    margin-top: 25px;
    position: relative;
}

/* SECTION */
.promise-section {
  padding: 0 0 30px;
  background: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* CONTAINER */
.promise-section .container {
  /* max-width: 600px; */
  margin: auto;
}

/* HEADINGS */
.promise-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.promise-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* ICON GRID */
.promise-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ICON ITEM */
.promise-item img {
  width: 90px;
  height: auto;
  margin-bottom: 12px;
}

.promise-item p {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  line-height: 1.4;
}

/* TABLET */
@media (max-width: 991px) {
  .promise-icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .promise-title {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .promise-icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }

  .promise-title {
    font-size: 26px;
  }

  .promise-subtitle { 
    font-size: 16px;
  }

  .promise-item img {
    width: 75px;
  }
}

.ingredients-img{
    width: 100%;
}
 

 /* Sticky Top Bar Styles */
  .urgency-bar {
    background-color: #D32F2F; /* Deep Urgent Red */
    color: white;
    text-align: center;
    padding: 12px 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    line-height: 1.4;
  }
 
  .urgency-text {
    display: inline-block;
  }

  .countdown-timer {
    background-color: white;
    color: #D32F2F;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-family: monospace;
    font-weight: 700;
  }

  /* Mobile adjustment */
  @media (max-width: 600px) {
    .urgency-bar { font-size: 13px; }
    .countdown-timer { display: inline-block; margin-top: 4px; margin-left: 5px; }
  }


    /* Comparison Table Styling */
  .comparison-wrapper {
    overflow-x: auto; /* Allows scrolling on mobile */
    margin: 40px auto;
    max-width: 900px;
    padding: 0 10px;
  }

  .luv-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .luv-table th, .luv-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
  }

  /* Header Styles */
  .luv-table th {
    background-color: #f8f8f8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
  }

  /* The Highlighted Column (Zen Drops) */
  .luv-table .highlight-col {
    background-color: #eaf6ff; /* LUV Blue - Light */
    border-left: 2px solid #2d9cdb; /* Darker Blue Border */
    border-right: 2px solid #2d9cdb;
    position: relative;
  }
 
  /* Top of the highlight column needs a border top */
  .luv-table th.highlight-col {
    border-top: 2px solid #2d9cdb;
    color: #0b5c85; /* Darker blue text */
    font-size: 18px;
  }
 
  /* Bottom of the highlight column needs a border bottom */
  .luv-table tr:last-child td.highlight-col {
    border-bottom: 2px solid #2d9cdb;
  }

  /* Icons */
  .check { color: #27ae60; font-weight: bold; font-size: 20px; }
  .cross { color: #c0392b; font-weight: bold; font-size: 20px; }
  .neutral { color: #7f8c8d; font-size: 20px; }

  /* Mobile Adjustments */
  @media (max-width: 600px) {
    .luv-table th, .luv-table td { padding: 10px 5px; font-size: 12px; }
    .check, .cross, .neutral { font-size: 16px; }
  }


  @media screen and (max-width: 767px){
    .cta-btn{
        font-size: 15px;
    }
    .offer-list li {
    font-size: 14px ;
    }
 
.faq-section {
  max-width: 800px; 
  margin: 60px auto; 
  padding: 0;  
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
 
  }

  .refrence-text{
      width: 100%;
      margin-top: 30px;
  }

  .refrence-text h5{
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #000;
  }

   .refrence-text ol{ 
    margin:0;
    padding: 0;
  }
  .refrence-text ol li{
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    padding-bottom: 10px;
    list-style: auto;
    list-style-position: inside;
  }

   /* Doctor Verification Box Styles */
   .doctor-trust-box {
    display: flex;
    flex-direction: row; /* Forces side-by-side on mobile */
    align-items: center;
    background-color: #f0fdf4;
    border: 1px solid #c6e7d0;
    border-radius: 12px;
    padding: 15px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .doctor-image-wrapper {
    flex: 0 0 80px; /* Fixed small size */
    margin-right: 15px;
    position: relative;
  }

  .doctor-image-wrapper img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .doctor-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #2c3e50;
    font-style: italic;
    margin: 0 0 5px 0;
  }

  .dr-name {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
  }

  /* Mobile Tweak: Ensure it stays side-by-side */
  @media (max-width: 480px) {
    .doctor-trust-box {padding: 12px;margin: 0 12px;}
    .doctor-image-wrapper { flex: 0 0 60px; margin-right: 12px; }
    .doctor-image-wrapper img { width: 60px !important; height: 60px !important; }
    .doctor-content p { font-size: 14px; }
  }

  /* FAQ Section Styles */
  .faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
 
  .faq-header {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
  }

  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
  }

  .faq-question {
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.3s;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
  }
 
  .faq-question:hover {
    background-color: #f1f1f1;
  }

  .faq-question:after {
    content: '+';
    font-size: 24px;
    color: #27ae60; /* Green accent */
    font-weight: bold;
    margin-left: 15px;
  }

  .faq-question.active:after {
    content: '-';
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
  }
 
  .faq-answer p {
    margin: 20px 0;
  }


   .ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
  }
 
  .ing-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  }

  .ing-title {font-weight: 800;color: #333;margin-bottom: 5px;display: block;font-size: 20px;}
  .ing-desc {font-size: 16px;color: #555;line-height: 1.3;}
 
  /* Mobile: Switch to 2 columns */
  @media (max-width: 600px) {
    .ingredient-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 10px; }
    .ing-card { padding: 10px; }
    .ing-title {font-size: 16px;}
    .ing-desc {font-size: 13px;}
  }



  .faq-btn{
    max-width: 480px;
    margin: 30px auto 25px;
  }


  /* =========================
   SLICK OVERRIDES
========================= */
.slick-testimonials {
  margin: 0 -20px;
}

.slick-slide {
  /* padding: 0 20px; */
  /* height: auto; */
}

.slick-track {
  display: flex !important;
}

.slick-slide > div {
  height: 100%;
}

/* ARROWS */
.slick-prev,
.slick-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 5;
}

.slick-prev:before,
.slick-next:before {
  color: #1f2d27;
  font-size: 22px;
}

/* DOTS */
.slick-testimonials .slick-dots {
  bottom: -50px!important;
}

.slick-dots li button:before {
  font-size: 12px!important;
  color: #089d48;
  top: 219px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #089d48!important;
  font-size: 12px;
}

/* MOBILE TWEAK */
@media (max-width: 576px) {
  .slick-testimonials {
    margin: 0;
  }
}

.custom-cta-btn{
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
}


@media screen and (max-width: 767px){
    .custom-cta-btn{
    display: block;
}
}

.newsletter_bg {
    width: 100%;
    background: #f9dfa6 url(../images/Shape_50_3_1.jpg?v=1.4) bottom center no-repeat !important;
    background-size: 100% !important;
    padding: 115px 0 !important;
    border-top: 4px solid #000;
}


  /* CONTAINER STYLE */
    .doctor-endorsement-box {
        background-color: #f8fbff; /* Very light medical blue */
        border: 1px solid #e1e8ed;
        border-left: 5px solid #0056b3; /* Dark Blue Accent Bar */
        border-radius: 8px;
        padding: 25px;
        margin: 30px auto;
        max-width: 800px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    /* FLEX LAYOUT FOR DESKTOP */
    .doc-flex-container {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    /* DOCTOR IMAGE STYLING */
    .doc-image-wrapper {
        flex-shrink: 0;
        text-align: center;
    }
   
    .doc-headshot {
        width: 120px;
        height: 120px;
        border-radius: 50%; /* Circle Crop */
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        display: block;
        margin: 0 auto;
    }

    .doc-caption {
        font-size: 11px;
        color: #666;
        margin-top: 8px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* TEXT CONTENT */
    .doc-content {
        flex-grow: 1;
    }

    .doc-headline {
        font-family: 'Georgia', serif;
        font-size: 20px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .doc-quote-text {
        font-family: 'Georgia', serif;
        font-size: 17px;
        line-height: 1.6;
        color: #444;
        font-style: italic;
        margin-bottom: 15px;
    }

    .highlight-text {
        background: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
        padding: 0 4px;
        font-weight: bold;
        color: #1a5c20;
        font-style: normal;
    }

    /* SIGNATURE AREA */
    .doc-signature {
        border-top: 1px solid #e1e8ed;
        padding-top: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .doc-name {
        font-weight: 800;
        color: #0056b3;
        font-size: 16px;
    }

    .study-ref {
        font-size: 11px;
        color: #8898aa;
        background: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        border: 1px solid #eee;
    }

    /* MOBILE RESPONSIVENESS */
    @media (max-width: 600px) {
        .doc-flex-container {
            flex-direction: column;
            text-align: center;
        }
        .doc-headline { font-size: 19px; }
        .doc-quote-text { font-size: 16px; text-align: left; }
        .doc-signature { flex-direction: column; gap: 10px; text-align: center; }
        .study-ref { margin-top: 5px; }
    }