/* Design System Tokens */
:root {
    /* Brand Colors */
    --primary-color: #002B5B; /* Deep Blue */
    --primary-dark: #001A38;
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #00E5FF; /* Cyan */
    
    /* Functional Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Neutral Colors */
    --text-dark: #1A1A1A;
    --text-gray: #555555;
    --text-light: #FFFFFF;
    --bg-light: #F4F7F6;
    --bg-white: #FFFFFF;
    
    /* Effects */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Cairo', sans-serif;
}
