body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.logo {
  max-width: 300px;
  margin-top: 60px;
}

.tagline {
  margin: 20px auto;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  width: 90%;
  max-width: 320px;
}

.links a {
  text-decoration: none;
  background: #006600;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.links a:hover {
  background: #ffffff;
  color: #000000;
  border: 2px solid #006600;
}

.footer {
  margin-top: 40px;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

@media (max-width: 480px) {
  .tagline {
    font-size: 1rem;
    padding: 0 15px;
  }
}
