:root {
  /* Brand Colors */
  --primary-color: #002A5C;
  --primary-light: #004080;
  --accent-color: #E85D04;
  --accent-hover: #D04F00;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --border-color: #E5E5E5;
  --gradient-dark: linear-gradient(135deg, rgba(0,42,92,0.92), rgba(0,42,92,0.65));

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

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Header */
  --header-height: 80px;

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

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}
