:root {
  --color-primary: #05509c;
  --color-text: #13253a;
  --color-page-bg: #f8f9fb;
  --color-surface: #ffffff;
  --color-border: #d8e1ea;
  --color-muted: #4c6075;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --shadow-soft: 0 8px 20px rgb(6 36 71 / 8%);
  --font-title-list: 'Manrope', 'Manrope Fallback', 'Segoe UI', Arial, sans-serif;
  --font-title-single: 'DM Serif Display', 'DM Serif Display Fallback', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans 3 Fallback', 'Segoe UI', Arial, sans-serif;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-page-bg);
  font-family: var(--font-body);
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-3);
  color: var(--color-text);
  line-height: 1.2;
  font-family: var(--font-title-list);
  font-weight: 700;
}

p {
  margin: 0 0 var(--space-4);
}

i,
em {
  font-style: italic;
}

.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;
}

input,
textarea,
select,
button {
  font: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: none;
}
