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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

/* Hero section */
.hero {
  text-align: center;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

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

.social-section i {
  color: #999;
  font-size: 0.7rem;
  display: block;
  margin-bottom: 26px;
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  color: #666;
  font-size: 0.75rem;
}

footer a {
  color: #007aff;
  text-decoration: none;
}

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

.logo {
  width: 40%;
  min-width: 120px;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.app-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.app-button {
  display: inline-block;
  transition: transform 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
}

.app-button:hover {
  transform: scale(1.05);
}

.app-button img {
  height: 48px;
  width: auto;
}

.social-icons {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  border-radius: 8px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .app-buttons {
    gap: 12px;
  }

  .app-button img {
    height: 40px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .social-icon img {
    width: 28px;
    height: 28px;
  }

  h5 {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.75rem;
  }

  .container {
    gap: 30px;
  }
}
