  /* Special Offer Section */
#special-offer {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.offer-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.offer-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-text {
    flex: 1.5;
}

.offer-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offer-highlight {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 0;
    font-style: italic;
}

.countdown-timer {
    margin-top: 30px;
    background-color: rgba(255, 107, 107, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
}

.countdown-label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--light-text);
}

.countdown-display {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.countdown-unit span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 5px;
}

.unit-label {
    font-size: 0.8rem;
    color: var(--light-text);
}

.offer-action {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 107, 107, 0.05);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(232, 74, 95, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.discount-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discount-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-color);
}

.discount-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-color);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  margin: 15px 0;
  width: 100%;
}

.offer-note {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-top: 10px;
}

/* Bonuses Section */
#bonuses {
  padding: 80px 0;
  background-color: var(--background-color);
}

.bonuses-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.bonus-item {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.bonus-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.bonus-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 1;
}

.bonus-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px;
  position: relative;
}

.bonus-image img {
  max-height: 160px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bonus-details {
  padding: 25px;
}

.bonus-details h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.bonus-tag {
  display: inline-block;
  background-color: #28a745;
  color: white;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.bonus-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.regular-price, .today-price {
  font-size: 1rem;
}

.strikethrough {
  text-decoration: line-through;
  color: #dc3545;
}

.free {
  color: #28a745;
  font-weight: bold;
}

.bonus-details p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

.bonus-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.bonus-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.bonus-cta .btn-primary {
  font-size: 1.1rem;
  padding: 15px 30px;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto 40px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: rgba(255, 107, 107, 0.05);
  cursor: pointer;
  border-left: 4px solid var(--primary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
  flex: 1;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  color: white;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links.legal {
  flex-direction: row;
  gap: 20px;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-badges {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.testimonial h4 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 1.2rem;
}

.testimonial-cta {
  text-align: center;
  margin: 20px auto 0;
  max-width: 700px;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
}

.testimonial-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Guarantee Section */
#guarantee {
  padding: 50px 0 80px;
  background-color: var(--background-color);
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  background-color: var(--light-gray);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.guarantee-content:before {
  content: "90";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.3rem;
}

.guarantee-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.guarantee-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-content .btn-primary {
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 15px 35px;
}

/* Special Offer Section */
#special-offer {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.offer-content {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.offer-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-text {
  flex: 1.5;
}

.offer-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.offer-highlight {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 20px 0;
  font-style: italic;
}

.countdown-timer {
  margin-top: 30px;
  background-color: rgba(255, 107, 107, 0.05);
  padding: 20px;
  border-radius: var(--border-radius);
}

.countdown-label {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--light-text);
}

.countdown-display {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.countdown-unit span:first-child {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 5px;
}

.unit-label {
  font-size: 0.8rem;
  color: var(--light-text);
}

.offer-action {
  flex: 1;
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 107, 107, 0.05);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discount-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(232, 74, 95, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}/* Base Styles */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #E84A5F;
  --accent-color: #45B69C;
  --text-color: #333333;
  --light-text: #777777;
  --background-color: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #424242;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

h1, h2, h3, h4 {
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

ul {
  list-style-position: inside;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Full width section headers */
.full-width-header {
  background-color: var(--primary-color);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px 0;
  margin-bottom: 50px;
  text-align: center;
}

.full-width-header h2 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}

.full-width-header p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary1, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary1 {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.btn-primary1:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Fix for image containers */
.section-image-container {
  width: 100%;
  overflow: hidden;
}

/* Header Styles */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

header.sticky {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }
  to {
      transform: translateY(0);
  }
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  margin: 0;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.order-btn-container {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 20px;
  color: var(--primary-color);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 9px;
}

.hamburger span:nth-child(4) {
  top: 18px;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  animation: fadeIn 0.3s;
}

.nav-backdrop.active {
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Hero Section */
#hero {
  padding: 80px 0;
  background-color: var(--light-gray);
}

#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--light-text);
}

.hero-image {
  flex: 1;
  text-align: center;
  max-width: 100%;
}

.hero-image img {
  max-height: 400px;
  width: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Trust Badges Section */
#trust-badges {
  padding: 60px 0;
  background-color: var(--background-color);
  text-align: center;
}

.badges {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.badge {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background-color: var(--background-color);
  transition: var(--transition);
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.badge h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.badge p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  padding-right: 30px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  text-align: center;
  max-width: 100%;
}

.about-image img {
  max-height: 350px;
  width: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.cta-button {
  margin-top: 25px;
}

/* How It Works Section */
#how-it-works {
  padding: 80px 0;
  background-color: var(--background-color);
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  background-color: var(--light-gray);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid var(--primary-color);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.1);
  display: inline-block;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step p {
  font-size: 0.95rem;
  color: var(--light-text);
}

.how-it-works-cta {
  text-align: center;
  margin-top: 40px;
}

/* Ingredients Section */
#ingredients {
  padding: 80px 0;
  background-color: var(--background-color);
}

.ingredients-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ingredients-image {
  flex: 1;
  padding: 30px;
  max-width: 45%;
  background-color: rgba(255, 107, 107, 0.05);
}

.ingredients-image img {
  max-height: 400px;
  width: auto;
  border-radius: var(--border-radius);
}

.ingredients-text {
  flex: 1;
  padding: 40px;
}

.ingredients-text ul {
  list-style-type: none;
  margin-bottom: 25px;
}

.ingredients-text ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
}

.ingredients-text ul li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.ingredients-text ul li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.ingredients-note {
  background-color: rgba(255, 107, 107, 0.1);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  border-left: 3px solid var(--primary-color);
}

.ingredients-note p {
  margin-bottom: 0;
  font-style: italic;
}

/* Benefits Section */
#benefits {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.benefit {
  background-color: var(--background-color);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-left: 3px solid var(--primary-color);
  height: 100%;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 107, 107, 0.1);
  display: inline-block;
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.benefit p {
  font-size: 0.95rem;
  color: var(--light-text);
}

.benefits-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.benefits-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Key Benefits Section */
#key-benefits {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.key-benefits-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.benefits-list {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-text {
  flex: 1;
}

.benefit-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.benefit-text p {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 0;
}

.key-benefits-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.key-benefits-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.image-caption {
  text-align: center;
  background-color: var(--background-color);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.image-caption p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Testimonials Section */
#reviews {
  padding: 80px 0;
  background-color: var(--background-color);
}

.testimonials {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-color);
  position: relative;
  background-color: #f0f0f0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.stars {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.verified {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.8rem;
  background-color: rgba(0, 128, 0, 0.1);
  color: green;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}
/* Pricing Cards Section */
#pricing-cards {
  padding-bottom: 80px;
  background-color: var(--light-gray);
}

.pricing-cards-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
}

.pricing-card {
  flex: 1;
  max-width: 350px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 2;
  border: 3px solid #4CAF50;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: 15px;
  text-align: center;
  color: white;
}

.pricing-header.basic {
  background-color: #546E7A;
}

.pricing-header.most-popular {
  background-color: #40A0B5;
}

.pricing-header.bundle {
  background-color: #37474F;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-content {
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.pricing-content.popular-content {
  background-color: #FFFDE7;
}

.bottle-count {
  font-size: 2.5rem;
  font-weight: 700;
  color: #37474F;
  margin-bottom: 5px;
}

.supply-text {
  font-size: 1.5rem;
  color: #37474F;
  margin-bottom: 20px;
}

.bottle-image {
  height: 180px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-image img {
  max-height: 180px;
  max-width: 100%;
}

.best-value-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #e53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-align: center;
  transform: rotate(10deg);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #37474F;
  margin: 20px 0;
}

.pricing-benefits {
  margin: 15px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.bonus-check {
  color: #4CAF50;
}

.shipping-check {
  color: #e53935;
}

.buy-now-btn {
  display: block;
  background-color: #F9DF4E;
  color: #37474F;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px auto;
  position: relative;
  transition: all 0.3s ease;
  max-width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background-color: #F5D742;
}

.cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4891EB;
  border-radius: 50%;
  color: white;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.payment-icons {
  margin-top: 15px;
}

.payment-icons img {
  max-width: 200px;
  height: auto;
}

.cursor-pointer-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: url('images/cursor-pointer.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  pointer-events: none;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  color: var(--light-text);
}

.pricing-note p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* Mobile Responsiveness for Pricing Section */
@media screen and (max-width: 992px) {
  .pricing-cards-container {
      flex-wrap: wrap;
      gap: 30px 15px;
  }
  
  .pricing-card {
      min-width: 280px;
  }
  
  .pricing-card.popular {
      transform: scale(1.03);
  }
  
  .pricing-card.popular:hover {
      transform: scale(1.03) translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .pricing-cards-container {
      flex-direction: column;
      align-items: center;
  }
  
  .pricing-card {
      width: 100%;
      max-width: 400px;
  }
  
  .pricing-card.popular {
      transform: none;
      order: -1;
      margin-bottom: 20px;
  }
  
  .pricing-card.popular:hover {
      transform: translateY(-10px);
  }
  
  .bottle-count {
      font-size: 2.2rem;
  }
  
  .supply-text {
      font-size: 1.3rem;
  }
  
  .price {
      font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .pricing-card {
      max-width: 95%;
  }
  
  .bottle-count {
      font-size: 2rem;
  }
  
  .supply-text {
      font-size: 1.2rem;
  }
  
  .price {
      font-size: 2.8rem;
      margin: 15px 0;
  }
  
  .buy-now-btn {
      font-size: 1.3rem;
      padding: 12px 25px;
  }
  
  .cart-icon {
      width: 35px;
      height: 35px;
  }
  
  .best-value-tag {
      width: 70px;
      height: 70px;
      font-size: 0.8rem;
  }
}
/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
  .hero-content h1,
  .full-width-header h2 {
    font-size: 2.3rem;
  }
  
  .key-benefits-content {
    flex-direction: column;
  }
  
  .key-benefits-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 992px) {
  /* Adjust hero section for smaller screens */
  #hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-top: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  /* Adjust about section for smaller screens */
  .about-content {
    flex-direction: column-reverse;
  }
  
  .about-text {
    padding-right: 0;
    margin-top: 40px;
    text-align: center;
  }
  
  /* Adjust ingredients section for smaller screens */
  .ingredients-content {
    flex-direction: column;
  }
  
  .ingredients-image {
    max-width: 100%;
    padding: 30px;
  }
  
  /* Adjust special offer section */
  .offer-content {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .offer-action {
    width: 100%;
    margin-top: 30px;
  }
  
  /* Adjust badge section */
  .badges {
    justify-content: center;
  }
  
  .badge {
    flex-basis: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  /* Header and navigation adjustments */
  header .container {
    position: relative;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    padding-top: 80px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  /* Adjust sections for mobile */
  .badge {
    flex-basis: 100%;
  }
  
  .step {
    max-width: 100%;
    flex-basis: 100%;
  }
  
  /* Testimonials adjustments */
  .testimonial {
    flex-basis: 100%;
  }
  
  /* Benefits adjustments */
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  /* Countdown timer adjustments */
  .countdown-unit span:first-child {
    font-size: 1.5rem;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
  }
  
  /* Bonus section adjustments */
  .bonuses-content {
    flex-direction: column;
  }
  
  .bonus-item {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  /* Smaller header elements */
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Smaller headings */
  .hero-content h1, 
  .full-width-header h2 {
    font-size: 2rem;
  }
  
  /* Adjust countdown */
  .countdown-display {
    flex-wrap: wrap;
  }
  
  .countdown-unit {
    flex-basis: 50%;
    margin-bottom: 10px;
  }
  
  /* FAQ adjustments */
  .faq-question h3 {
    font-size: 1rem;
  }
  
  /* Guarantee section */
  .guarantee-content {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .btn-primary1 {
    display: none;
  }
}
@media (max-width: 768px) {
  .countdown-timer {
    display: none;
  }
}

