:root {
    /* Primary Colors */
    --primary: #567C8D;           /* Muted Blue-Grey */
    --primary-dark: #2F4156;      /* Dark Blue-Grey */
    --primary-light: #7a9aaa;     /* Lighter Blue-Grey */
    --primary-lighter: #C8D9E6;   /* Very Light Blue (backgrounds) */
    
    /* Secondary Colors */
    --secondary: #2F4156;         /* Dark Blue-Grey */
    --secondary-light: #3d5468;   /* Medium Blue-Grey */
    
    /* Supporting Colors */
    --accent-blue: #567C8D;       /* Muted Blue */
    --accent-blue-light: #C8D9E6; /* Light Blue bg */
    --accent-teal: #5a8a95;       /* Teal variant */
    --accent-teal-light: #d4e5ea; /* Light Teal bg */
    --accent-yellow: #d4a574;     /* Muted Gold */
    --accent-yellow-light: #f5efeb; /* Light Cream bg */
    
    /* Status Colors */
    --success: #5a8a95;           /* Teal variant */
    --success-light: #d4e5ea;     /* Light Teal bg */
    --danger: #c55a5a;            /* Muted Red */
    --danger-light: #f5e5e5;      /* Light Red bg */
    --warning: #d4a574;           /* Muted Gold */
    --warning-light: #f5efeb;     /* Light Cream bg */
    --info: #567C8D;              /* Muted Blue */
    --info-light: #C8D9E6;        /* Light Blue bg */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light: #F5EFEB;
    --gray-100: #F5EFEB;
    --gray-200: #e8e0d8;
    --gray-300: #d4cbc0;
    --gray-400: #b8ada0;
    --gray-500: #9c8f82;
    --gray-600: #7a6d60;
    --gray-700: #5a4f44;
    --gray-800: #3d352e;
    --gray-900: #2a2420;
    --dark: #2F4156;              /* Dark Blue-Grey */
    --black: #000000;
    
    /* Text Colors */
    --text-primary: #2F4156;      /* Dark Blue-Grey */
    --text-secondary: #567C8D;
    --text-muted: #9c8f82;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-body: #F5EFEB;
    --bg-white: #FFFFFF;
    --bg-light: #C8D9E6;
    --bg-dark: #2F4156;           /* Dark Blue-Grey */
    
    /* Border Colors */
    --border-color: #C8D9E6;
    --border-light: #e8e0d8;
    --border-dark: #567C8D;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(47, 65, 86, 0.05);
    --shadow: 0 1px 3px 0 rgba(47, 65, 86, 0.1), 0 1px 2px 0 rgba(47, 65, 86, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(47, 65, 86, 0.1), 0 2px 4px -1px rgba(47, 65, 86, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(47, 65, 86, 0.1), 0 4px 6px -2px rgba(47, 65, 86, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(47, 65, 86, 0.1), 0 10px 10px -5px rgba(47, 65, 86, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}