:root {
    /* Colors */
    --color-primary: #0F2C59; /* Deep Corporate Blue */
    --color-secondary: #333333; /* Graphite */
    --color-accent: #C5A059; /* Muted Gold */
    --color-text: #333333;
    --color-text-light: #555555;
    --color-background: #ffffff;
    --color-background-alt: #F8F9FA;
    --color-white: #ffffff;
    --color-border: #e0e0e0;

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 2rem;     /* 32px */
    --spacing-lg: 4rem;     /* 64px */
    --spacing-xl: 8rem;     /* 128px */

    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px 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);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}
