:root {
  /* Brand Colors */
  --primary-color: #438d9a;
  --primary-dark: #367b87;
  --primary-light: #7FCBDE;
  --accent-color: #A4D4E4;
  --secondary-color: #c97f10;
  --secondary-hover: #e09c36;
  
  /* Neutral Colors */
  --text-primary: #1b272e;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-primary: #f4f4f4;
  --bg-white: #ffffff;
  --bg-card: #f8f9fa;
  --bg-overlay: rgba(255, 255, 255, 0.9);
  
  /* Border Colors */
  --border-light: #e9ecef;
  --border-medium: #dee2e6;
  --border-primary: #D9D9D9;
  
  /* Status Colors */
  --success-bg: #d4edda;
  --success-text: #155724;
  --warning-bg: #fff3cd;
  --warning-text: #856404;
  --warning-border: #ffc107;
  --danger-bg: #f8d7da;
  --danger-text: #721c24;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  
  /* Typography Scale */
  --font-xs: 0.75rem;     /* 12px */
  --font-sm: 0.875rem;    /* 14px */
  --font-base: 1rem;      /* 16px */
  --font-lg: 1.125rem;    /* 18px */
  --font-xl: 1.25rem;     /* 20px */
  --font-2xl: 1.5rem;     /* 24px */
  --font-3xl: 2rem;       /* 32px */
  
  /* Layout Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1440px;
  
  /* Component Sizes */
  --header-height-mobile: 60px;
  --header-height-desktop: 80px;
  --button-height: 44px;
  --input-height: 44px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}