:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #172033;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #1769aa;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.panel {
  width: min(760px, 100%);
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.08);
  padding: clamp(24px, 5vw, 48px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #5d6b82;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0 0 16px;
  color: #344058;
  font-size: 1rem;
  line-height: 1.68;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #c7d4e6;
  border-radius: 6px;
  background: #f9fbfe;
  color: #172033;
  font-weight: 650;
  text-decoration: none;
}

.contact {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.document {
  place-self: start center;
}

@media (max-width: 520px) {
  .page {
    place-items: start center;
    padding-top: 18px;
  }

  .links {
    flex-direction: column;
  }

  .links a {
    width: 100%;
    justify-content: center;
  }
}
