* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #1a1a1a; /* darker background */
  color: #eaeaea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  width: 100%;
  max-width: 620px; /* smaller card */
  background: #242424; /* darker card */
  border-radius: 14px;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 260px; /* slightly smaller image */
  object-fit: cover;
}

.content {
  padding: 24px 20px;
  text-align: center;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem); /* slightly smaller text */
  color: #ffffff;
}

.subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #cfcfcf;
}

.footer {
  padding: 20px 16px 28px;
  text-align: center;
  background: #141414; /* darker footer */
}

.footer p {
  margin: 6px 0;
  color: #bdbdbd;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

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

@media (max-width: 640px) {
  .hero-image {
    height: 200px;
  }

  .card {
    max-width: 95%;
  }
}
