/* Reset and Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* Product Info */
.product-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.product-info img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.details ul {
  list-style: disc;
  padding-left: 20px;
}

.details h2 {
  margin-top: 0;
  color: #0284c7;
}

/* Countdown Offer */
.countdown-offer {
  background: #fef3c7;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px dashed #facc15;
  border-bottom: 3px dashed #facc15;
}

.countdown-offer h2 {
  color: #ca8a04;
}

.order-btn {
  display: inline-block;
  margin-top: 15px;
  background: #10b981;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.order-btn:hover {
  background: #059669;
}

/* Testimonials */
.testimonials {
  background: #f9fafb;
  padding: 40px 0;
}

.testimonial-card {
  background: #fff;
  border-left: 5px solid #10b981;
  margin: 15px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Questions Section */
.questions {
  background: #ecfeff;
  padding: 30px;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  margin-top: 10px;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #1e40af;
}

/* Footer */
footer {
  background: #1f2937;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}.benefits-with-images {
  background: #f9fafb;
  padding: 50px 20px;
}

.benefits-with-images h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.benefit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.benefit-block:nth-child(even) {
  flex-direction: column-reverse;
}

.benefit-text {
  max-width: 700px;
  text-align: center;
  padding: 20px;
}

.benefit-text h3 {
  color: #047857;
  margin-bottom: 10px;
}

.benefit-text p {
  color: #374151;
  line-height: 1.6;
}

.benefit-img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
}.navbar {
  background-color: #164e63;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #164e63;
    position: absolute;
    top: 60px;
    right: 0;
    width: 60%;
    padding: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
}.footer-nav {
  background-color: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-nav h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #38bdf8;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding: 0;
}

.footer-links li a {
  color: #e0f2fe;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #facc15;
  text-decoration: underline;
}

.copy {
  font-size: 0.9rem;
  color: #94a3b8;
}.video-section {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  border-radius: 1rem;
  margin: 2rem auto;
  max-width: 800px;
}

.video-section h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #1a1a1a;
}