/* ----------------------------------------------------
   Centauri Business Group – Brand System
---------------------------------------------------- */

:root {
  /* Brand palette extracted from your graphic */
  --brand-navy: #0D1B2A;
  --brand-blue: #497da6;
  --brand-green: #429f45;
  --brand-yellow: #ddc359;
  --brand-orange: #c68544;
  --brand-purple: #4b2e83;
  --brand-brown: #8D6E63;

  /* Neutral system */
  --text-main: #222;
  --text-muted: #666;
  --bg-light: #f7f8fb;
  --bg-white: #ffffff;
  --border: #dce1eb;

  /* Layout system */
  --radius: 8px;
  --space-xs: 0.4rem;
  --space-s: 0.8rem;
  --space-m: 1.2rem;
  --space-l: 2rem;
  --space-xl: 3rem;
}

/* ----------------------------------------------------
   Base
---------------------------------------------------- */
html, body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--space-l);
  padding-right: var(--space-l);
}

/* Global link color — softer navy */
a {
  color: #3a4a5e; /* lighter navy */
  text-decoration: none;
}

a:hover {
  color: #1f2a38; /* slightly darker on hover */
  text-decoration: underline;
}