/* gen */
:root {
    --primary-blue: #002157;
    --primary-blue-dark: #07a4ed;
    --secondary-purple: #8a2be2;
    --secondary-orange: #b85600;
    --network-gray: #1d252c;
    --network-gray-light: #2d3747;
    --text-primary: #1a1f36;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-tertiary: #edf2f7;
    --accent-yellow: #ffd700;
    --accent-green: #00b894;
    --accent-red: #e53e3e;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Mapping pour la navbar */
    --primary-color: var(--primary-blue);
    --accent-color: var(--secondary-purple);
    --light-color: var(--bg-secondary);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: 'Inria Sans', sans-serif;
    font-style: normal;
    font-size: 14px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}



.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}