body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #1a1a1d, #0a1c3b);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 50px;
}

header img {
  height: 50px;
  margin-right: 15px;
}

h1 {
  font-weight: 600;
  letter-spacing: 1px;
}

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

main p {
  max-width: 600px;
  line-height: 1.6;
  margin-top: 10px;
  color: #d4d4d8;
}

.buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

a.button {
  text-decoration: none;
  background: #ffffff10;
  border: 1px solid #ffffff30;
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

a.button:hover {
  background: #0078ff;
  transform: translateY(-3px);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  header img {
    margin-bottom: 10px;
  }
}