:root {
  --color-bg: #ebeef4;
  --color-accent: #86CEFA;
  --color-accent-2: #1750AC;
  --radius-card: 0px;
  --radius-button: 0px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-button: 0 1px 4px rgba(0,0,0,0.06);
  --font-family: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans';
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--color-bg);
  color: #0f172a;
  line-height: 1.6;
}

a { color: var(--color-accent-2); }
a:hover { color: var(--color-accent); }

.container {
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  outline: 2px solid var(--color-accent);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.page-title {
  margin: 24px 0 8px 0;
  font-size: 40px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  max-width: 96ch;
  margin: 0 0 16px 0;
}

.badges { margin: 16px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 0;
  background: rgba(23,80,172,0.06);
  color: var(--color-accent-2);
  font-weight: 600;
  font-size: 12px;
}

.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  padding:20px;
}

/* Details grid with separate boxes */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.detail-box {
  border-color: var(--color-accent);
  margin: 5px
}

.detail-pair { margin: 0; }
.detail-pair dt { font-weight: 700; color: #111827; margin-bottom: 6px; }
.detail-pair dd { margin: 0; }

.details-list { margin: 0; }
.detail { display: grid; grid-template-columns: 120px 1fr; gap: 8px 16px; padding: 8px 0; }
.detail dt { font-weight: 600; color: #111827; }
.detail dd { margin: 0; }

.body-text { margin: 16px 0 24px; max-width: 80ch; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-button);
}
.button:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.button-primary { background: var(--color-accent-2); color: #fff; }
.button-primary:hover { filter: brightness(0.94); color: #fff; }
.button-secondary { background: transparent; color: var(--color-accent-2); border-color: var(--color-accent-2); }
.button-secondary:hover { background: rgba(23,80,172,0.06); color: var(--color-accent-2); }

.site-footer { margin-top: 40px; margin-bottom: 40px; }
.footer-text, .legal { margin: 0; color: #334155; }
.footer-text { margin-bottom: 6px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .detail { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .page-title { font-size: 44px; line-height: 1.15; }
  .lead { font-size: 20px; }
  .badge { font-size: 13px; padding: 8px 12px; }
  .button { padding: 12px 16px; font-size: 16px; }
  .body-text { font-size: 17px; }
}


