:root {
  /* Brand Colors */
  --primary-color: #00b4d8;      /* Turquoise */
  --secondary-color: #0077b6;    /* Dark Blue */
  --accent-color: #ffd60a;       /* Yellow */
  --success-color: #06d6a0;
  --danger-color: #ef476f;
  
  /* Neutrals */
  --text-dark: #2b2d42;
  --text-light: #8d99ae;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}
