html{
  scroll-behavior: smooth;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.site-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: #e63946;
}

/* Order Button */
.order-btn {
  background-color: #e63946;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
}

.order-btn:hover {
  background-color: #c72f3b;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 14px;
  }

  .nav-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #6c6666;
}

/* Hero Section */
.hero {
  padding: 40px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  color: #000;
}

/* Heading Box */
.hero-heading {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-heading h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

/* Content */
.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.hero-image img {
  max-width: 380px;
}

/* Text */
.hero-text {
  flex: 1;
}

.benefit-title {
  background: #ffffff;
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.benefits {
  list-style: none;
  margin-bottom: 20px;
}

.benefits li {
  font-size: 18px;
  color: #ffeb3b;
  margin-bottom: 12px;
  font-weight: 600;
}

.discount-text {
  font-size: 20px;
  color: #ffffff;
  margin: 20px 0;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn:hover {
  background: #f1f1f1;
}

/* Badges */
.badges {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.badges img {
  width: 400px;
}

/* Rating */
.rating {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 280px;
  }

  .hero-heading h1 {
    font-size: 24px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section Background */
.about-section {
  background: #eef7f4;
  padding: 50px 20px;
}

/* Container */
.about-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading Box */
.about-heading {
  background: #ffffff;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}

/* Content Layout */
.about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Text */
.about-text {
  flex: 1.2;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 18px;
}

/* Image */
.about-image {
  flex: 0.8;
  text-align: center;
}

.about-image img {
  width: 500px;
  height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-heading h2 {
    font-size: 26px;
  }

  .about-image img {
    max-width: 220px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.why-section {
  background: #6c6666;
  padding: 60px 20px;
}

/* Container */
.why-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.why-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 50px;
}

.why-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}

/* Cards Layout */
.why-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.why-card img {
  width: 110px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0a4f4f;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .why-heading h2 {
    font-size: 28px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section Background */
.work-section {
  background: #eef7f4;
  padding: 50px 20px;
}

/* Container */
.work-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.work-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px 25px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.work-heading h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000;
}

/* Content */
.work-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}

/* CTA Link */
.work-link {
  color: #0066ff;
  font-weight: 700;
  text-decoration: none;
}

.work-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .work-heading h2 {
    font-size: 26px;
  }

  .work-content p {
    font-size: 16px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.review-section {
  background: #6c6666;
  padding: 60px 20px;
}

/* Container */
.review-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.review-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 50px;
}

.review-heading h2 {
  font-size: 36px;
  font-weight: 800;
}

/* Cards */
.review-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Single Card */
.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  max-width: 340px;
}

/* Image */
.review-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Stars */
.stars {
  color: #f5b301;
  font-size: 20px;
  margin-bottom: 5px;
}

/* Verified */
.verified {
  color: green;
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}

/* Title */
.review-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.review-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Name */
.review-card strong {
  display: block;
  margin-top: 10px;
}

.review-card em {
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .review-cards {
    flex-direction: column;
    align-items: center;
  }

  .review-heading h2 {
    font-size: 28px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.ingredients-section {
  background: #eef7f4;
  padding: 60px 20px;
}

/* Container */
.ingredients-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.ingredients-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ingredients-heading h2 {
  font-size: 34px;
  font-weight: 800;
}

/* Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.ingredient-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Image */
.ingredient-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Title */
.ingredient-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a4f4f;
  margin-bottom: 10px;
}

/* Text */
.ingredient-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-heading h2 {
    font-size: 26px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.guarantee-section {
  background: #6c6666;
  padding: 60px 20px;
}

/* Container */
.guarantee-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.guarantee-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 50px;
}

.guarantee-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}

/* Content */
.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.guarantee-image img {
  max-width: 260px;
}

/* Text */
.guarantee-text {
  color: #ffffff;
}

.guarantee-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Order Link */
.order-link a {
  color: #ffd000;
  font-weight: 700;
  text-decoration: underline;
}

/* Button */
.guarantee-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.guarantee-btn:hover {
  background: #d60000;
}

/* Responsive */
@media (max-width: 900px) {
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-heading h2 {
    font-size: 28px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.benefits-section {
  background: #eef7f4;
  padding: 60px 20px;
}

/* Container */
.benefits-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.benefits-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefits-heading h2 {
  font-size: 34px;
  font-weight: 800;
}

/* Subtitle */
.benefits-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* List */
.benefits-list {
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
}

/* Tick Icon */
.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #1a73e8;
  color: #1a73e8;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-heading h2 {
    font-size: 26px;
  }

  .benefits-list li {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.bonus-section {
  background: #eef7f4;
  padding: 60px 20px;
}

/* Container */
.bonus-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.bonus-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bonus-heading h2 {
  font-size: 32px;
  font-weight: 800;
}

/* Cards Layout */
.bonus-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Card */
.bonus-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Image Box */
.bonus-image {
  background: linear-gradient(135deg, #00e1c6, #00bfa6);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  margin-bottom: 15px;
}

.bonus-image img {
  width: 100%;
  max-width: 260px;
}

/* Title */
.bonus-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-title span {
  color: red;
  font-weight: 800;
}

/* Text */
.bonus-text {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .bonus-cards {
    flex-direction: column;
    align-items: center;
  }

  .bonus-heading h2 {
    font-size: 26px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #6c6666;
}

/* Top Bar */
.top-bar {
  background: #222;
  text-align: center;
  padding: 20px;
}

.top-bar h2 {
  color: #fff;
  font-size: 28px;
}

.top-bar p {
  color: yellow;
  font-weight: bold;
}

/* Pricing */
.pricing-section {
  padding: 50px 20px;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Card */
.price-card {
  background: #eee;
  border-radius: 16px;
  padding: 20px;
  width: 320px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.price-card.highlight {
  border: 4px solid yellow;
}

.badge {
  background: #111;
  color: yellow;
  padding: 8px;
  font-weight: bold;
}

.badge.yellow {
  background: #111;
}

.supply {
  margin: 10px 0;
}

.price-card img {
  width: 180px;
  margin: 15px 0;
}

.price-card h3 {
  font-size: 32px;
  color: #0a7c5c;
}

.price-card span {
  font-size: 14px;
}

.save.red {
  color: red;
  font-weight: bold;
}

.cart-btn {
  background: yellow;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  margin: 15px 0;
}

.cart-btn:hover {
  background: #ffd500;
}

.old-price {
  text-decoration: line-through;
  color: #777;
}

.final-price {
  font-size: 24px;
  font-weight: bold;
}

.shipping {
  font-weight: bold;
  margin-top: 10px;
}

/* Warning */
.warning {
  background: yellow;
  padding: 18px;
  text-align: center;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Section */
.faq-section {
  background: #eef7f4;
  padding: 60px 20px;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.faq-heading {
  background: #ffffff;
  border-radius: 30px;
  padding: 18px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-heading h2 {
  font-size: 32px;
  font-weight: 800;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  font-weight: bold;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.final-cta {
  background: #6c6666;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.cta-image img {
  max-width: 420px;
  margin-bottom: 25px;
}

/* Countdown */
.countdown {
  color: yellow;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.labels {
  display: flex;
  justify-content: center;
  gap: 45px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 25px;
}

/* Price */
.price-box {
  margin-bottom: 25px;
}

.price-box .old span {
  text-decoration: line-through;
  color: #ff4d4d;
  font-weight: bold;
}

.price-box .new {
  font-size: 22px;
  font-weight: 800;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: red;
  color: #fff;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn:hover {
  background: #d60000;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-title {
    font-size: 24px;
  }

  .cta-image img {
    max-width: 300px;
  }
}



.site-footer {
  background: #000000;
  padding: 25px 15px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-links {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #ffffff;
  font-size: 14px;
}

.footer-copy .brand {
  color: #1a73e8;
  text-decoration: none;
}

.footer-copy .brand:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    font-size: 14px;
    line-height: 1.6;
  }
}
