* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f7f7f7;
  color: #231f20;
}

/* Hero Section */
.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1de83e, #ffaf00);
  color: #fff;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.store-buttons {
  display: flex;
  gap: 15px;
}

.store-btn img {
  height: 60px;
  transition: transform 0.3s ease;
}

.store-btn img:hover {
  transform: scale(1.1);
}

.hero-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.hero-image img {
  max-width: 380px;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* QR Section */
.qr-section {
  padding: 80px 20px;
  text-align: center;
}

.qr-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.qr-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.qr-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-10px);
}

.qr-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.qr-card img {
  margin-bottom: 15px;
}

.qr-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.qr-card a img {
  height: 50px;
}

.ios-card {
  border-top: 5px solid #1de83e;
}

.android-card {
  border-top: 5px solid #ffaf00;
}

.footer {
  background: #231f20;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}


/* Store Buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.store-btn img {
  max-width: 160px;  
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.store-btn img:hover {
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .store-btn img {
    max-width: 140px;  
  }

  .hero-image img {
    max-width: 280px;
  }
}
