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

:root {
  --primary-navy: #0b113b;
  --primary-navy-light: #151e54;
  --accent-gold: #e9c176;
  --accent-gold-hover: #cba65e;
  --text-dark: #1e293b;
  --text-gray: #475569;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --font-heading: Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif;
  --font-body: Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif;
}

html,
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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