:root {
  /* Color Palette - Maritime Theme */
  --color-primary: #0a192f; /* Deep Navy */
  --color-secondary: #00b4d8; /* Bright Cyan/Blue for accents */
  --color-accent: #d4a373; /* Gold/Bronze for trust/prestige */
  --color-text-main: #1f2937; /* Dark Grey */
  --color-text-light: #6b7280; /* Light Grey */
  --color-bg-light: #f3f4f6;
  --color-white: #ffffff;
  --color-success: #10b981;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}
