
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: white;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.main-header {
  background-color: #272727;
  padding: 15px 0;
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 36px;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.9em;
}
.hero {
  padding: 80px 0;
  background-color: #000;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1em;
  margin-bottom: 25px;
}
.hero-img {
  max-width: 380px;
}
.btn {
  background-color: #00cc56;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.products {
  padding: 80px 0;
}
.products-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.products-title h2 {
  font-size: 3.2em;
  font-weight: 300;
  color: #999;
  line-height: 1.3;
  margin-right: 70px;
}
.product-cards {
  display: flex;
  gap: 30px;
}
.product-card {
  border-radius: 16px;
  padding: 30px 20px;
  width: 350px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}
.product-card.dark {
  background-color: #1d1d1d;
  color: white;
}
.product-card.light {
  background-color: white;
  color: black;
}
.product-card:hover {
  outline: 4px solid #00cc56;
}
.product-card img {
  height: 250px;
  margin-top: 20px;
}
.plus{
  font-size: 2.2em;
}
.ps{
  font-size: 1.3em;
}
.benefits {
  background: #1a1a1a;
  padding: 80px 0;
}
.benefit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

}
.benefit-icon img {
  width: 300px;
  height: auto;
  display: block;
}
.benefit-content {
  flex: 1;
  max-width: 600px;
}
.benefit-content h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}
.benefit-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}
.benefit-highlight {
  background: #1a1a1a;
  padding: 80px 0;
}
.highlight-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.highlight-text {
  max-width: 600px;
  flex: 1;
}
.highlight-text h3 {
  font-size: 1.6em;
  color: white;
  margin-bottom: 15px;
}
.highlight-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}
.highlight-icon img {
  width: 350px;
  height: auto;
  display: block;
}
.faq-section {
  width: 100vw;                     /* Full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;               /* Force full background edge-to-edge */
  margin-right: -50vw;
  background: linear-gradient(135deg, #00cc56, #0f4e3e);
  color: white;
  padding: 80px 0;
  overflow-x: hidden;
  
}
.faq-layout {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faq-info {
  max-width: 480px;
}
.faq-info h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.faq-info p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.faq-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-btn {
  padding: 10px 16px;
  border: 1px solid white;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 0.9em;
  border-radius: 6px;
}
.faq-accordion {
  flex: 1;
  max-width: 580px;
}
.faq-item {
  margin-bottom: 16px;
}
.faq-question {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ddd;
  color: white;
  text-align: left;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}
.faq-answer {
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}
.footer-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;               /* Force full background edge-to-edge */
  margin-right: -50vw;
  background: #000;
  color: #ccc;
  padding: 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  font-size: 0.95em;
}

.whatsapp-button {
  display: inline-block;
  background: #00cc56;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95em;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background: #00b84d;
}

.hamburger {
  display: none;
}

.updates-section {
  padding: 60px 0;
  background: #191818;
}

.updates-section h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.update-list {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.update-card {
  background: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.update-card h3 {
  margin-top: 0;
}

.update-card .btn {
  display: inline-block;
  margin-top: 10px;
  background: #00cc56;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
}


/* Core navigation styling */
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  padding: 8px 10px;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  top: 100%;
  left: 0;
  border-radius: 6px;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Mobile styling */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
  }

  .main-nav.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #222;
    border: none;
    margin-top: 5px;
  }

  .dropdown-menu a {
    color: #fff;
    padding-left: 25px;
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .nav-item.dropdown > a::after {
    content: ' ▼';
    font-size: 12px;
  }

  .nav-item.dropdown > a {
    cursor: pointer;
  }

  .nav-item.dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: block;
  }
}



/* ========== MOBILE STYLES ========== */
@media screen and (max-width: 768px) {
  .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
  }

  .main-nav a {
    padding: 15px 0;
    color: white;
    border-top: 1px solid #222;
  }

  .main-nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
  
  }

  .hero-content,
  .products-row,
  .benefit-row,
  .highlight-row,
  .faq-layout,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-img,
  .highlight-icon,
  .benefit-icon {
    max-width: 100%;
    margin: 20px 0;
  }

  .product-card {
    width: 100%;
    margin-bottom: 30px;
  }

  .faq-accordion {
    width: 100%;
  }
}

/* Fix product cards for mobile */
@media screen and (max-width: 768px) {
  .product-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
.products-title h2 {
  font-size: 3.2em;
  font-weight: 300;
  color: #999;
  line-height: 1.3;
  
}
  .product-card {
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .product-card img {
    max-width: 100%;
    height: auto;
  }

  .products-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .products-row {
    flex-direction: column;
    align-items: center;
  }
}
