:root {
  --color-primary: #00539F;
  --color-primary-dark: #002B5C;
  --color-accent: #F47920;
  --color-text: #2D2D2D;
  --color-text-light: #555555;
  --color-bg: #ffffff;
  --color-bg-alt: #F8F8F8;
  --color-border: #E8E8E8;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-base: 1.125rem;
  --font-size-sm: 0.9375rem;
  --font-size-lg: 1.375rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3.5rem;
  --font-size-4xl: 4.5rem;
  --line-height: 1.7;
  --line-height-tight: 1.15;
  --max-width: 1200px;
  --gutter: 2rem;
}

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

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  line-height: var(--line-height-tight);
  color: var(--color-primary-dark);
  font-weight: 700;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }

p { margin: 0 0 1.5rem; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }
