body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #005b8f, #003f66);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 420px;
  text-align: center;
}

.logo {
  width: 220px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

p {
  color: #d8eefc;
  margin-bottom: 30px;
}

.links a {
  display: block;
  background: #00a86b;
  color: white;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.links a:hover {
  background: #008f5a;
}

footer {
  margin-top: 30px;
  font-size: 13px;
  color: #cce7f5;
}