/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #1a202c;
  background: #ffffff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4d8cff 0%, #2a6bff 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 0;
  display: block;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta {
  background: #ff4d2a;
  color: white;
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 77, 42, 0.3);
}

.cta:hover {
  background: #e54320;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 77, 42, 0.4);
}


.store-logos {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.store-logos img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.store-logos img:hover {
  transform: scale(1.05);
}

.small-cta {
  padding: 12px 32px;
  font-size: 18px;
  border-radius: 30px;
}

/* Benefits Section */
.benefits {
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

.benefits h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a202c;
}

.benefit-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: hidden;
}

.benefit {
  width: 30%;
  min-width: 300px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0a4ec9;
  margin-bottom: 12px;
}

.benefit p {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
}

/* Products Sections (Power Banks & Charging Stations) */
.products {
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

.products h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a202c;
}

.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.power-banks .product-container {
  flex-direction: row;
  gap: 60px;
}

.charging-stations .product-container {
  flex-direction: column;
  gap: 80px;
}

.product-card {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  background: #f9fafb;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-images {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-image {
  width: 48%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Increase Tower 24 and Tower 72 images by 75% */
.charging-stations .product-card:nth-child(2) .product-image,
.charging-stations .product-card:nth-child(3) .product-image {
  width: 175%;
  max-width: 900px;
  margin: 0 auto;
}

/* Ensure the larger images fit within the card's max-width */
.charging-stations .product-card {
  max-width: 900px;
}

.product-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0a4ec9;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #4d8cff 0%, #2a6bff 100%); /* Matched to hero gradient */
  color: white;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
}

.final-cta h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

.final-cta .cta {
  background: #ff4d2a;
}

/* Footer */
footer {
  background: #f3f4f6;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #4a5568;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .logo {
    width: 200px;
  }
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  .hero-text {
    min-width: auto;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .benefits h2, .products h2 {
    font-size: 34px;
  }
  .benefit-container {
    flex-wrap: wrap;
    gap: 30px;
  }
  .benefit {
    width: 100%;
    min-width: auto;
  }
  .power-banks .product-container, .charging-stations .product-container {
    flex-direction: column;
    gap: 40px;
  }
  .product-card {
    max-width: 100%;
  }
  .product-images {
    gap: 15px;
  }
  .product-image {
    width: 100%;
  }
  /* Reset larger images on mobile to fit */
  .charging-stations .product-card:nth-child(2) .product-image,
  .charging-stations .product-card:nth-child(3) .product-image {
    width: 100%;
    max-width: 100%;
  }
  .charging-stations .product-card {
    max-width: 100%;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .cta {
    padding: 14px 40px;
    font-size: 18px;
  }
  .small-cta {
    padding: 10px 28px;
    font-size: 16px;
  }
}
