body {
  margin: 0;
  min-height: 100vh;
  background: #0b132b;
  color: #fff7d6;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo {
  max-width: 700px;
  width: 90%;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

p {
  font-size: 1.2rem;
  color: #dbe7ff;
}

.buttons {
  margin-top: 28px;
}

button {
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: #fff7d6;
  color: #234f91;
  font-weight: bold;
  cursor: pointer;
  margin: 6px;
}

button.secondary {
  background: transparent;
  color: #fff7d6;
  border: 2px solid #fff7d6;
}