* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #f4f6f8;
  color: #1f2933;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.suspension-page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.card {
  width: min(680px, 100%);
  padding: 48px 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d9e0e7;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 41, 51, 0.08);
}

.brand {
  margin-bottom: 28px;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #173f6b;
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef3f8;
  color: #173f6b;
  font-size: 2rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  color: #17212b;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
}

p {
  margin: 0 auto 18px;
  max-width: 560px;
}

.lead {
  font-size: 1.2rem;
  font-weight: 600;
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  border-radius: 7px;
  background: #173f6b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  background: #0f2f52;
}

.button:focus-visible {
  outline: 3px solid #8eb7df;
  outline-offset: 3px;
}

.site-footer {
  padding: 18px 20px 24px;
  text-align: center;
  color: #607080;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 560px) {
  .suspension-page {
    padding: 24px 14px;
  }

  .card {
    padding: 36px 22px;
  }
}
