:root {
    /* Couleurs principales extraites du logo */
    --primary-color: #1a3c40; /* Bleu marine foncé */
    --secondary-color: #2d5f73; /* Bleu ardoise */
    --accent-color: #4a8c6d; /* Vert forêt */
    --light-color: #f0f4f8; /* Bleu très clair */
    --dark-color: #0d1f23; /* Presque noir */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #e9ecef;
    --gray-medium: #adb5bd;
    --gray-dark: #495057;
    
    /* Typographie */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Bordures */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}