/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #0a934d;
  --accent-color: #FFD814;
  --accent-hover: #FFD814;
  --dark-bg: #031538;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #444;
  background-color: #f5ede4;
  line-height: 1.5;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
}

/* ==================== HEADER STYLES ==================== */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  color: black;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.glow-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.glow-link h2 {
  transition: text-shadow 0.3s ease;
  cursor: pointer;
}

.glow-link:hover h2 {
  color: rgb(90, 90, 90);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 22px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.order-button {
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 0px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
}

.order-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 900;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 5px;
}

.order-button:hover {
  background-color: var(--accent-hover);
}

/* Mobile Menu */
.mobile-menu-icon {
  background: none;
  border: none;
  color: black;
  font-size: 32px;
  cursor: pointer;
  display: none;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  padding: 10px 20px;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-button {
  margin: 0 !important;
}

/* ==================== HERO SECTION STYLES ==================== */
.product-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
  background-color: var(--primary-color);
  text-align: center;
  margin-top: 0;
  padding: 10px 0;
}


.benefits-lists {
  margin-bottom: 20px;
  padding-left: 25px;
  list-style: none;
}

.benefits-lists li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
}

.benefits-lists li::before {
  content: '✓';
  color: #000;
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* CTA Button Styles */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 5px;
}

.cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.secondary-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z"/></svg>');
  margin-left: 5px;
}

.secondary-button:hover {
  background-color: var(--accent-color);
  color: black;
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
  /* Header Responsive */
  .mobile-menu-icon {
    display: block;
    margin-right: 10px;
  }

  .header .nav-links {
    display: none;
  }

  .header .order-button {
    display: none;
  }

  .logo h2 {
    font-size: 25px;
  }

  /* Hero Section Responsive */
  .product-title {
    font-size: 25px;
  }


  .benefits-lists li {
    font-size: 20px;
  }

  .cta-button, .secondary-button {
    font-size: 20px;
    width: 100%;
    justify-content: center;
    margin: 5px 0;
  }

  .cta-buttons {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 12px;
  }

  .nav-links a {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 10px;
  }

  .product-title {
    font-size: 22px;
    padding: 8px 5px;
  }

  .product-info h2 {
    font-size: 28px;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }
}

/* ==================== CERTIFICATIONS SECTION ==================== */

.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  padding: 0 10px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.1);
}

.badge-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  font-size: 24px;
  margin-top: 5px;
}

.badge-description {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  margin: 10px 0;
}

/* Certifications Responsive */
@media (max-width: 768px) {
  .certifications h2 {
    font-size: 25px;
  }

  .certification-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .badge {
    margin-bottom: 20px;
    max-width: 350px;
  }

  .badge-title {
    font-size: 22px;
  }

  .badge-description {
    font-size: 18px;
  }
}

/* ==================== PRODUCT DETAILS SECTION (WHAT IS SYNOGUT) ==================== */
.product-details {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #000000;
}

.product-details h2 {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin: 0 0 15px 0;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.product-details-text {
  flex: 1;
  min-width: 300px;
}

.product-details-content p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.6;
  color: #000;
}

.product-details-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-details-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Product Details Responsive */
@media (max-width: 768px) {
  .product-details h2 {
    font-size: 25px;
  }

  .product-details-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .product-details-content p {
    font-size: 20px;
    
  }

  .product-details-image {
    order: -1;
  }

  .product-details-image img {
    max-width: 300px;
  }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
  padding: 0 0 40px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  color: #000000;
}

.how-it-works h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 20px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: none;
  text-align: center;
  font-weight: bold;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-it-works-intro {
  margin-bottom: 20px;
  font-style: normal;
  font-size: 20px;
  color: #000;
  text-align: left;
  font-weight: 500;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.how-it-works-step {
  margin-bottom: 10px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  font-size: 22px;
  display: block;
}

.step-description {
  line-height: 1.6;
  color: #000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.step-below-para {
  margin-top: 20px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 30px;
}

.how-it-works .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.how-it-works .cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* How It Works Responsive */
@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 25px;
  }

  .how-it-works-intro {
    font-size: 20px;
    
  }

  .step-title {
    font-size: 15px;
    text-align: justify;
  }

  .step-description {
    font-size: 20px;
    
  }

  .step-below-para {
    font-size: 20px !important;
  }

  .how-it-works .cta-button {
    font-size: 16px;
    width: 100%;
  }
}

/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.customer-reviews {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
}

.customer-reviews h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background-color: white;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  text-align: left;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6790C2;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
}

.verified-badge svg {
  fill: #6790C2;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.reviewer-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 10%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reviewer-image img {
  width: 100%;
  height: auto;
}

.reviewer-info h4 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating svg {
  fill: #FFD700;
  width: 30px;
  height: 30px;
}

.review-text {
  color: #666;
  line-height: 1.5;
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

/* Reviews Responsive */
@media (max-width: 768px) {
  .customer-reviews h2 {
    font-size: 25px;
  }

  .reviews-container {
    padding: 0 15px;
  }

  .review {
    padding: 15px;
  }

  .review-text {
    font-size: 18px;
  }

  .reviewer-info h4 {
    font-size: 18px;
  }
}


/* ==================== PRICING SECTION ==================== */
.image-grid-section {
  padding: 0;
  background-color: white;
  text-align: center;
  margin-top: 0;
}

.image-grid-section h2 {
  background-color: #0a934d;
  color: white;
  margin: 0;
  padding: 30px 10px 40px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.4;
}

.off-white-background {
  position: relative;
  width: 100%;
  height: 0;
}

.buying-background {
  background: #0a934d;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: -1px;
}

.g-arrow {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 30px;
  width: 100%;
}

.p-4 {
  padding: 0;
}

.pricing-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 40px;
  padding: 0 20px;
  max-width: 1300px;
  align-items: flex-start;
}

.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-header {
  color: #ffffff;
  padding: 15px 10px;
  font-size: 1.6em;
  font-weight: 700;
  border-radius: 15px 15px 0 0;
  line-height: 1.2;
}

.supply-days {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  margin-top: 5px;
}

.header-1x,
.header-3x {
  background-color: #0a934d;
  margin-top: 15px;
}

.header-6x {
  background-color: #0a934d;
  
}

.card-content {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: white;
  border-radius: 0 0 15px 15px;
}

.product-image-new {
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.price-section {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

.current-price {
  font-size: 3.5em;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.per-bottle {
  font-size: 1.3em;
  color: #666;
  margin-left: 8px;
}

.ebooks {
  background-color: #fff;
  color: #ff9900;
  border: 2px dashed #ff9900;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

.buy-now-btn {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}

.buy-now-btn:hover {
  background-color: #ffcd38;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.total-price {
  font-size: 1.2em;
  color: #333;
  margin: 15px 0;
  font-weight: 600;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-weight: 400;
  font-size: 0.9em;
}

.discounted-total {
  color: #000;
  font-size: 1.4em;
  font-weight: 700;
}

.payment-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.payment-methods img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Best Value Card */
.product-card.best-value {
  background-color: #fffacd;
}

.product-card.best-value .card-content {
  background-color: #fffacd;
}

/* Pricing Responsive */
@media (max-width: 1100px) {
  .pricing-container {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 450px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .image-grid-section h2 {
    font-size: 26px;
    padding: 25px 15px 35px;
  }
  
  .pricing-container {
    margin: 40px auto 30px;
    padding: 0 15px;
  }

  .product-card {
    max-width: 400px;
  }

  .card-header {
    font-size: 1.4em;
  }
}

@media (max-width: 500px) {
  .image-grid-section h2 {
    font-size: 22px;
    padding: 20px 10px 30px;
  }

  .buy-now-btn {
    padding: 15px 40px;
    font-size: 1.3em;
  }

  .current-price {
    font-size: 2.8em;
  }

  .card-header {
    font-size: 1.3em;
    padding: 12px 8px;
  }
}

@media (max-width: 425px) {
  .g-arrow {
    height: 25px;
  }
  
  .product-card {
    min-width: 100%;
  }
}

/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
  padding: 0;
  background-color: white;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.bonuses-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.ebook-bonus-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #fff;
}

.ebook-card {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ebook-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

.ebook-text {
  margin-top: 20px;
  font-size: 15px;
  color: #000;
}

.ebook-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.ebook-text p {
  margin-top: 10px;
  line-height: 1.6;
  text-align: left;
}

/* Bonuses Responsive */
@media (max-width: 768px) {
  .ebook-bonus-section {
    flex-direction: column;
    align-items: center;
  }

  .ebook-card {
    flex: 1 1 100%;
    max-width: 90%;
    margin-bottom: 30px;
  }

  .ebook-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .bonuses-section h2 {
    font-size: 25px;
  }
}

/* ==================== INGREDIENTS SECTION (ENHANCED) ==================== */
.ingredients-section {
  padding: 0 0 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.ingredients-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.ingredients-intro {
  margin: 0 auto 50px auto;
  line-height: 1.7;
  padding: 0 20px;
  max-width: 1200px;
  text-align: center;
  font-size: 20px;
  color: #000000;
}

.ingredients-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.ingredient-number {
  min-width: 60px;
  min-height: 60px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052554 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(3, 21, 56, 0.3);
  transition: all 0.3s ease;
}

.ingredient-item:hover .ingredient-number {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent-color) 0%, #e0a800 100%);
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ingredient-description {
  margin: 0;
  line-height: 1.7;
  color: #000000;
  font-size: 18px;
}

/* Ingredients Responsive */
@media (max-width: 1024px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ingredients-section h2 {
    font-size: 25px;
    padding: 20px 15px;
  }

  .ingredients-intro {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .ingredients-list {
    gap: 20px;
    padding: 0 10px;
  }

  .ingredient-item {
    padding: 20px;
    gap: 20px;
  }

  .ingredient-number {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ingredient-title {
    font-size: 25px;
  }

  .ingredient-description {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .ingredient-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
  }

  .ingredient-number {
    margin-bottom: 10px;
  }
}

/* ==================== SCIENCE & GUARANTEE SECTION ==================== */
.science-section {
  padding: 40px 0;
  background-color: white;
  text-align: center;
  color: #333;
  font-size: 20px;
}

.cert-logos {
  background-color: #000;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.science-heading {
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0 30px 0;
  text-transform: uppercase;
  color: #333;
}

.science-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: 1200px;
  padding: 0 20px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  color: #333;
}

.step-desc {
  line-height: 1.6;
  margin: 0;
  font-size: 18px;
  color: #555;
}

.step-arrow {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  align-self: center;
  margin: 0 10px;
}

.guarantee-block {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 40px;
}

.guarantee-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.guarantee-text {
  flex: 1;
  min-width: 300px;
}

.guarantee-text h3 {
  color: white;
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.guarantee-text p {
  margin: 0;
  line-height: 1.7;
  color: white;
  font-size: 18px;
}

/* Science Section Responsive */
@media (max-width: 768px) {
  .science-heading {
    font-size: 25px;
    margin: 20px 0 20px;
  }

  .science-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-arrow {
    display: none;
  }

  .science-step {
    max-width: 100%;
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
  }

  .guarantee-badge {
    order: -1;
  }

  .guarantee-badge img {
    max-width: 250px;
  }

  .guarantee-text h3 {
    font-size: 24px;
    text-align: center;
  }

  .guarantee-text p {
    font-size: 20px;
   
  }

  .cert-logos {
    padding: 20px 10px;
  }

  .cert-logos img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-title {
    font-size: 24px;
  }

  .step-desc {
    font-size: 18px;
  }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: white;
  color: #333;
  padding: 0 0 60px 0;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  text-align: center;
  color: #000000;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* Benefits Responsive */
@media (max-width: 768px) {
  .benefits-section h2 {
    font-size: 25px;
  }

  .benefits-intro {
    font-size: 20px;
  }

  .benefit-title {
    font-size: 22px;
  }

  .benefit-desc {
    font-size: 19px;
  }

  .benefits-section {
    padding: 0 0 10px 0;
  }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #fff;
  color: #333;
  padding: 10px;
  font-size: 20px;
}

.faq-heading {
  background-color: var(--primary-color);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 20px;
}

.faq-item {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background: #t0.2s ease;
}

.faq-item:hover {
  background: #f7f7f7;
}

.faq-q {
  font-weight: 600;
  display: block;
  position: relative;
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
  font-size: 24px;
}

.faq-item.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
  border-radius: 15px;
}

.banner-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.banner-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
}

.banner-content {
  width: 50%;
}

.banner-content h3 {
  margin: 0 0 20px 0;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 30px;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 20px;
}

.faq-answer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-text-content {
  flex: 1;
  min-width: 300px;
}

.faq-image-content {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
}

.checkout-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}

.faq-answer-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--primary-color);
}

.answer-subheading {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 40px;
}

.bottom-banner img {
  max-width: 550px;
  width: 100%;
  height: auto;
  padding: 10px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 10px 0 5px 0;
  color: #000;
  font-weight: bold;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 25px;
    margin: 0 0 20px;
  }

  .faq-banners {
    flex-direction: column;
    padding: 20px;
    margin: 20px;
  }

  .banner-image,
  .banner-content {
    width: 100%;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 25px;
  }

  .faq-answer-block {
    padding: 20px 10px;
  }

  .faq-answer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq-image-content {
    order: -1; /* Image appears first on mobile */
    max-width: 100%;
  }
  
  .faq-answer-block h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }

  .bottom-banner h3 {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .checkout-image {
    border-radius: 5px;
  }
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: #fff;
  border-top: 1px solid #000;
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #000;
}

.footer-disclaimer {
  padding: 15px;
  margin: 0 auto 15px auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
  text-align: justify;
  color: #000;
}

.footer-bottom {
  border: 2px solid #000;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  
  margin: 0 auto;
  background: #b3b3b300;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #000;
  background-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: 1px solid #000;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: #8c8c8c;
}

.social-icons i {
  font-size: 18px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  margin: 0 3px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-disclaimer p {
    text-align: left;
    padding: 0 10px;
  }

  .footer-bottom {
    margin: 0 5px;
    padding: 20px 15px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons i {
    font-size: 16px;
  }

  .footer-section {
    padding: 20px 10px;
  }
}

/* ==================== BOTTOM CTA BANNER ==================== */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052554 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.bottom-cta-banner.hidden {
  transform: translateY(100%);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.cta-banner-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.cta-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

.cta-banner-price {
  text-align: center;
}

.cta-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.cta-original-price {
  font-size: 12px;
  color: #ccc;
  text-decoration: line-through;
}

.cta-banner-button {
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-banner-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.cta-banner-button svg {
  width: 16px;
  height: 16px;
}

.cta-banner-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.cta-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 12px 15px;
    gap: 10px;
  }

  .cta-banner-text h4 {
    font-size: 16px;
  }

  .cta-banner-text p {
    font-size: 13px;
  }

  .cta-price {
    font-size: 20px;
  }

  .cta-banner-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cta-banner-close {
    top: 5px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .cta-banner-content {
    padding: 10px 12px;
  }

  .cta-banner-text h4 {
    font-size: 14px;
  }

  .cta-price {
    font-size: 18px;
  }
}

























        /* Hero Section */
        .hero {
            padding: 60px 20px;
            background: linear-gradient(180deg, #ffffff 0%, #fef5f3 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Content */
        .hero-left {
            z-index: 2;
        }

        .hero-title {
            font-size: 52px;
            line-height: 1.1;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .hero-title .accent {
            color: #0a934d;
        }

        .hero-copy {
            color: #000000;
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .cta-wrap {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #ff7361;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 115, 97, 0.3);
        }

        .btn-primary:hover {
            background: #ff5c48;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 115, 97, 0.4);
        }

        .btn-ghost {
            background: transparent;
            color: #ff7361;
            border: 2px solid #ff7361;
        }

        .btn-ghost:hover {
            background: #ff7361;
            color: white;
        }

        /* Service Cards */
        .service-label {
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        
        }
        
        /* Keep 4 columns on desktop - this is the default above */

        .service-card {
            background: #f395e4;
            padding: 10px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(125, 211, 232, 0.4);
        }

        .service-card  {
            font-size: 40px;
            color: rgb(0, 0, 0);
            margin-bottom: 10px;
            display: block;
        }

        .service-card h4 {
            color: rgb(0, 0, 0);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

        
        /* Right Visual */
        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        /* Decorative Circles */
        .circle-bg {
            position: absolute;
            border-radius: 50%;
        }

        .circle-large {
            width: 550px;
            height: 550px;
            background: linear-gradient(135deg, #eff22e 0%);
            opacity: 0.6;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
        }

        .circle-medium {
            width: 300px;
            height: 300px;
            background: #ffd4cc;
            opacity: 0.4;
            right: 100px;
            top: 20%;
        }

        /* Portrait Image */
        .portrait {
            position: relative;
            z-index: 2;
            width: 400px;
            height: 500px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .portrait img {
            width: 100%;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 2;
        }

        /* Floating Elements */
        .floating-badge {
            position: absolute;
            background: #fffff;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 3;
        }

        .cases-badge {
            left: 5%;
            top: 20%;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cases-icon {
            width: 50px;
            height: 50px;
            background: #fa97d2;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .cases-text h3 {
            font-size: 24px;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 2px;
        }

        .cases-text p {
            font-size: 12px;
            color: #718096;
        }

        .experts-badge {
            bottom: 15%;
            right: 5%;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .experts-text {
            font-weight: 600;
            font-size: 14px;
            color: #2d3748;
        }

        .expert-avatars {
            display: flex;
            margin-left: 5px;
        }

        .expert-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
            background: linear-gradient(135deg, #ff7361, #ffb199);
        }

        .expert-avatar:first-child {
            margin-left: 0;
        }

        .expert-count {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #4a5568;
        }

        /* Floating Decorative Elements */
        .floating-icon {
            position: absolute;
            z-index: 3;
            animation: float 3s ease-in-out infinite;
        }

        .icon-chart {
            top: 10%;
            right: 8%;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            font-size: 28px;
            color: #ff7361;
        }

        .icon-heart {
            bottom: 25%;
            right: 2%;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            font-size: 24px;
            color: #ff7361;
        }

        .dot-decoration {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #ff7361;
            border-radius: 50%;
        }

        .dot-1 { top: 8%; right: 20%; }
        .dot-2 { bottom: 35%; right: 45%; }
        .dot-3 { top: 35%; left: 2%; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 42px;
            }

            /* Change to 2 columns on tablet/mobile */
            .service-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .circle-large {
                width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-icon {
                display: block;
            }

            .hero {
                padding: 40px 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-copy {
                font-size: 20px;
            }

            .cta-wrap {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .service-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .portrait {
                width: 300px;
                height: 400px;
            }

            .circle-large {
                width: 320px;
                height: 320px;
                right: -30px;
            }

            .circle-medium {
                width: 200px;
                height: 200px;
            }

            .cases-badge {
                left: 2%;
                top: 15%;
                padding: 12px 15px;
            }

            .cases-text h3 {
                font-size: 20px;
            }

            .icon-chart,
            .icon-heart {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .service-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .service-card {
                padding: 15px;
            }

            .service-card  {
                font-size: 40px;
            }

            .service-card h4 {
                font-size: 18px;
            }

            .portrait {
                width: 250px;
                height: 350px;
            }

            .cases-badge {
                padding: 10px 12px;
            }

            .cases-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .cases-text h3 {
                font-size: 18px;
            }

            .experts-badge {
                padding: 10px 12px;
            }
        }

 .reviews-badge {
    position: absolute;
    bottom: 300px;
    right: 20px;
    background: white;
    padding: 12px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.reviews-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.expert-avatars {
    display: flex;
    align-items: center;
}

.expert-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    overflow: hidden;
    background: #e0e0e0;
    position: relative;
}

.expert-avatar:first-child {
    margin-left: 0;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.more-experts {
    margin-left: 5px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}




        .reviews-section {
            background: white;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 400px;
        }

        .reviews-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .review-avatars {
            display: flex;
            justify-content: center;
            gap: -10px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid white;
            background: linear-gradient(135deg, #d63384 0%, #c2185b 100%);
            margin-left: -10px;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 100%;
            max-width: 400px;
        }

        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.2s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card:nth-child(1) { background-color: #ffe4f5; }
        .feature-card:nth-child(2) { background-color: #fff4e4; }
        .feature-card:nth-child(3) { background-color: #e4e8ff; }
        .feature-card:nth-child(4) { background-color: #ffe4ff; }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .feature-title {
            font-weight: bold;
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .feature-subtitle {
            font-size: 12px;
            color: #666;
        }

        @media (max-width: 968px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .left-content h1 {
                font-size: 32px;
            }

            .top-banner {
                font-size: 16px;
                padding: 12px 15px;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 30px 15px;
            }

            .left-content h1 {
                font-size: 28px;
            }

            .top-banner {
                font-size: 14px;
                padding: 10px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .btn {
                padding: 15px 25px;
                font-size: 16px;
            }

            .satisfaction-badge {
                padding: 10px 15px;
                left: 10px;
                top: 10px;
            }

            .badge-number {
                font-size: 16px;
            }

            .badge-icon {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }



        .top-banner {
            background: linear-gradient(90deg, #d63384 0%, #c2185b 100%);
            color: white;
            text-align: center;
            padding: 12px 20px;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .left-content h1 {
            font-size: 48px;
            color: #364859;
            margin-bottom: 35px;
            line-height: 1.15;
            font-weight: 700;
        }

        .intro-text {
            margin-bottom: 35px;
            line-height: 1.75;
            font-size: 17px;
            color: #3a4a5a;
        }

        .intro-text strong {
            font-weight: 700;
            color: #2d3e50;
        }

        .right-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .product-container {
            position: relative;
            width: 100%;
            max-width: 450px;
            margin-bottom: 20px;
        }

        .product-bottle {
            width: 100%;
            background: linear-gradient(180deg, #ffd4e5 0%, #fff0d4 100%);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
        }

        .bottle-inner {
            background: white;
            border-radius: 50%;
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            padding: 30px;
            position: relative;
        }

        .bottle-label-top {
            font-size: 16px;
            color: #888;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .bottle-brand {
            font-size: 58px;
            font-weight: 900;
            line-height: 0.95;
            text-align: center;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 15px 0;
        }

        .bottle-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .bottle-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
        }

        .bottle-footer {
            margin-top: 18px;
            font-size: 13px;
            color: #999;
            font-weight: 500;
        }

        .satisfaction-badge {
            position: absolute;
            top: 30px;
            left: 20px;
            background: white;
            padding: 16px 22px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
        }

        .badge-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            flex-shrink: 0;
        }

        .badge-text {
            display: flex;
            flex-direction: column;
        }

        .badge-number {
            font-size: 22px;
            font-weight: 800;
            color: #2d3e50;
            line-height: 1;
        }

        .badge-label {
            font-size: 11px;
            color: #777;
            margin-top: 3px;
            font-weight: 500;
        }

        .reviews-section {
            background: white;
            padding: 18px 24px;
            border-radius: 18px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            text-align: center;
            margin-bottom: 25px;
            width: 100%;
            max-width: 450px;
        }

        .reviews-title {
            font-weight: 700;
            margin-bottom: 12px;
            color: #2d3e50;
            font-size: 15px;
        }

        .review-avatars {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 3px solid white;
            margin-left: -12px;
            background-size: cover;
            background-position: center;
        }

        .avatar:first-child {
            margin-left: 0;
            background: linear-gradient(135deg, #ff6b9d 0%, #c2185b 100%);
        }

        .avatar:nth-child(2) {
            background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
        }

        .avatar:nth-child(3) {
            background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%);
        }

        .avatar-more {
            margin-left: 8px;
            color: #888;
            font-size: 20px;
            font-weight: 600;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            width: 100%;
            max-width: 450px;
        }

        .feature-card {
            background: white;
            padding: 28px 20px;
            border-radius: 22px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .feature-card:nth-child(1) { 
            background: linear-gradient(135deg, #ffeef7 0%, #ffe8f5 100%);
        }
        .feature-card:nth-child(2) { 
            background: linear-gradient(135deg, #fff8e8 0%, #fff4d4 100%);
        }
        .feature-card:nth-child(3) { 
            background: linear-gradient(135deg, #f0f3ff 0%, #e8edff 100%);
        }
        .feature-card:nth-child(4) { 
            background: linear-gradient(135deg, #fff0ff 0%, #fde8ff 100%);
        }

        .feature-icon {
            font-size: 46px;
            margin-bottom: 12px;
            line-height: 1;
        }

        .feature-title {
            font-weight: 700;
            font-size: 15px;
            color: #2d3e50;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .feature-subtitle {
            font-size: 13px;
            color: #666;
            font-weight: 500;
            line-height: 1.3;
        }

        @media (max-width: 1024px) {
            .content-wrapper {
                gap: 60px;
            }
            
            .left-content h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 968px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .right-content {
                order: -1;
            }

            .left-content h1 {
                font-size: 36px;
            }

            .container {
                padding: 40px 30px;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 30px 20px;
            }

            .left-content h1 {
                font-size: 32px;
                margin-bottom: 25px;
            }

            .intro-text {
                font-size: 16px;
            }

            .top-banner {
                font-size: 14px;
                padding: 10px 15px;
            }

            .btn {
                padding: 14px 28px;
                font-size: 16px;
            }

            .satisfaction-badge {
                padding: 12px 16px;
                left: 15px;
                top: 20px;
            }

            .badge-number {
                font-size: 18px;
            }

            .badge-icon {
                width: 38px;
                height: 38px;
                font-size: 22px;
            }

            .product-bottle {
                padding: 35px;
            }

            .bottle-brand {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .left-content h1 {
                font-size: 28px;
            }

            .satisfaction-badge {
                padding: 10px 14px;
                left: 10px;
                top: 15px;
            }

            .badge-number {
                font-size: 16px;
            }

            .badge-icon {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }

            .bottle-brand {
                font-size: 42px;
            }

            .product-bottle {
                padding: 25px;
            }
        }