u    body {
        font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
           
            margin: 0;
            padding: 20px;
            background-color: #f8f9fa;
        }
        /* TITRE ET DECORATION */
        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            letter-spacing: 1.5px;
            font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
            text-transform: uppercase;
            margin: 0;
        }
        .decorative-line {
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, #2980b9, #3498db);
            border: none;
            margin: 12px auto 0 auto;
            border-radius: 2px;
        }
        /* ORGANIGRAMME */
        .org-chart {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .level {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            position: relative;
            width: 100%;
        }
        .node {
            background: white;
            border: 2px solid;
            border-radius: 8px;
            padding: 20px 15px;
            margin: 0 15px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            width: 220px; /* Largeur fixe */
            position: relative;
            transition: transform 0.3s ease;
            word-wrap: break-word; /* Retour à la ligne forcé */
            overflow-wrap: break-word; /* Retour à la ligne forcé */
        }
        .node:hover {
            transform: translateY(-5px);
        }
        .maire {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            border-color: #1a252f;
        }
        .adjoint {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-color: #2472a4;
        }
        .staff {
            background: #ffffff;
            border-color: #d6eaf8;
            color: #2c3e50;
        }
        .chef-cabinet {
            background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
            border-color: #45b39d;
            color: #1a5276;
        }
        .sp {
            background: #fef9e7;
            border-color: #f9e79f;
        }
        .maire-container {
            position: relative;
            display: flex;
            align-items: flex-start;
            padding-bottom: 60px;
        }
        .sp-container {
            position: absolute;
            left: 100%;
            top: 90px;
            margin-left: 30px;
        }
        .connector {
            position: absolute;
            background: #bdc3c7;
        }
        .vertical {
            width: 2px;
            height: 50px;
            bottom: -50px;
            left: 50%;
        }
        .sp-connector {
            width: 30px;
            height: 2px;
            background: #bdc3c7;
            position: absolute;
            right: -30px;
            top: 70px;
        }
        .node-title {
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 0.8em;
            white-space: normal; /* Permet le retour à la ligne */
        }
        .photo-placeholder {
            width: 110px;
            height: 130px;
            background: linear-gradient(145deg, #ececec, #dfdfdf);
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
            font-size: 0.9rem;
            user-select: none;
        }
        .person-name {
            font-weight: 100;
            color: inherit;
            white-space: normal; /* Permet le retour à la ligne */
        }
        @media (max-width: 992px) {
            .level {
                flex-wrap: wrap;
            }
            .node {
                width: 180px; /* Largeur fixe pour tablette */
                margin: 10px;
            }
        }
        @media (max-width: 768px) {
            .level {
                flex-direction: column;
                align-items: center;
                margin-bottom: 30px;
            }
            .node {
                margin: 10px 0;
                width: 80%;
                max-width: 250px; /* Largeur maximale pour mobile */
            }
            .sp-container {
                position: static;
                margin: 30px 0 0 0;
                top: auto;
                left: auto;
            }
            .maire-container {
                padding-bottom: 0;
                flex-direction: column;
                align-items: center;
            }
            .vertical, .sp-connector {
                display: none;
            }
            .photo-placeholder {
                width: 100px;
                height: 120px;
            }
        }
