/** Shopify CDN: Minification failed

Line 4069:0 Unexpected "/"

**/
/* ================================================
   CocoFib Theme Styles - All Sections
   ================================================ */

/* ================================================
   BENEFITS SECTION STYLES
   ================================================ */

.benefits-cocofib {
  background: #fffaf2;
  width: 100%;
  padding: 80px 60px;
}

.benefits-container {
  margin: 0 auto;
}

/* Section Title */
.benefits-title {
  font-size: 44px;
  font-weight: 600;
  max-width: 500px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #74614F;
  margin-bottom: 46px;
  margin-top: 0px !important;
  margin-left: auto;
  margin-right: auto;
  line-height: 54px;
  font-family: poppins !important;
}

/* Benefits Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 414px 1fr;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Center Image Column */
.benefits-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
}

.benefits-image-wrapper {
  width: 100%;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.benefits-center-image {
  width: 100%;
  height: auto;
  max-height: 616px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.benefits-image-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefit Item Styles */
.benefit-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Benefit Number Circle */
.benefit-number {
  width: 68px;
  height: 68px;
  min-width: 68px;
  background: #f5eee2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-number span {
  font-size: 28px;
  font-weight: 700;
  color: rgb(10, 10, 10);
  line-height: 1;
  font-family: poppins !important;
}

.benefit-item:hover .benefit-number {
  background: #ddd5ca;
  transform: scale(1.05);
}

/* Benefit Content */
.benefit-content {
  flex: 1;
}

.benefit-heading {
  font-size: 20px;
  font-weight: 600;
  color: rgb(10, 10, 10);
  margin-bottom: 20px;
  margin-top: 0px !important;
  line-height: 28px;
  font-family: poppins !important;
}

.benefit-description {
  color: rgb(10, 10, 10);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  font-family: poppins !important;
}

/* ================================================
   BENEFITS SECTION - RESPONSIVE
   ================================================ */

/* Large Tablets (1200px and below) */
@media screen and (max-width: 1200px) {
  .benefits-cocofib {
    padding: 70px 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 360px 1fr;
    gap: 25px;
  }

  .benefits-column {
    gap: 80px;
  }

  .benefits-title {
    font-size: 40px;
    line-height: 50px;
    max-width: 480px;
  }
}

/* Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .benefits-cocofib {
    padding: 60px 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 320px 1fr;
    gap: 20px;
  }

  .benefits-column {
    gap: 70px;
  }

  .benefits-title {
    font-size: 36px;
    line-height: 46px;
    max-width: 450px;
    margin-bottom: 40px;
  }

  .benefit-item {
    gap: 24px;
  }

  .benefit-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .benefit-number span {
    font-size: 26px;
  }

  .benefit-heading {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .benefit-description {
    font-size: 15px;
    line-height: 22px;
  }

  .benefits-center-image {
    max-height: 500px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .benefits-cocofib {
    padding: 50px 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 280px 1fr;
    gap: 20px;
  }

  .benefits-column {
    gap: 60px;
  }

  .benefits-title {
    font-size: 32px;
    line-height: 42px;
    max-width: 400px;
    margin-bottom: 36px;
  }

  .benefit-item {
    gap: 20px;
  }

  .benefit-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .benefit-number span {
    font-size: 24px;
  }

  .benefit-heading {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 14px;
  }

  .benefit-description {
    font-size: 14px;
    line-height: 21px;
  }

  .benefits-center-image {
    max-height: 450px;
  }
}

/* Mobile Landscape & Large Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .benefits-cocofib {
    padding: 50px 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-center {
    order: -1;
    position: relative;
    max-width: 360px;
    margin: 0 auto;
  }

  .benefits-column {
    gap: 50px;
  }

  .benefits-title {
    font-size: 30px;
    line-height: 40px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .benefit-item {
    gap: 20px;
  }

  .benefit-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .benefit-number span {
    font-size: 25px;
  }

  .benefit-heading {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }

  .benefit-description {
    font-size: 15px;
    line-height: 23px;
  }

  .benefits-center-image {
    max-height: 520px;
    border-radius: 12px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .benefits-cocofib {
    padding: 40px 18px;
  }

  .benefits-center {
    max-width: 450px;
  }

  .benefits-column {
    gap: 45px;
  }

  .benefits-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 36px;
  }

  .benefit-item {
    gap: 18px;
  }

  .benefit-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .benefit-number span {
    font-size: 23px;
  }

  .benefit-heading {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .benefit-description {
    font-size: 14px;
    line-height: 22px;
  }

  .benefits-center-image {
    max-height: 460px;
  
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .benefits-cocofib {
    padding: 35px 16px;
  }

  .benefits-center {
    max-width: 360px;
  }

  .benefits-column {
    gap: 40px;
  }

  .benefits-title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .benefit-item {
    gap: 16px;
  }

  .benefit-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .benefit-number span {
    font-size: 22px;
  }

  .benefit-heading {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 10px;
  }

  .benefit-description {
    font-size: 14px;
    line-height: 21px;
  }

  .benefits-center-image {
    max-height: 400px;
    aspect-ratio: 1.4;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .benefits-cocofib {
    padding: 30px 14px;
  }

  .benefits-center {
    max-width: 260px;
  }

  .benefits-column {
    gap: 36px;
  }

  .benefits-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .benefit-item {
    gap: 14px;
  }

  .benefit-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .benefit-number span {
    font-size: 20px;
  }

  .benefit-heading {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .benefit-description {
    font-size: 13px;
    line-height: 20px;
  }

  .benefits-center-image {
    max-height: 360px;
    min-width:280px;
  }
}

/* ================================================
   Print Styles
   ================================================ */

@media print {
  .benefits-cocofib {
    background: white;
    padding: 40px 20px;
  }
  
  .benefit-item {
    page-break-inside: avoid;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-center {
    order: -1;
  }

  .hero-cocofib {
    min-height: auto;
    page-break-after: always;
  }
}

/* ================================================
   COCOFIB PRODUCT SECTION
   ================================================ */

.cocofib-product {
  background: #F5F1EB;
  padding: 60px 20px;
  width: 100%;
}

.cocofib-product__container {
  max-width: 1200px;
  margin: 0 auto;
}

.cocofib-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

/* ================================================
   PRODUCT GALLERY (LEFT)
   ================================================ */

.cocofib-product__gallery {
  position: sticky;
  top: 20px;
  align-self: start;
}

.cocofib-gallery__main {
  background: #F5F1EB;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 16px;
}

.cocofib-gallery__main-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cocofib-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.cocofib-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cocofib-gallery__thumb {
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: #F5F1EB;
}

.cocofib-gallery__thumb:hover {
  border-color: #C9B5A0;
}

.cocofib-gallery__thumb.active {
  border-color: #4A3C2F;
}

.cocofib-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================
   PRODUCT INFO (RIGHT)
   ================================================ */

.cocofib-product__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Rating */
.cocofib-product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cocofib-rating__stars {
  display: flex;
  gap: 2px;
  color: #FFC107;
  font-size: 18px;
}

.cocofib-star {
  line-height: 1;
}

.cocofib-rating__text {
  font-size: 12px;
  font-weight: 500;
  color: #6B5D52;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

/* Title */
.cocofib-product__title {
  font-size: 32px;
  font-weight: 600;
  color: #0A0A0A;
  line-height: 1.3;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Price */
.cocofib-product__price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.cocofib-product__price {
  font-size: 40px;
  font-weight: 700;
  color: #0A0A0A;
  font-family: 'Poppins', sans-serif;
}

.cocofib-product__badge {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Badges */
.cocofib-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.cocofib-badge {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Purchase Options */
.cocofib-product__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.cocofib-option-btn {
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  line-height: 1.4;
}

.cocofib-option-btn small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.8;
}

.cocofib-option-btn--primary {
  background: #6B9F6B;
  color: #FFFFFF;
  border-color: #6B9F6B;
}

.cocofib-option-btn--primary:hover {
  background: #5A8A5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 159, 107, 0.3);
}

.cocofib-option-btn--secondary {
  background: transparent;
  color: #4A3C2F;
  border-color: #4A3C2F;
}

.cocofib-option-btn--secondary:hover {
  background: rgba(74, 60, 47, 0.05);
  transform: translateY(-2px);
}

.cocofib-option-btn--selected {
  box-shadow: 0 0 0 3px rgba(107, 159, 107, 0.2);
}

/* Subscription Note */
.cocofib-product__subscription-note {
  font-size: 14px;
  color: #2E7D32;
  font-weight: 500;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Product Details */
.cocofib-product__details {
  margin: 16px 0;
}

.cocofib-product__details p {
  margin: 8px 0;
  font-size: 15px;
  color: #4A3C2F;
  font-family: 'Poppins', sans-serif;
}

.cocofib-product__details strong {
  font-weight: 600;
  color: #0A0A0A;
}

/* Accordion */
.cocofib-product__accordion {
  background: white;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  margin: 20px 0;
}

.cocofib-accordion__item {
  border-bottom: 1px solid #E0E0E0;
}

.cocofib-accordion__item:last-child {
  border-bottom: none;
}

.cocofib-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
  font-family: 'Poppins', sans-serif;
  user-select: none;
}

.cocofib-accordion__header:hover {
  background: #F9F9F9;
}

.cocofib-accordion__icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cocofib-accordion__item[open] .cocofib-accordion__icon {
  transform: rotate(45deg);
}

.cocofib-accordion__content {
  padding: 0 20px 20px 20px;
  color: #6B5D52;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Product Actions */
.cocofib-product__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.cocofib-btn {
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.cocofib-btn--add-cart {
  background: #6B9F6B;
  color: #FFFFFF;
}

.cocofib-btn--add-cart:hover:not(:disabled) {
  background: #5A8A5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 159, 107, 0.3);
}

.cocofib-btn--add-cart:disabled {
  background: #CCCCCC;
  cursor: not-allowed;
}

.cocofib-btn--shoppay {
  background: #5E4DB2;
  color: #FFFFFF;
}

.cocofib-btn--shoppay:hover {
  background: #4E3D92;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 77, 178, 0.3);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .cocofib-product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
  }

  .cocofib-product__title {
    font-size: 28px;
  }

  .cocofib-product__price {
    font-size: 36px;
  }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .cocofib-product {
    padding: 40px 16px;
  }

  .cocofib-product__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }

  .cocofib-product__gallery {
    position: relative;
    top: 0;
  }

  .cocofib-gallery__main {
    padding: 30px;
  }

  .cocofib-product__title {
    font-size: 26px;
  }

  .cocofib-product__price {
    font-size: 32px;
  }

  .cocofib-product__options {
    grid-template-columns: 1fr;
  }

  .cocofib-option-btn {
    padding: 16px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .cocofib-product__grid {
    padding: 20px;
  }

  .cocofib-gallery__main {
    padding: 20px;
  }

  .cocofib-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .cocofib-product__title {
    font-size: 24px;
  }

  .cocofib-product__price {
    font-size: 28px;
  }

  .cocofib-product__badges {
    gap: 8px;
  }

  .cocofib-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .cocofib-btn {
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* ================================================
   HOW TO TAKE COCOFIB SECTION (NEW LAYOUT)
   ================================================ */

.howto-cocofib {
  background: #FFFAF2;
  width: 100%;
}

.howto-cocofib__wrapper {
  padding: 70px 40px !important;
  max-width: 1440px;
  margin: 0 auto;
}

/* ================================================
   Grid Layout - 50% / 50%
   ================================================ */

.howto-cocofib__grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.howto-cocofib__content {
  flex: 1;
  width: 50%;
}

.howto-cocofib__image-col {
  flex: 1;
  width: 50%;
}

/* ================================================
   Left Content - Heading & Subtitle
   ================================================ */

.howto-cocofib__heading {
  font-size: 40px;
  font-weight: 600;
  color:rgb(116, 97, 79);
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 56px;
   font-family: poppins !important;
}

.howto-cocofib__subtext {
  color: rgb(10, 10, 10) ;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: poppins !important;
  margin-top: 0;
}

/* ================================================
   Steps List (Using Benefits Section Style)
   ================================================ */

.howto-cocofib__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.howto-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Step Number Circle (Same as Benefits Section) */
.howto-step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgb(245, 238, 225);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.howto-step-number span {
  font-size: 28px;
  font-weight: 600;
  color: rgb(10, 10, 10);
  line-height: 1;
    font-family: poppins !important;
}

.howto-step-item:hover .howto-step-number {
  background: #DDD5CA;
  transform: scale(1.05);
}

/* Step Text Content */
.howto-step-text {
  flex: 1;
}

.howto-step-heading {
  font-size: 20px;
  font-weight: 600;
  color: #000000 ;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 28px;
   font-family: poppins !important;
}

.howto-step-desc {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
    font-family: poppins !important;
}

/* ================================================
   Right Image Column
   ================================================ */

.howto-cocofib__image-col {
  border-radius: 24px;
  overflow: hidden;
}

.howto-cocofib__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.howto-cocofib__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #F5F1EB;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howto-cocofib__placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

/* ================================================
   HOW TO SECTION - RESPONSIVE
   ================================================ */

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .howto-cocofib__wrapper {
    padding: 70px 35px !important;
  }

  .howto-cocofib__grid {
    gap: 35px;
  }

  .howto-cocofib__heading {
    font-size: 38px;
    line-height: 52px;
  }

  .howto-cocofib__subtext {
    font-size: 15px;
    line-height: 23px;
  }

  .howto-step-heading {
    font-size: 19px;
    line-height: 27px;
  }

  .howto-step-desc {
    font-size: 15px;
    line-height: 23px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .howto-cocofib__wrapper {
    padding: 60px 30px !important;
  }

  .howto-cocofib__grid {
    gap: 30px;
  }

  .howto-cocofib__heading {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 10px;
  }

  .howto-cocofib__subtext {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 35px;
  }

  .howto-cocofib__steps {
    gap: 35px;
  }

  .howto-step-item {
    gap: 18px;
  }

  .howto-step-number {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .howto-step-number span {
    font-size: 26px;
  }

  .howto-step-heading {
    font-size: 19px;
    line-height: 27px;
  }

  .howto-step-desc {
    font-size: 15px;
    line-height: 23px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .howto-cocofib__wrapper {
    padding: 55px 25px !important;
  }

  .howto-cocofib__grid {
    gap: 28px;
  }

  .howto-cocofib__heading {
    font-size: 34px;
    line-height: 46px;
  }

  .howto-cocofib__subtext {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }

  .howto-cocofib__steps {
    gap: 32px;
  }

  .howto-step-item {
    gap: 16px;
  }

  .howto-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .howto-step-number span {
    font-size: 24px;
  }

  .howto-step-heading {
    font-size: 18px;
    line-height: 26px;
  }

  .howto-step-desc {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .howto-cocofib__wrapper {
    padding: 50px 24px !important;
  }

  .howto-cocofib__grid {
    flex-direction: column;
    gap: 35px;
  }

  .howto-cocofib__content,
  .howto-cocofib__image-col {
    width: 100%;
  }

  .howto-cocofib__image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .howto-cocofib__heading {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 12px;
  }

  .howto-cocofib__subtext {
    font-size: 15px;
    text-align:center;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .howto-cocofib__steps {
    gap: 30px;
  }

  .howto-step-item {
    gap: 18px;
  }

  .howto-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .howto-step-number span {
    font-size: 24px;
  }

  .howto-step-heading {
    font-size: 18px;
    line-height: 26px;
  }

  .howto-step-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .howto-cocofib__img {
    border-radius: 20px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .howto-cocofib__wrapper {
    padding: 45px 20px !important;
  }

  .howto-cocofib__grid {
    gap: 32px;
  }

  .howto-cocofib__image-col {
    max-width: 420px;
  }

  .howto-cocofib__heading {
    font-size: 30px;
    line-height: 42px;
  }

  .howto-cocofib__subtext {
    font-size: 14px;
    text-align:center;
    line-height: 23px;
    margin-bottom: 30px;
  }

  .howto-cocofib__steps {
    gap: 28px;
  }

  .howto-step-item {
    gap: 16px;
  }

  .howto-step-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .howto-step-number span {
    font-size: 23px;
  }

  .howto-step-heading {
    font-size: 17px;
    line-height: 25px;
  }

  .howto-step-desc {
    font-size: 14px;
    line-height: 23px;
  }

  .howto-cocofib__img {
    border-radius: 18px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .howto-cocofib__wrapper {
    padding: 0 18px !important;
  }

  .howto-cocofib__grid {
    gap: 30px;
  }

  .howto-cocofib__image-col {
    max-width: 360px;
  }

  .howto-cocofib__heading {
    font-size: 28px;
    text-align:center;   line-height: 40px;
  }

  .howto-cocofib__subtext {
    font-size: 14px;
    text-align:center;
    line-height: 22px;
    margin-bottom: 28px;
  }

  .howto-cocofib__steps {
    gap: 26px;
  }

  .howto-step-item {
    gap: 15px;
  }

  .howto-step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .howto-step-number span {
    font-size: 22px;
  }

  .howto-step-heading {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .howto-step-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .howto-cocofib__img {
    border-radius: 16px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .howto-cocofib__wrapper {
    padding: 0 16px !important;
  }

  .howto-cocofib__grid {
    gap: 28px;
  }

  .howto-cocofib__image-col {
    max-width: 320px;
  }

  .howto-cocofib__heading {
    font-size: 26px;
    text-align: center;
    line-height: 38px;
  }

  .howto-cocofib__subtext {
    font-size: 13px;
    text-align:center;
    line-height: 21px;
    margin-bottom: 26px;
  }

  .howto-cocofib__steps {
    gap: 24px;
  }

  .howto-step-item {
    gap: 14px;
  }

  .howto-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .howto-step-number span {
    font-size: 20px;
  }

  .howto-step-heading {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 6px;
  }

  .howto-step-desc {
    font-size: 13px;
    line-height: 21px;
  }

  .howto-cocofib__img {
    border-radius: 14px;
  }

  .howto-cocofib__placeholder {
    border-radius: 14px;
  }
}

/* ================================================
   RESULTS TWO WEEKS SECTION
   ================================================ */

.results-two-weeks {
  background: #f5eee2;
  width: 100%;
}

.results-two-weeks__wrapper {
  padding: 60px 40px !important;
  max-width: 1440px;
  margin: 0 auto;
}

/* ================================================
   Grid Layout - 50% / 50%
   ================================================ */

.results-two-weeks__grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.results-two-weeks__content {
  flex: 1;
  width: 50%;
}

.results-two-weeks__image-col {
  flex: 1;
  width: 50%;
}

/* ================================================
   Left Image Column
   ================================================ */

.results-two-weeks__image-col {
  border-radius: 24px;
  overflow: hidden;
}

.results-two-weeks__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.results-two-weeks__placeholder {
  width: 100%;
  aspect-ratio: 4/4;
  background: #F5F1EB;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-two-weeks__placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

/* ================================================
   Right Content - Heading & Subtitle
   ================================================ */

.results-two-weeks__heading {
  font-size: 48px;
  font-weight: 600;
  color: rgb(116, 97, 79);
  margin-bottom: 32px;
  margin-top: 0;
  line-height: 56px;
  font-family: poppins !important;
}

.results-two-weeks__subtext {
  color: rgb(10, 10, 10);
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: poppins !important;
  margin-top: 0;
}

.results-two-weeks__subtext:last-of-type {
  margin-bottom: 30px;
}

/* ================================================
   CTA Button
   ================================================ */

.results-two-weeks__button-wrapper {
  margin-top: 10px;
}

.results-two-weeks__button {
  display: inline-block;
  padding: 13px 80px;
  background: #618b4c;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: poppins !important;
  border: none;
  cursor: pointer;
}

.results-two-weeks__button:hover {
  background: #527a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 139, 76, 0.3);
}

/* ================================================
   RESULTS TWO WEEKS SECTION - RESPONSIVE
   ================================================ */

/* Large Desktop (1440px and below) */
@media screen and (max-width: 1440px) {
  .results-two-weeks__grid {
    gap: 70px;
  }
}

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .results-two-weeks__wrapper {
    padding: 60px 35px !important;
  }

  .results-two-weeks__grid {
    gap: 60px;
  }

  .results-two-weeks__heading {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 28px;
  }

  .results-two-weeks__subtext {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 28px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 26px;
  }

  .results-two-weeks__button {
    padding: 13px 90px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .results-two-weeks__wrapper {
    padding: 55px 30px !important;
  }

  .results-two-weeks__grid {
    gap: 50px;
  }

  .results-two-weeks__heading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 24px;
  }

  .results-two-weeks__subtext {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 24px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 22px;
  }

  .results-two-weeks__button {
    padding: 13px 80px;
    font-size: 15px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .results-two-weeks__wrapper {
    padding: 50px 28px !important;
  }

  .results-two-weeks__grid {
    gap: 45px;
  }

  .results-two-weeks__heading {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 22px;
  }

  .results-two-weeks__subtext {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 22px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 20px;
  }

  .results-two-weeks__button {
    padding: 13px 70px;
    font-size: 15px;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .results-two-weeks__wrapper {
    padding: 50px 24px !important;
  }

  .results-two-weeks__grid {
    flex-direction: column;
    gap: 40px;
  }

  .results-two-weeks__content,
  .results-two-weeks__image-col {
    width: 100%;
  }

  .results-two-weeks__image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .results-two-weeks__heading {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
  }

  .results-two-weeks__subtext {
    font-size: 15px;
        text-align:center;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 24px;
  }

  .results-two-weeks__button {
    padding: 14px 60px;
    font-size: 15px;
  }

  .results-two-weeks__img {
    border-radius: 20px;
  }

  .results-two-weeks__placeholder {
    border-radius: 20px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .results-two-weeks__wrapper {
    padding: 45px 20px !important;
  }

  .results-two-weeks__grid {
    gap: 35px;
  }

  .results-two-weeks__image-col {
    max-width: 420px;
  }

  .results-two-weeks__heading {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
  }

  .results-two-weeks__subtext {
    font-size: 14px;
        text-align:center;
    line-height: 22px;
    margin-bottom: 18px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 22px;
  }

  .results-two-weeks__button {
    padding: 13px 50px;
    font-size: 14px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .results-two-weeks__wrapper {
    padding: 40px 18px !important;
  }

  .results-two-weeks__grid {
    gap: 32px;
  }

  .results-two-weeks__image-col {
    max-width: 360px;
  }

  .results-two-weeks__heading {
    font-size: 27px;
    line-height: 36px;
    text-align:center;
    margin-bottom: 16px;
  }

  .results-two-weeks__subtext {
    font-size: 14px;
        text-align:center;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 20px;
  }

  .results-two-weeks__button {
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    font-size: 14px;
  }

  .results-two-weeks__img {
    border-radius: 18px;
  }

  .results-two-weeks__placeholder {
    border-radius: 18px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .results-two-weeks__wrapper {
    padding: 35px 16px !important;
  }

  .results-two-weeks__grid {
    gap: 28px;
  }

  .results-two-weeks__image-col {
    max-width: 320px;
  }

  .results-two-weeks__heading {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
    margin-bottom: 14px;
  }

  .results-two-weeks__subtext {
    font-size: 13px;
    line-height: 21px;
    text-align:center;
    margin-bottom: 14px;
  }

  .results-two-weeks__subtext:last-of-type {
    margin-bottom: 18px;
  }

  .results-two-weeks__button {
    width: 100%;
    padding: 13px 30px;
    font-size: 13px;
  }

  .results-two-weeks__img {
    border-radius: 16px;
  }

  .results-two-weeks__placeholder {
    border-radius: 16px;
  }
}
/* ================================================
   Layout Variations
   ================================================ */

/* Default: Image Left - Text Right */
.results-two-weeks__grid--image_left .results-two-weeks__image-col {
  order: 1;
}

.results-two-weeks__grid--image_left .results-two-weeks__content {
  order: 2;
}

/* Alternate: Image Right - Text Left */
.results-two-weeks__grid--image_right .results-two-weeks__image-col {
  order: 2;
}

.results-two-weeks__grid--image_right .results-two-weeks__content {
  order: 1;
}

/* Mobile: Always image first (on top) */
@media screen and (max-width: 768px) {
  .results-two-weeks__grid--image_left .results-two-weeks__image-col,
  .results-two-weeks__grid--image_right .results-two-weeks__image-col {
    order: -1 !important;
  }

  .results-two-weeks__grid--image_left .results-two-weeks__content,
  .results-two-weeks__grid--image_right .results-two-weeks__content {
    order: 0 !important;
  }
}
/* ================================================
   Heading Color Variations
   ================================================ */

/* Default: Brown */
.results-two-weeks__heading--default {
  color: rgb(116, 97, 79);
}

/* Black Option */
.results-two-weeks__heading--black {
  color: #74614F;
}
/* ================================================
   BACKED BY SCIENCE SECTION
   ================================================ */

.science-backed {
  background: #f5eee2;
  width: 100%;
}

.science-backed__wrapper {
  padding: 90px 60px !important;
  max-width: 1440px;
  margin: 0 auto;
}

/* ================================================
   Grid Layout - 50% / 50%
   ================================================ */

.science-backed__grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.science-backed__content {
  flex: 1;
  width: 50%;
}

.science-backed__image-col {
  flex: 1;
  width: 50%;
}

/* ================================================
   Left Content - Heading & Description
   ================================================ */

.science-backed__heading {
  font-size: 48px;
  font-weight: 600;
  color: #74614F;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1.2;
  font-family: poppins !important;
}

.science-backed__description {
  color: #000000 ;
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: poppins !important;
  margin-top: 0;
}

/* ================================================
   Fade Up Animation (Same as Benefits Section)
   ================================================ */

.science-fade-up {
  animation: scienceFadeInUp 0.6s ease forwards;
  opacity: 0;
}

.science-fade-delay-1 {
  animation-delay: 0.2s;
}

.science-fade-delay-2 {
  animation-delay: 0.4s;
}

@keyframes scienceFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
   Stats Section
   ================================================ */

.science-backed__stats {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-bottom: 40px;
}

.science-stat-item {
  flex: 1;
}

.science-stat-number {
  font-size: 48px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-family: poppins !important;
  line-height: 1;
}


.science-stat-label {
  font-size: 18px;
  max-width: 160px;
  font-weight: 400;
  color: rgb(97, 97, 97);
  font-family: poppins !important;
  line-height: 1.5;
}

.science-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ================================================
   CTA Button
   ================================================ */

.science-backed__button-wrapper {
  margin-top: 10px;
}

.science-backed__button {
  display: inline-block;
  padding: 13px 30px;
  background: #618b4c;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: poppins !important;
  border: none;
  cursor: pointer;
}



/* ================================================
   Right Image Column
   ================================================ */

.science-backed__image-col {
  border-radius: 24px;
  overflow: hidden;
}

.science-backed__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.science-backed__placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #FFFFFF;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.science-backed__placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

/* ================================================
   BACKED BY SCIENCE SECTION - RESPONSIVE
   ================================================ */

/* Large Desktop (1440px and below) */
@media screen and (max-width: 1440px) {
  .science-backed__grid {
    gap: 60px;
  }
}

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .science-backed__wrapper {
    padding: 60px 35px !important;
  }

  .science-backed__grid {
    gap: 60px;
  }

  .science-backed__heading {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .science-backed__description {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .science-stat-number {
    font-size: 44px;
  }

  .science-stat-label {
    font-size: 17px;
  }

  .science-backed__stats {
    gap: 35px;
    margin-bottom: 36px;
  }

  .science-backed__button {
    padding: 13px 90px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .science-backed__wrapper {
    padding: 55px 30px !important;
  }

  .science-backed__grid {
    gap: 50px;
  }

  .science-backed__heading {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .science-backed__description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .science-stat-number {
    font-size: 40px;
  }

  .science-stat-label {
    font-size: 16px;
  }

  .science-backed__stats {
    gap: 30px;
    margin-bottom: 32px;
  }

  .science-stat-divider {
    height: 55px;
  }

  .science-backed__button {
    padding: 13px 80px;
    font-size: 15px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .science-backed__wrapper {
    padding: 50px 28px !important;
  }

  .science-backed__grid {
    gap: 45px;
  }

  .science-backed__heading {
    font-size: 36px;

    margin-bottom: 16px;
  }

  .science-backed__description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .science-stat-number {
    font-size: 36px;
  }

  .science-stat-label {
    font-size: 15px;
  }

  .science-backed__stats {
    gap: 25px;
    margin-bottom: 30px;
  }

  .science-stat-divider {
    height: 50px;
  }

  .science-backed__button {
    padding: 13px 70px;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .science-backed__wrapper {
    padding: 50px 24px !important;
  }

  .science-backed__grid {
    flex-direction: column;
    gap: 40px;
  }

  .science-backed__content,
  .science-backed__image-col {
    width: 100%;
  }

  .science-backed__image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .science-backed__heading {
    font-size: 34px;
      text-align:center;
    margin-bottom: 16px;
  }

  .science-backed__description {
    font-size: 15px;
     text-align:center;
    margin-bottom: 32px;
  }

  .science-backed__stats {
    flex-wrap: wrap;
    gap: 30px 20px;
    margin-bottom: 32px;
  }

  .science-stat-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }

  .science-stat-divider {
    display: none;
  }

  .science-stat-number {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .science-stat-label {
    font-size: 15px;
  }

  .science-backed__button {
    padding: 14px 60px;
    font-size: 15px;
  }

  .science-backed__img {
    border-radius: 20px;
  }

  .science-backed__placeholder {
    border-radius: 20px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .science-backed__wrapper {
    padding: 45px 20px !important;
  }

  .science-backed__grid {
    gap: 35px;
  }

  .science-backed__image-col {
    max-width: 420px;
  }

  .science-backed__heading {
    font-size: 30px;
      text-align:center;
    margin-bottom: 14px;
  }

  .science-backed__description {
    font-size: 14px;
     text-align:center;
    margin-bottom: 28px;
  }

  .science-backed__stats {
    gap: 24px 16px;
    margin-bottom: 28px;
  }

  .science-stat-number {
    font-size: 32px;
  }

  .science-stat-label {
    font-size: 14px;
  }

  .science-backed__button {
    padding: 13px 50px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .science-backed__wrapper {
    padding: 40px 18px !important;
  }

  .science-backed__grid {
    gap: 32px;
  }

  .science-backed__image-col {
    max-width: 360px;
  }

  .science-backed__heading {
    font-size: 28px;
    text-align:center;
    margin-bottom: 12px;
  }

  .science-backed__description {
    font-size: 14px;
     text-align:center;
    margin-bottom: 26px;
  }

  .science-backed__stats {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 26px;
  }

  .science-stat-item {
    width: 100%;
    text-align: center;
  }

  .science-stat-number {
    font-size: 40px;
    margin-bottom: 8px;
  }

  .science-stat-label {
    font-size: 15px;
  }

  .science-backed__button {
    width: 100%;
    text-align: center;
    padding: 14px 40px;
  }

  .science-backed__img {
    border-radius: 18px;
  }

  .science-backed__placeholder {
    border-radius: 18px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .science-backed__wrapper {
    padding: 35px 16px !important;
  }

  .science-backed__grid {
    gap: 28px;
  }

  .science-backed__image-col {
    max-width: 320px;
  }

  .science-backed__heading {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .science-backed__description {
    font-size: 13px;
    text-align:center;
    margin-bottom: 24px;
  }

  .science-backed__stats {
    gap: 22px;
    margin-bottom: 24px;
  }

  .science-stat-number {
    font-size: 36px;
  }

  .science-stat-label {
    font-size: 14px;
  }

  .science-backed__button {
    padding: 13px 30px;
    font-size: 14px;
  }

  .science-backed__img {
    border-radius: 16px;
  }

  .science-backed__placeholder {
    border-radius: 16px;
  }
}
/* ================================================
   NO MORE BLOATING SECTION
   ================================================ */

.no-bloating-section {
  background: #FFFAF2;
  width: 100%;
}

.no-bloating-section__wrapper {
  padding: 60px 40px !important;
  max-width: 1440px;
  margin: 0 auto;
}

/* ================================================
   Grid Layout - 50% / 50%
   ================================================ */

.no-bloating-section__grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.no-bloating-section__image-col {
  flex: 1;
  width: 50%;
}

.no-bloating-section__content {
  flex: 1;
  width: 50%;
}

/* ================================================
   Left Image Column
   ================================================ */

.no-bloating-section__image-col {
  border-radius: 24px;
  overflow: hidden;
}

.no-bloating-section__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.no-bloating-section__placeholder {
  width: 100%;
  aspect-ratio: 4/4;
  background: #F5F1EB;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-bloating-section__placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

/* ================================================
   Right Content - Heading & Subtitle
   ================================================ */

.no-bloating-section__heading {
  font-size: 48px;
  font-weight: 600;
  color: #74614F;
  margin-bottom: 32px;
  margin-top: 0;
  line-height: 56px;
  font-family: poppins !important;
}

.no-bloating-section__subtext {
  color: rgb(10, 10, 10);
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: poppins !important;
  margin-top: 0;
}

.no-bloating-section__subtext:last-of-type {
  margin-bottom: 30px;
}

/* ================================================
   CTA Button
   ================================================ */

.no-bloating-section__button-wrapper {
  margin-top: 10px;
}

.no-bloating-section__button {
  display: inline-block;
  padding: 13px 80px;
  background: #618b4c;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: poppins !important;
  border: none;
  cursor: pointer;
}

.no-bloating-section__button:hover {
  background: #527a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 139, 76, 0.3);
}

/* ================================================
   NO MORE BLOATING SECTION - RESPONSIVE
   ================================================ */

/* Large Desktop (1440px and below) */
@media screen and (max-width: 1440px) {
  .no-bloating-section__grid {
    gap: 70px;
  }
}

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .no-bloating-section__wrapper {
    padding: 60px 35px !important;
  }

  .no-bloating-section__grid {
    gap: 60px;
  }

  .no-bloating-section__heading {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 28px;
  }

  .no-bloating-section__subtext {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 28px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 26px;
  }

  .no-bloating-section__button {
    padding: 13px 90px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .no-bloating-section__wrapper {
    padding: 55px 30px !important;
  }

  .no-bloating-section__grid {
    gap: 50px;
  }

  .no-bloating-section__heading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 24px;
  }

  .no-bloating-section__subtext {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 24px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 22px;
  }

  .no-bloating-section__button {
    padding: 13px 80px;
    font-size: 15px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .no-bloating-section__wrapper {
    padding: 50px 28px !important;
  }

  .no-bloating-section__grid {
    gap: 45px;
  }

  .no-bloating-section__heading {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 22px;
  }

  .no-bloating-section__subtext {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 22px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 20px;
  }

  .no-bloating-section__button {
    padding: 13px 70px;
    font-size: 15px;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .no-bloating-section__wrapper {
    padding: 50px 24px !important;
  }

  .no-bloating-section__grid {
    flex-direction: column;
    gap: 40px;
  }

  .no-bloating-section__content,
  .no-bloating-section__image-col {
    width: 100%;
  }

  .no-bloating-section__image-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .no-bloating-section__heading {
    font-size: 34px;
    text-align:center;
    line-height: 42px;
    margin-bottom: 20px;
  }

  .no-bloating-section__subtext {
    font-size: 15px;
     text-align:Center;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 24px;
  }

  .no-bloating-section__button {
    padding: 14px 60px;
    font-size: 15px;
  }

  .no-bloating-section__img {
    border-radius: 20px;
  }

  .no-bloating-section__placeholder {
    border-radius: 20px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .no-bloating-section__wrapper {
    padding: 45px 20px !important;
  }

  .no-bloating-section__grid {
    gap: 35px;
  }

  .no-bloating-section__image-col {
    max-width: 420px;
  }

  .no-bloating-section__heading {
    font-size: 30px;
    text-align:center;
    line-height: 38px;
    margin-bottom: 18px;
  }

  .no-bloating-section__subtext {
    font-size: 14px;
     text-align:Center;
    line-height: 22px;
    margin-bottom: 18px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 22px;
  }

  .no-bloating-section__button {
    padding: 13px 50px;
    font-size: 14px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .no-bloating-section__wrapper {
    padding: 40px 18px !important;
  }

  .no-bloating-section__grid {
    gap: 32px;
  }

  .no-bloating-section__image-col {
    max-width: 360px;
  }

  .no-bloating-section__heading {
    font-size: 28px;
    text-align:Center;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .no-bloating-section__subtext {
    font-size: 14px;
    line-height: 22px;
     text-align:Center;
    margin-bottom: 16px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 20px;
  }

  .no-bloating-section__button {
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    font-size: 14px;
  }

  .no-bloating-section__img {
    border-radius: 18px;
  }

  .no-bloating-section__placeholder {
    border-radius: 18px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .no-bloating-section__wrapper {
    padding: 35px 16px !important;
  }

  .no-bloating-section__grid {
    gap: 28px;
  }

  .no-bloating-section__image-col {
    max-width: 320px;
  }

  .no-bloating-section__heading {
    font-size: 26px;
    text-align:center;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .no-bloating-section__subtext {
    font-size: 13px;
    text-align:Center;
    line-height: 21px;
    margin-bottom: 14px;
  }

  .no-bloating-section__subtext:last-of-type {
    margin-bottom: 18px;
  }

  .no-bloating-section__button {
    width: 100%;
    padding: 13px 30px;
    font-size: 13px;
  }

  .no-bloating-section__img {
    border-radius: 16px;
  }

  .no-bloating-section__placeholder {
    border-radius: 16px;
  }
}/* ================================================
   WHY CHOOSE COMPARISON TABLE SECTION
   ================================================ */

.comparison-table {
  background: #FFFAF2;
  width: 100%;
}

.comparison-table__wrapper {
  padding: 60px 40px !important;
  max-width: 1440px;
  margin: 0 auto;
}

/* ================================================
   Section Header
   ================================================ */

.comparison-table__header {
  text-align: center;
  margin-bottom: 64px;
}

.comparison-table__heading {
  font-size: 48px;
  font-weight: 600;
  color: #74614F;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2;
  font-family: poppins !important;
}

.comparison-table__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #0A0A0A;
  margin: 0;
  line-height: 1.5;
  font-family: poppins !important;
}

/* ================================================
   Table Container
   ================================================ */

.comparison-table__container {
  overflow-x: auto;
  margin-bottom: 40px;
}

.comparison-table__grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFAF2;
  border: 1px solid #e1e4eb;
  border-radius: 20px;
  overflow: hidden;
}

/* ================================================
   Icon Image Styling
   ================================================ */

.comparison-table__icon-img {
  width: 100%;
  height: 100%;
  max-width: 16px;
  max-height: 16px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ================================================
   Table Header
   ================================================ */

.comparison-table__header-row {
  background: #FFFAF2;
}

.comparison-table__header-cell {
  padding: 20px 24px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e1e4eb;
  border-right: 1px solid #e1e4eb;
  background: #FFFAF2;
}

.comparison-table__header-cell:last-child {
  border-right: none;
}

/* ================================================
   FIRST COLUMN HEADER - "Top Features" (Separate Styling)
   ================================================ */

.comparison-table__header-cell--features {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  font-family: poppins !important;
  width: 37% !important;
  background: #FFFAF2;
  padding: 20px 40px; /* Custom padding for first column */
}

/* ================================================
   Brand Column Headers
   ================================================ */

.comparison-table__header-cell--brand {
  background: #FFFAF2;
  width: 12.6% !important;
  padding: 20px 20px;
}

/* ================================================
   COCOFIB COLUMN HIGHLIGHT (First Brand)
   ================================================ */

/* Header cell for Cocofib - Brown tinted background */
.comparison-table__header-cell--brand-first {
  background: #74614f1a !important;
}

/* Cocofib text/logo styling */
.comparison-table__header-cell--brand-first .comparison-table__brand-name {
  color: #74614F !important;
  font-weight: 600;
}

.comparison-table__brand-logo {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.comparison-table__brand-name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  font-family: poppins !important;
}

/* ================================================
   Table Body - Feature Rows
   ================================================ */

.comparison-table__row {
  background: #FFFAF2;
}

.comparison-table__row:last-child .comparison-table__cell {
  border-bottom: none;
}

.comparison-table__cell {
  padding: 20px 24px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e1e4eb;
  border-right: 1px solid #e1e4eb;
  background: #FFFAF2;
}

.comparison-table__cell:last-child {
  border-right: none;
}

/* ================================================
   FIRST COLUMN CELLS - Feature Names (Separate Styling)
   ================================================ */

.comparison-table__cell--feature-name {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  font-family: poppins !important;
  background: #FFFAF2;
  padding: 20px 40px ; /* Custom padding for first column */
      padding-right: 20px !important;
}

/* Cocofib column cells - Brown tinted background to match header */
.comparison-table__cell--brand-1 {
  background: #74614f1a !important;
}

/* ================================================
   Check/Cross Icons - BOTH WITH BOXES
   ================================================ */

.comparison-table__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-weight: 700;
  font-family: poppins !important;
}

/* Green box with white checkmark */
.comparison-table__icon--check {
  background: #07c51a !important;
  color: #FFFFFF !important;
  font-size: 14px;
}

/* Light beige/tan box with gray X */
.comparison-table__icon--cross {
  background: #F5EFE6 !important;
  color: #999999 !important;
  font-size: 16px;
  font-weight: 400;
}

/* ================================================
   CTA Button
   ================================================ */

.comparison-table__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.comparison-table__button {
  display: inline-block;
  padding: 16px 40px;
  background: #618b4c;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: poppins !important;
  border: none;
  cursor: pointer;
}

.comparison-table__button:hover {
  background: #527a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 139, 76, 0.3);
}

/* ================================================
   COMPARISON TABLE - RESPONSIVE
   ================================================ */

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .comparison-table__wrapper {
    padding: 60px 35px !important;
  }

  .comparison-table__heading {
    font-size: 44px;
  }

  .comparison-table__subtitle {
    font-size: 17px;
  }

  .comparison-table__brand-logo {
    max-width: 100px;
    max-height: 45px;
  }

  .comparison-table__header-cell--features {
    padding: 20px 35px !important;
  }

  .comparison-table__cell--feature-name {
    padding: 18px 35px !important;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .comparison-table__wrapper {
    padding: 55px 30px !important;
  }

  .comparison-table__header {
    margin-bottom: 50px;
  }

  .comparison-table__heading {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .comparison-table__subtitle {
    font-size: 16px;
  }

  .comparison-table__header-cell {
    padding: 20px 16px;
  }

  .comparison-table__cell {
    padding: 18px 16px;
  }

  .comparison-table__header-cell--features {
    padding: 20px 30px !important;
    font-size: 18px;
  }

  .comparison-table__cell--feature-name {
    padding: 18px 30px !important;
    font-size: 15px;
  }

  .comparison-table__brand-logo {
    max-width: 90px;
    max-height: 40px;
  }

  .comparison-table__icon {
    width: 26px;
    height: 26px;
  }

  .comparison-table__icon--check {
    font-size: 13px;
  }

  .comparison-table__icon--cross {
    font-size: 15px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .comparison-table__wrapper {
    padding: 50px 28px !important;
  }

  .comparison-table__heading {
    font-size: 36px;
  }

  .comparison-table__subtitle {
    font-size: 15px;
  }

  .comparison-table__brand-logo {
    max-width: 80px;
    max-height: 35px;
  }

  .comparison-table__header-cell--features {
    padding: 18px 24px !important;
  }

  .comparison-table__cell--feature-name {
    padding: 16px 24px !important;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .comparison-table__wrapper {
    padding: 50px 20px !important;
  }

  .comparison-table__header {
    margin-bottom: 40px;
  }

  .comparison-table__heading {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .comparison-table__subtitle {
    font-size: 15px;
  }

  .comparison-table__container {
    margin-bottom: 32px;
  }

  .comparison-table__header-cell {
    padding: 16px 12px;
  }

  .comparison-table__cell {
    padding: 16px 12px;
  }

  .comparison-table__header-cell--features {
    padding: 16px 20px !important;
    font-size: 16px;
  }

  .comparison-table__cell--feature-name {
    padding: 16px 20px !important;
    font-size: 14px;
  }

  .comparison-table__brand-logo {
    max-width: 70px;
    max-height: 30px;
  }

  .comparison-table__brand-name {
    font-size: 14px;
  }

  .comparison-table__icon {
    width: 24px;
    height: 24px;
  }

  .comparison-table__icon--check {
    font-size: 12px;
  }

  .comparison-table__icon--cross {
    font-size: 14px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .comparison-table__wrapper {
    padding: 45px 16px !important;
  }

  .comparison-table__heading {
    font-size: 28px;
  }

  .comparison-table__subtitle {
    font-size: 14px;
  }

  .comparison-table__header-cell {
    padding: 14px 10px;
  }

  .comparison-table__cell {
    padding: 14px 10px;
  }

  .comparison-table__header-cell--features {
    padding: 14px 16px !important;
    font-size: 15px;
  }

  .comparison-table__cell--feature-name {
    padding: 14px 16px !important;
    font-size: 13px;
  }

  .comparison-table__brand-logo {
    max-width: 60px;
    max-height: 25px;
  }

  .comparison-table__brand-name {
    font-size: 13px;
  }

  .comparison-table__icon {
    width: 22px;
    height: 22px;
  }

  .comparison-table__icon--check {
    font-size: 11px;
  }

  .comparison-table__icon--cross {
    font-size: 13px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .comparison-table__wrapper {
    padding: 40px 14px !important;
  }

  .comparison-table__heading {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .comparison-table__subtitle {
    font-size: 13px;
  }

  .comparison-table__header-cell {
    padding: 12px 8px;
  }

  .comparison-table__cell {
    padding: 12px 8px;
  }

  .comparison-table__header-cell--features {
    padding: 12px 12px !important;
    font-size: 14px;
  }

  .comparison-table__cell--feature-name {
    padding: 12px 12px !important;
    font-size: 12px;
  }

  .comparison-table__brand-logo {
    max-width: 50px;
    max-height: 22px;
  }

  .comparison-table__brand-name {
    font-size: 12px;
  }

  .comparison-table__icon {
    width: 20px;
    height: 20px;
  }

  .comparison-table__icon--check {
    font-size: 10px;
  }

  .comparison-table__icon--cross {
    font-size: 12px;
  }

  .comparison-table__button {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .comparison-table__wrapper {
    padding: 35px 12px !important;
  }

  .comparison-table__heading {
    font-size: 24px;
  }

  .comparison-table__subtitle {
    font-size: 13px;
  }

  .comparison-table__header-cell {
    padding: 10px 6px;
  }

  .comparison-table__cell {
    padding: 10px 6px;
  }

  .comparison-table__header-cell--features {
    padding: 10px 10px !important;
    font-size: 13px;
  }

  .comparison-table__cell--feature-name {
    padding: 10px 10px !important;
    font-size: 11px;
  }

  .comparison-table__brand-logo {
    max-width: 45px;
    max-height: 20px;
  }

  .comparison-table__brand-name {
    font-size: 11px;
  }

  .comparison-table__icon {
    width: 18px;
    height: 18px;
  }

  .comparison-table__icon--check {
    font-size: 9px;
  }

  .comparison-table__icon--cross {
    font-size: 11px;
  }
}
/* ================================================
   STATS EXPERIENCE SECTION
   ================================================ */

.stats-section {
  background: #FFFAF2;
  width: 100%;
}

.stats-section__wrapper {
  padding: 0px 0px !important;
  max-width: 1220px;
  margin: 0 auto;
}

/* ================================================
   Section Header
   ================================================ */

.stats-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.stats-section__heading {
  font-size: 48px;
  font-weight: 600;
  max-width: 700px;
  margin: auto;
  color: #74614F;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2;
  font-family: poppins !important;
}

.stats-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgb(29, 31, 19);
  margin: 0;
  line-height: 24px;
  font-family: poppins !important;
}

/* ================================================
   Stats Cards Grid
   ================================================ */

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   Individual Stat Card
   ================================================ */

.stats-card {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 32px 20px 40px; 
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.16) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card__number-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 32px;
}

.stats-card__number {
  font-size: 48px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1;
  font-family: poppins !important;
}

.stats-card__symbol {
  font-size: 48px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1;
  font-family: poppins !important;
}

.stats-card__description {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  margin: 0;
  font-family: poppins !important;
}

/* ================================================
   CTA Button
   ================================================ */

.stats-section__button-wrapper {
  text-align: center;
  margin-top: 64px;
}

.stats-section__button {
  display: inline-block;
  padding: 13px 48px;
  background: #618b4c;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: poppins !important;
  border: none;
  cursor: pointer;
}

.stats-section__button:hover {
  background: #527a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 139, 76, 0.3);
}

/* ================================================
   STATS SECTION - RESPONSIVE
   ================================================ */

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .stats-section__wrapper {
    padding: 0px 40px !important;
  }

  .stats-section__heading {
    font-size: 44px;
    max-width: 650px;
  }

  .stats-section__subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .stats-section__grid {
    gap: 28px;
  }

  .stats-card {
    padding: 30px 18px 36px;
  }

  .stats-card__number {
    font-size: 44px;
  }

  .stats-card__symbol {
    font-size: 44px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 28px;
  }

  .stats-card__description {
    font-size: 15px;
    line-height: 21px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .stats-section__wrapper {
    padding: 0px 30px !important;
  }

  .stats-section__header {
    margin-bottom: 50px;
  }

  .stats-section__heading {
    font-size: 40px;
    max-width: 600px;
    margin-bottom: 14px;
  }

  .stats-section__subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .stats-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
  }

  .stats-card {
    padding: 28px 20px 32px;
  }

  .stats-card__number {
    font-size: 40px;
  }

  .stats-card__symbol {
    font-size: 40px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 24px;
  }

  .stats-card__description {
    font-size: 15px;
    line-height: 21px;
  }

  .stats-section__button-wrapper {
    margin-top: 50px;
  }

  .stats-section__button {
    padding: 16px 56px;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .stats-section__wrapper {
    padding: 0px 28px !important;
  }

  .stats-section__heading {
    font-size: 36px;
    max-width: 550px;
  }

  .stats-section__subtitle {
    font-size: 14px;
    line-height: 21px;
  }

  .stats-section__grid {
    gap: 20px;
  }

  .stats-card {
    padding: 26px 18px 30px;
  }

  .stats-card__number {
    font-size: 38px;
  }

  .stats-card__symbol {
    font-size: 38px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 22px;
  }

  .stats-card__description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Mobile Landscape (768px and below) */
@media screen and (max-width: 768px) {
  .stats-section__wrapper {
    padding: 0px 24px !important;
  }

  .stats-section__header {
    margin-bottom: 40px;
  }

  .stats-section__heading {
    font-size: 32px;
    max-width: 500px;
    margin-bottom: 12px;
  }

  .stats-section__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .stats-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .stats-card {
    padding: 28px 24px 32px;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-card__number {
    font-size: 44px;
  }

  .stats-card__symbol {
    font-size: 44px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 26px;
  }

  .stats-card__description {
    font-size: 15px;
    line-height: 21px;
  }

  .stats-section__button-wrapper {
    margin-top: 40px;
  }

  .stats-section__button {
    padding: 16px 48px;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .stats-section__wrapper {
    padding: 0px 20px !important;
  }

  .stats-section__heading {
    font-size: 28px;
    max-width: 450px;
  }

  .stats-section__subtitle {
    font-size: 13px;
    line-height: 19px;
  }

  .stats-card {
    padding: 26px 20px 30px;
    max-width: 450px;
  }

  .stats-card__number {
    font-size: 40px;
  }

  .stats-card__symbol {
    font-size: 40px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 24px;
  }

  .stats-card__description {
    font-size: 14px;
    line-height: 20px;
  }

  .stats-section__button {
    padding: 15px 44px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .stats-section__wrapper {
    padding: 0px 18px !important;
  }

  .stats-section__heading {
    font-size: 26px;
    max-width: 400px;
    margin-bottom: 10px;
  }

  .stats-section__subtitle {
    font-size: 13px;
    line-height: 19px;
  }

  .stats-section__grid {
    gap: 16px;
    margin-bottom: 36px;
  }

  .stats-card {
    padding: 24px 18px 28px;
    border-radius: 14px;
    max-width: 400px;
  }

  .stats-card__number {
    font-size: 36px;
  }

  .stats-card__symbol {
    font-size: 36px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 22px;
  }

  .stats-card__description {
    font-size: 13px;
    line-height: 19px;
  }

  .stats-section__button-wrapper {
    margin-top: 36px;
  }

  .stats-section__button {
    width: 100%;
    padding: 14px 40px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .stats-section__wrapper {
    padding: 0px 16px !important;
  }

  .stats-section__heading {
    font-size: 24px;
    max-width: 340px;
  }

  .stats-section__subtitle {
    font-size: 12px;
    line-height: 18px;
  }

  .stats-section__grid {
    gap: 14px;
  }

  .stats-card {
    padding: 22px 16px 26px;
    max-width: 340px;
  }

  .stats-card__number {
    font-size: 32px;
  }

  .stats-card__symbol {
    font-size: 32px;
  }

  .stats-card__number-wrapper {
    margin-bottom: 20px;
  }

  .stats-card__description {
    font-size: 12px;
    line-height: 18px;
  }

  .stats-section__button {
    width: 100%;
    padding: 13px 36px;
    font-size: 15px;
  }
}
/
/* ================================================
   FAQ ACCORDION SECTION
   ================================================ */

.faq-section {
  background: #f5eee1;
  width: 100%;
}

.faq-section__wrapper {
  padding: 0px 40px !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================================
   Section Header
   ================================================ */

.faq-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-section__heading {
  font-size: 48px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto 16px;
  color: #74614F;
  line-height: 1.2;
  font-family: poppins, sans-serif !important;
}

.faq-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgb(10, 10, 10);
  margin: 0;
  line-height: 28px;
  font-family: poppins, sans-serif !important;
}

/* ================================================
   FAQ Accordion Container
   ================================================ */

.faq-section__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 650px;
  margin: 0 auto;
}

/* ================================================
   Individual FAQ Item
   ================================================ */

.faq-accordion__item {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px 0px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-accordion__item:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

/* ================================================
   Question Button
   ================================================ */

.faq-accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #f8f8f6;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
  transition: background-color 0.2s ease;
}

.faq-accordion__question-text {
  font-family: "Poppins" !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  flex: 1;
}

/* ================================================
   Chevron Icon
   ================================================ */

.faq-accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: rgb(10, 10, 10);
  transition: transform 0.3s ease;
}

.faq-accordion__item.is-active .faq-accordion__icon {
  transform: rotate(180deg);
}

/* ================================================
   Answer Content
   ================================================ */

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-accordion__answer-content {
  padding: 10px 32px 28px 32px;
  font-family: "Poppins" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(76, 76, 76);
}

/* ================================================
   FAQ SECTION - RESPONSIVE (ENHANCED)
   ================================================ */

/* Large Desktop (1440px and below) */
@media screen and (max-width: 1440px) {
  .faq-section__wrapper {
    padding: 0px 35px !important;
  }
}

/* Desktop (1280px and below) */
@media screen and (max-width: 1280px) {
  .faq-section__wrapper {
    padding: 0px 32px !important;
  }

  .faq-section__header {
    margin-bottom: 52px;
  }

  .faq-section__heading {
    font-size: 44px;
    max-width: 750px;
  }

  .faq-section__subtitle {
    font-size: 15px;
    line-height: 26px;
  }

  .faq-accordion__question {
    padding: 19px 22px;
  }

  .faq-accordion__question-text {
    font-size: 17px;
  }

  .faq-accordion__answer-content {
    padding: 10px 28px 26px 28px;
    font-size: 15px;
  }
}

/* Large Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
  .faq-section__wrapper {
    padding: 0px 30px !important;
  }

  .faq-section__header {
    margin-bottom: 48px;
  }

  .faq-section__heading {
    font-size: 40px;
    max-width: 700px;
    margin-bottom: 14px;
  }

  .faq-section__subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  .faq-section__accordion {
    gap: 10px;
    max-width: 100%;
  }

  .faq-accordion__question {
    padding: 18px 20px;
    gap: 20px;
  }

  .faq-accordion__question-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-accordion__icon {
    width: 22px;
    height: 22px;
  }

  .faq-accordion__answer-content {
    padding: 8px 24px 24px 24px;
    font-size: 15px;
    line-height: 1.5;
  }
}

/* Small Tablets (900px and below) */
@media screen and (max-width: 900px) {
  .faq-section__wrapper {
    padding: 0px 28px !important;
  }

  .faq-section__header {
    margin-bottom: 44px;
  }

  .faq-section__heading {
    font-size: 36px;
    max-width: 650px;
  }

  .faq-section__subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-accordion__item {
    border-radius: 10px;
  }

  .faq-accordion__question {
    padding: 17px 20px;
  }

  .faq-accordion__question-text {
    font-size: 16px;
  }

  .faq-accordion__answer-content {
    padding: 8px 22px 22px 22px;
    font-size: 14px;
  }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
  .faq-section__wrapper {
    padding: 0px 24px !important;
  }

  .faq-section__header {
    margin-bottom: 40px;
  }

  .faq-section__heading {
    font-size: 32px;
    max-width: 600px;
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .faq-section__subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-section__accordion {
    gap: 10px;
  }

  .faq-accordion__item {
    border-radius: 10px;
  }

  .faq-accordion__question {
    padding: 16px 18px;
    gap: 16px;
    min-height: 56px; /* Ensures good touch target */
  }

  .faq-accordion__question-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .faq-accordion__icon {
    width: 20px;
    height: 20px;
  }

  .faq-accordion__answer-content {
    padding: 6px 20px 20px 20px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Mobile Portrait (600px and below) */
@media screen and (max-width: 600px) {
  .faq-section__wrapper {
    padding: 0px 20px !important;
  }

  .faq-section__header {
    margin-bottom: 36px;
  }

  .faq-section__heading {
    font-size: 28px;
    max-width: 100%;
    line-height: 1.2;
  }

  .faq-section__subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .faq-section__accordion {
    gap: 8px;
  }

  .faq-accordion__item {
    border-radius: 8px;
  }

  .faq-accordion__question {
    padding: 15px 16px;
    gap: 14px;
    min-height: 54px;
  }

  .faq-accordion__question-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-accordion__icon {
    width: 20px;
    height: 20px;
  }

  .faq-accordion__answer-content {
    padding: 6px 18px 18px 18px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .faq-section__wrapper {
    padding: 0px 18px !important;
  }

  .faq-section__header {
    margin-bottom: 32px;
  }

  .faq-section__heading {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .faq-section__subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .faq-section__accordion {
    gap: 8px;
  }

  .faq-accordion__item {
    border-radius: 8px;
  }

  .faq-accordion__question {
    padding: 14px 16px;
    gap: 12px;
    min-height: 52px;
  }

  .faq-accordion__question-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-accordion__icon {
    width: 18px;
    height: 18px;
  }

  .faq-accordion__answer-content {
    padding: 4px 16px 16px 16px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .faq-section__wrapper {
    padding: 0px 16px !important;
  }

  .faq-section__header {
    margin-bottom: 28px;
  }

  .faq-section__heading {
    font-size: 24px;
    line-height: 1.2;
  }

  .faq-section__subtitle {
    font-size: 12px;
    line-height: 19px;
  }

  .faq-section__accordion {
    gap: 8px;
  }

  .faq-accordion__item {
    border-radius: 8px;
  }

  .faq-accordion__question {
    padding: 13px 14px;
    gap: 10px;
    min-height: 50px;
  }

  .faq-accordion__question-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .faq-accordion__icon {
    width: 18px;
    height: 18px;
  }

  .faq-accordion__answer-content {
    padding: 4px 14px 14px 14px;
    font-size: 12px;
    line-height: 1.5;
  }
}