* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: linear-gradient(315deg, #008DD1 40%, #039BE5 54%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header {
  padding: 20px 0;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.auth-buttons {
  display: flex;
}

.auth-buttons .sign-up {
  background-color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}

.hero {
  text-align: center;
  padding: 40px 0;
  flex: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.stat {
  margin: 0 20px;
}

.stat strong {
  display: block;
  font-size: 2em;
}

.hero-image {
  margin-bottom: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.google-play-badge {
  width: 200px;
  margin-bottom: 30px;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-content p {
  margin-top: 10px;
}

.footer-email {
  color: #fff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    margin: 10px 20px;
  }

  .container {
    flex-direction: column;
  }

  .auth-buttons {
    flex-direction: column;
  }

  .auth-buttons .sign-in,
  .auth-buttons .sign-up {
    margin: 5px 0;
  }

  .hero-image {
    margin-left: 25px;
    margin-right: 25px;
  }

  .hero {
    padding: 0px 0;
  }
}