        :root {
            --primary: #2c3e50;
            --secondary: #2980b9; /* Bleu Républicain */
            --accent: #27ae60;    /* Vert Espoir/Fonds Vert */
            --light: #ecf0f1;
            --danger: #c0392b;
            --text: #333;
            --timeline-line: #bdc3c7;
			--color-logo: #0A5F7D;
			--color-green: #1C8777;
			--bar-current: #7f8c8d;
            --bar-future: #c0392b;
        }


		.bg-color-logo {
			background-color: var(--color-logo);
		}
		
		.hover\:bg-color-logo {
			&:hover {
				@media (hover: hover) {
					background-color: var(--color-logo);
				}	
			}
		}
		
		.hover\:bg-green {
			&:hover {
				@media (hover: hover) {
					background-color: var(--color-green);
				}	
			}
		}
		
		.bg-green {
			background-color: var(--color-green);
		}
		
		.text-green {
			color: var(--color-green);
		}

		#HeaderVert {
			/* Le dégradé linéaire caractéristique de MuniMetrix */
			background: linear-gradient(135deg, #16a085 0%, #2c3e50 100%);
		}


        
        h2 { 
            color: var(--primary); 
            border-left: 5px solid var(--secondary); 
            padding-left: 15px; 
            margin-top: 4rem; 
            font-size: 1.8rem;
        }
		
		h5 { 
            color: var(--primary); 
            padding-left: 15px; 
            margin-top: 4rem; 
            font-size: 1.8rem;
        }
		
        
        h3 { color: var(--primary); margin-top: 1.5rem; font-size: 1.3rem; }

        .highlight-box {
            background: #eaf2f8;
            border: 1px solid #a9cce3;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 6px;
            display: flex;
            align-items: start;
            gap: 15px;
        }

        /* --- CARTE DISPOSITIFS --- */
        .devices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .device-card {
            background: #fff;
            border: 1px solid #eee;
            border-top: 4px solid var(--secondary);
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.2s;
        }
        .device-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .device-title { font-weight: bold; font-size: 1.1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .device-tag { font-size: 0.7rem; background: #eee; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }

        /* --- TIMELINE VERTICALE --- */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--timeline-line);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        .time-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            box-sizing: border-box;
        }
        .time-left { left: 0; text-align: right; }
        .time-right { left: 50%; }
        
        .time-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .time-badge {
            position: absolute;
            top: 15px;
            right: -12px;
            width: 24px;
            height: 24px;
            background: var(--secondary);
            border-radius: 50%;
            border: 4px solid #fff;
            z-index: 1;
        }
        .time-right .time-badge { left: -12px; }
        
        .year { font-weight: bold; color: var(--secondary); font-size: 1.2rem; display: block; margin-bottom: 5px; }

        /* --- COMPARATIF AVANT/APRES --- */
        .comparison-block {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px 0;
        }
        .comp-half { flex: 1; padding: 20px; }
        .comp-before { background: #fdf2e9; border-right: 1px solid #ddd; }
        .comp-after { background: #eafaf1; }
        .comp-title { text-transform: uppercase; font-weight: bold; font-size: 0.8rem; margin-bottom: 10px; display: block; }
        
        .c-red { color: var(--danger); }
        .c-green { color: var(--accent); }

        /* --- MUNIMETRIX VALUE --- */
        .value-prop {
            background: linear-gradient(to right, #2c3e50, #34495e);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .value-icon { font-size: 3rem; color: #f1c40f; }

        /* Refs */
        .refs-section {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 3rem;
            font-size: 0.9rem;
            border-left: 4px solid var(--secondary);
        }
        .refs-list li { margin-bottom: 10px; }
        .ref-tag { 
            background: #e0e0e0; 
            padding: 2px 6px; 
            border-radius: 4px; 
            font-size: 0.7rem; 
            font-weight: bold; 
            text-transform: uppercase;
            margin-right: 8px;
        }

        @media (max-width: 768px) {
            .timeline::after { left: 31px; }
            .time-container { width: 100%; padding-left: 70px; padding-right: 25px; }
            .time-left, .time-right { left: 0; text-align: left; }
            .time-badge { left: 19px; }
            .comparison-block { flex-direction: column; }
            .value-prop { flex-direction: column; text-align: center; }
        }
		
		
		 /* Styles spécifiques pour le graphique CSS qui ne peut pas être fait qu'en Tailwind */
        .css-chart-container {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 350px;
            border-bottom: 2px solid #e2e8f0;
            border-left: 2px solid #e2e8f0;
            padding: 20px 10px 0;
            position: relative;
        }
             .bar-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 20%;
            height: 100%;
            justify-content: flex-end;
            position: relative;
            z-index: 2;
        }

        .bar {
            width: 100%;
            transition: height 0.5s;
            border-radius: 4px 4px 0 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .bar-label {
            margin-top: 10px;
            font-size: 0.8rem;
            font-weight: bold;
            text-align: center;
        }
		
        .threshold-line {
            position: absolute;
            left: 0;
            width: 100%;
            border-top: 2px dashed #ef4444;
            z-index: 1;
        }
		
		  .info-box {
            background: #fcf8e3;
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }
		
		
		.comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .comparison-table th { background: #2c3e50; color: white; padding: 12px; }
        .comparison-table td { border-bottom: 1px solid #eee; padding: 12px; }
        .comparison-table tr:last-child td { border-bottom: none; }
        .comparison-table .icon-cell { text-align: center; width: 50px; font-size: 1.2rem; }
		
		
		 /* Personnalisation du conteneur du quiz pour s'intégrer au style limites_PPRI */
        .quiz-container {
            max-width: 900px;
            margin: -60px auto 60px auto; /* Chevauchement sur le header */
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            position: relative;
            z-index: 20;
        }

        .option-btn {
            transition: all 0.2s ease;
            border: 2px solid #f1f5f9;
        }
        .option-btn:hover:not(:disabled) {
            border-color: #3b82f6;
            background-color: #eff6ff;
        }
        .option-btn.selected {
            border-color: #3b82f6;
            background-color: #ebf8ff;
            font-weight: 700;
        }

        /* Couleurs de statut pour les résultats */
        .status-red { background: linear-gradient(135deg, #be123c 0%, #e11d48 100%); }
        .status-orange { background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%); }
        .status-green { background: linear-gradient(135deg, #047857 0%, #10b981 100%); }
		
		
		 /* 2. REGIONS CARDS */
        .region-card {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 30px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .region-info h3 { margin-top: 0; color: var(--secondary); }
        .source-tag { font-size: 0.75rem; color: #95a5a6; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; margin-bottom: 5px; display: block;}
		
		@media (max-width: 768px) {
            .region-card { grid-template-columns: 1fr; }
            .bar-group { width: 18%; }
        }
		
		
		.bar-container {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
		
		.compare-bar {
            height: 6px;
            border-radius: 3px;
            position: relative;
        }
        .cb-current { background: var(--bar-current); opacity: 0.6; }
        .cb-future { background: var(--bar-future); }
		 .leg-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; }
		
		 .compare-legend {
            display: flex;
            gap: 15px;
            font-size: 0.7rem;
            color: #7f8c8d;
            margin-bottom: 10px;
            justify-content: flex-end;
        }