/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Hero Section */
.hero {
  background: url('assets/aloevera1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px #000;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background-color: #218838;
}.video-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007b5e;
}
.video-section video {
  width: 90%;
  max-width: 720px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}.benefits-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #007b5e;
}

.benefit {
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.benefit img {
  width: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.benefit p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}.offer-section {
  background: #e0f7fa;
  padding: 60px 20px;
  text-align: center;
}

.offer-section h2 {
  font-size: 2rem;
  color: #007b5e;
  margin-bottom: 15px;
}

.price-tag {
  font-size: 1.8rem;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.new-price {
  color: #d32f2f;
  font-weight: bold;
}

.limited-text {
  color: #e65100;
  margin-bottom: 20px;
  font-weight: 500;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

.countdown div {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  min-width: 80px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}.recommend-section {
  background: #f1f8e9;
  padding: 50px 20px;
  text-align: center;
}

.recommend-section h2 {
  color: #33691e;
  font-size: 2rem;
  margin-bottom: 10px;
}

.recommend-section p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #4e4e4e;
}

.recommend-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.recommend-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cddc39;
  border-radius: 6px;
  font-size: 1rem;
}

.recommend-form button {
  background: #7cb342;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.recommend-form button:hover {
  background: #558b2f;
}.neolife-section {
  background: #fff3e0;
  padding: 50px 20px;
  text-align: center;
}

.neolife-section h2 {
  font-size: 1.8rem;
  color: #e65100;
  margin-bottom: 20px;
}

.neolife-btn {
  background: #ef6c00;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  transition: 0.3s;
}

.neolife-btn:hover {
  background: #bf360c;
}.site-footer {
  background: #212121;
  color: #ccc;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.95rem;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}