:root {
  --bg-color: #ffffff;        /* White background */
  --text-color: #111111;      /* Dark text */
  --muted-text: #555555;      /* Subtle muted text */
  --accent: #5b7cfa;          /* Accent color for logo or highlights */
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 480px;
}

.logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 3rem;
}

footer {
  font-size: 0.85rem;
  color: var(--muted-text);
}
