body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #ffffff;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 45vh;
  background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  padding-top: 10vh;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  text-align: center;
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  color: #8a0037;
  font-size: 28px;
  margin-bottom: 20px;
}

.section p {
  line-height: 1.7;
}

/* APP CONTENT */
.app-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.app-logo {
  width: 140px;
  height: auto;
}

.app-description {
  max-width: 500px;
  text-align: left;
}

.app-description h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.app-description ul {
  margin-top: 20px;
  line-height: 1.6;
}

.launch-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #00b050;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.launch-btn:hover {
  background: #009141;
}

.store-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.store-badge {
  height: 55px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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