/* =========================================================
   Kingston-style Maintenance Page CSS
   Single-file, resilient, no external dependencies
   ========================================================= */

html {
  box-sizing: border-box;
  font-size: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;

  background-color: #f7f8f9;
  color: #222;
  line-height: 1.6;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main container */
.maintenance-container {
  max-width: 720px;
  width: calc(100% - 4rem);
  padding: 2.5rem 2rem;

  background-color: #ffffff;
  border-radius: 6px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}

h2 {
  margin: 2rem 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

/* Body text */
p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Links */
a {
  color: #005eb8;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* Footer / small print */
.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .maintenance-container {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }
}

/* =========================================================
   Logo
   ========================================================= */

.logo {
  margin-bottom: 2rem;
}

.logo img {
  max-width: 240px;
  height: auto;
  display: block;
}