/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.btn-order-header {
  background-color: #fff;
  color: #6b4e3d;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: #6b4e3d;
  padding: 20px;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-order-mobile {
  background-color: #fff;
  color: #6b4e3d;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-image {
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-text h1 {
  font-size: 36px;
  color: #6b4e3d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.benefits-list {
  list-style: none;
  margin-bottom: 25px;
}

.benefits-list li {
  padding: 8px 0;
  font-size: 15px;
  color: #333;
}

.rating-text {
  font-size: 16px;
  font-weight: bold;
  color: #6b4e3d;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons.center {
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #6b4e3d;
  color: white;
}

.btn-secondary {
  background-color: #8b6f47;
  color: white;
}

.btn-large {
  padding: 20px 50px;
  font-size: 20px;
}

/* Trust Section */
.trust-section {
  background-color: #4a6b4e;
  color: white;
  padding: 60px 0;
}

.trust-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.badge {
  background-color: white;
  color: #333;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.badge:hover {
  transform: translateY(-5px);
}

.badge img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.badge h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #6b4e3d;
}

.badge p {
  font-size: 14px;
  color: #666;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #8b6f47 0%, #6b4e3d 100%);
  color: white;
  padding: 60px 0;
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* How It Works */
.how-it-works {
  background-color: #6b4e3d;
  color: white;
  padding: 60px 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.work-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials */
.testimonials-section {
  background-color: #4a6b4e;
  color: white;
  padding: 60px 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background-color: white;
  color: #333;
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: start;
}

.testimonial-image img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.testimonial-content h3 {
  color: #6b4e3d;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: bold;
  color: #6b4e3d;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
  text-align: center;
}

.pricing-section h2 {
  font-size: 36px;
  color: #6b4e3d;
  margin-bottom: 15px;
}

.pricing-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.pricing-cta {
  max-width: 600px;
  margin: 0 auto;
}

.guarantee {
  margin-top: 15px;
  font-size: 16px;
  color: #4a6b4e;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  background-color: white;
  padding: 60px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: #6b4e3d;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #6b4e3d;
}

.faq-icon {
  font-size: 24px;
  color: #6b4e3d;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.faq-answer p {
  color: #666;
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #6b4e3d 0%, #4a6b4e 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-image img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .pricing-section h2,
  .final-cta h2 {
    font-size: 28px;
  }
}
