.hero-section {
  background: url('assets/treenen-hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.5rem;
}/* NAVIGATION */
.navbar {
  background-color: #1b1b1b;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00ffaa;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: #1b1b1b;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}/* CTA SECTION */
.cta {
  background: linear-gradient(to right, #4caf50, #2e7d32);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: -10px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #ffffff;
  color: #2e7d32;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #2e7d32;
  color: white;
}/* BENEFITS SECTION */
.benefits {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2e7d32;
}

.benefit {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.benefit img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.benefit h3 {
  font-size: 1.5rem;
  color: #388e3c;
  margin-bottom: 0.5rem;
}

.benefit p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

@media screen and (max-width: 768px) {
  .benefit {
    flex-direction: column;
    text-align: center;
  }

  .benefit img {
    width: 80%;
  }
}.video-section {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
}

.video-section h2 {
  font-size: 2rem;
  color: #0a3c59;
  margin-bottom: 20px;
}

.video-section video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}.testimonials {
  padding: 60px 20px;
  background-color: #fff8f0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #0a3c59;
  margin-bottom: 40px;
}

.testimonial {
  background: #ffffff;
  border-left: 6px solid #0a3c59;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  font-style: italic;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #0a3c59;
}.countdown-offer {
  background-color: #fef9e7;
  padding: 50px 20px;
  text-align: center;
}

.countdown-offer h2 {
  color: #d35400;
  font-size: 2rem;
  margin-bottom: 10px;
}

.countdown-offer p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #5d4037;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 30px;
}

.order-btn {
  display: inline-block;
  background-color: #0a3c59;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.order-btn:hover {
  background-color: #04506f;
}.price-tag {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #000;
}

.price-tag strong {
  font-size: 2.2rem;
  color: #b12704;
  font-weight: bold;
}

.offer-details {
  font-size: 1rem;
  color: #6e6e6e;
  margin-bottom: 20px;
  font-style: italic;
}

.countdown-offer {
  background-color: #fef6f2;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}.recommendations-questions {
  background-color: #f3faff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem auto;
  max-width: 700px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}

.recommendations-questions h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #004085;
}

.recommendations-questions p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.chat-btn {
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.chat-btn:hover {
  background-color: #1da851;
}.neolife-link {
  background: #e9f7ef;
  text-align: center;
  padding: 2rem 1rem;
  margin: 3rem auto;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

.neolife-link h2 {
  font-size: 1.7rem;
  color: #1b5e20;
  margin-bottom: 1rem;
}

.neolife-link p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.explore-btn {
  background-color: #2e7d32;
  color: #fff;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #1b5e20;
}.site-footer {
  background-color: #1b5e20;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 4rem;
}

.footer-content a {
  color: #a5d6a7;
  text-decoration: none;
  font-weight: 500;
}

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