/* styles.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f9fc;
  color: #1b1f23;
  line-height: 1.6;
}

header.hero {
  background: linear-gradient(to bottom right, #0288d1, #26c6da);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

header .app-icon {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 20%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

main {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

h1, h2 {
  color: #01579b;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: url('checkmark.svg') left center no-repeat;
  background-size: 1.2em;
  padding-left: 2em;
  margin-bottom: 0.75rem;
  color: #333;
}

.google-play-badge {
  display: inline-block;
  margin-top: 2rem;
  height: 60px;
}

.google-play-badge img {
  height: 100%;
  width: auto;
  transition: transform 0.2s ease-in-out;
}

.google-play-badge img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #e0f2f1;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #004d40;
}

.cta-section {
  text-align: center;
}

@media (max-width: 600px) {
  header.hero {
    padding: 2rem 1rem;
  }

  .google-play-badge {
    height: 50px;
  }
}

.subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

header .google-play-badge {
  margin: 0 auto 1rem;
  height: 60px;
}
