:root {
  /* Core Colors */
  --primary: #3b8fd9;
  --primary-dark: #2a6fb3;
  --primary-light: #6bb3ed;
  --accent: #e8f4fc;
  --highlight: #0f2847;
  --background: #f8fafc;
  --surface: #ffffff;
  --text: #1e3a5f;
  --text-muted: #5a7a9a;
  --text-light: #8aa4bd;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 40, 71, 0.08);
  --shadow: 0 4px 12px rgba(15, 40, 71, 0.1);
  --shadow-lg: 0 8px 30px rgba(15, 40, 71, 0.12);
  --shadow-hover: 0 12px 40px rgba(15, 40, 71, 0.15);
  
  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing: 1rem;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}
