:root {
  /* Brand Colors */
  --color-primary: #0A2540;
  /* Deep Dairy Blue - Trust */
  --color-primary-light: #153C61;
  --color-accent: #4294E3;
  /* User Requested Blue */
  --color-accent-hover: #357ABD;
  --color-secondary: #FFB800;
  /* Gold - Premium/Quality */

  /* Neutral Colors */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F6F9FC;
  --color-text: #32325D;
  --color-text-light: #6B7C93;
  --color-border: #E6EBF1;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #153C61 100%);
  --gradient-glass: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 1rem;
  /* 16px */
  --spacing-md: 1.5rem;
  /* 24px */
  --spacing-lg: 2.5rem;
  /* 40px */
  --spacing-xl: 4rem;
  /* 64px */
  --spacing-xxl: 6rem;
  /* 96px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}