/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #A05263;
  --accent-color: #ffc107;
  --accent-hover: #e0a800;
  --dark-bg: #A05263;
}

/* ==================== 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: white;
  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: 10px;
  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;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 0 20px 0;
  max-width: 1600px;
  margin: 0 auto;
  background-color: white;
}

.product-image {
  flex: 0 0 auto;
  max-width: 450px;
  width: 100%;
  min-width: 350px;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: auto;
  max-width: 450px;
  object-fit: contain;
  display: block;
}

.product-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  padding: 10px;
}

.product-info h2 {
  margin-top: 20px;
  font-size: 40px;
  color: #000;
  font-weight: bold;
}

.ingredients-highlight {
  font-weight: bold;
  color: #000;
}

.product-info h3 {
  font-size: 1.5rem;
  margin: 15px 0 10px 0;
}

.product-description {
  margin-bottom: 5px;
  line-height: 1.5;
  color: #000;
  font-size: 20px;
}

.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 24px;
  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;
  }

  .hero-section {
    gap: 5px;
    flex-direction: column;
  }

  .product-image {
    min-width: 250px;
    max-width: 650px;
  }

  .product-info h2 {
    font-size: 32px;
  }

  .product-description {
    font-size: 16px;
  }

  .benefits-lists li {
    font-size: 16px;
  }

  .cta-button, .secondary-button {
    font-size: 16px;
    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: 20px;
  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: #333;
}

.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-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: 16px;
    text-align: justify;
  }

  .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: #333;
}

.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: 16px;
    text-align: justify;
  }

  .step-title {
    font-size: 15px;
    text-align: justify;
  }

  .step-description {
    font-size: 16px;
    text-align: justify;
  }

  .step-below-para {
    font-size: 18px !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: #d93636;
  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: #d93636;
  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: #d93636;
  margin-top: 15px;
}

.header-6x {
  background-color: #8b3030;
  
}

.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: #444;
}

.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: #555;
  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: 18px;
    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: 20px;
  }

  .ingredient-description {
    font-size: 16px;
  }
}

@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: 16px;
    text-align: justify;
  }

  .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: 20px;
  }

  .step-desc {
    font-size: 16px;
  }
}

/* ==================== 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: #444;
}

.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: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #444;
  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: 18px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-desc {
    font-size: 18px;
  }

  .benefits-section {
    padding: 0 0 10px 0;
  }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #fff;
  color: #333;
  padding: 0;
  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 0.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;
  }
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page {
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0;
  text-align: center;
  margin: 0;
}

.legal-page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content {
  padding: 60px 0;
  background-color: #fff;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 40px 0 20px 0;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h4 {
  font-size: 20px;
  color: #333;
  margin: 30px 0 15px 0;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.legal-content strong {
  color: #333;
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
  color: var(--primary-color);
}

.legal-highlight {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.legal-highlight p {
  margin-bottom: 0;
  font-weight: 500;
}

.legal-divider {
  border: none;
  height: 2px;
  background-color: #e9ecef;
  margin: 40px 0;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-subsection {
  margin-bottom: 30px;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.contact-info p {
  color: white;
  margin-bottom: 10px;
  text-align: left;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.legal-navigation {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
}

.legal-back-link:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.legal-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legal-nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.legal-nav-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.legal-nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-table th,
.legal-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.legal-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.legal-table tr:hover {
  background-color: #f8f9fa;
}

.legal-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  padding: 20px;
  margin: 30px 0;
}

.legal-notice h4 {
  color: #856404;
  margin-top: 0;
}

.legal-notice p {
  color: #856404;
  margin-bottom: 0;
}

.last-updated {
  text-align: right;
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-page-header {
    padding: 30px 0;
  }

  .legal-page-header h1 {
    font-size: 32px;
    letter-spacing: 1px;
    padding: 0 15px;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-container {
    padding: 0 15px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }

  .legal-content h4 {
    font-size: 18px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    text-align: left;
  }

  .legal-back-link {
    font-size: 14px;
    padding: 10px 20px;
  }

  .legal-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .legal-nav-link {
    width: 200px;
    text-align: center;
  }

  .legal-table {
    font-size: 14px;
  }

  .legal-table th,
  .legal-table td {
    padding: 10px 8px;
  }

  .contact-info {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .legal-page-header h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content h4 {
    font-size: 16px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-highlight,
  .legal-notice,
  .contact-info {
    padding: 15px;
  }

  .legal-table {
    font-size: 12px;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 6px;
  }
}

/* Print Styles for Legal Pages */
@media print {
  .legal-navigation,
  .legal-back-link,
  .legal-nav-links {
    display: none;
  }

  .legal-page-header {
    background-color: #333 !important;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  .legal-content {
    font-size: 12px;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
    page-break-after: avoid;
  }

  .legal-section {
    page-break-inside: avoid;
  }
}