/* Base styles — shared across all pages */

:root {
  --navy: #1a2744;
  --navy-mid: #243258;
  --navy-light: #2d3e6a;
  --white: #ffffff;
  --cream: #f5f7fa;
  --cream-dark: #e8ecf2;
  --text: #1a2744;
  --text-muted: #6b7280;
  --border: #d1d8e4;
  --green: #7db89a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
