:root {
  --brand: #158ace;
  --brand-dk: #0e6ba8;
  --brand-lt: #e8f4fc;
  --navy: #0c1c35;
  --navy-2: #122444;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f4f7fa;
  --white: #ffffff;
  --good: #059669;
  --gold: #c9870c;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(12, 28, 53, 0.08);
  --shadow-lg: 0 8px 32px rgba(12, 28, 53, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Figtree",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background: var(--bg);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}
