        /* RESET ET BASES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family:  'Roboto', 'Montserrat', 'Lato', 'Open Sans';
            background-color: #919fac;
            color: #333;
            line-height: 1.6;
        }
        a{
            text-decoration: none;
             color: black;
        }
        /* STRUCTURE PRINCIPALE */
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 20px auto;
            display: grid;
            grid-template-areas:
                "header header"
                "top-left top-right"
                "middle middle"
                "stats stats"
                "projects projects";
            grid-template-columns: 2fr 1fr;
            gap: 10px;
        }

        header {
            grid-area: header;
            background-color: #2d73b9;
            color: white;
            text-align: center;
        }

        .search-bar {
            margin-top: 15px;
            display: flex;
            justify-content: center;
        }

        .search-bar input {
            padding: 10px 15px;
            width: 60%;
            max-width: 500px;
            border: none;
            border-radius: 4px 0 0 4px;
        }

        .search-bar button {
            padding: 10px 20px;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        /* ZONES DE CONTENU */
        .zone {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            max-height: auto;
        }

        .top-left {
            grid-area: top-left;
            display: grid;
            grid-template-rows: 0.85fr 1fr;
            gap: 20px;
            
        }

        .top-right {
            grid-area: top-right;
            height: 100%;
        }

        .middle {
            grid-area: middle;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .stats {
            grid-area: stats;
            padding: 30px;
            text-align: center;
        }

        .projects {
            grid-area: projects;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* ELEMENTS INTERNES */
        .content-block {
            padding: 20px;
        }

        .category {
            display: inline-block;
            background: rgba(251, 79, 41, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        h2 {
            color: #0d0443;
            margin: 10px 0;
            font-size: 1.3rem;
        }

        p {
            margin: 10px 0;
            font-size: 0.95rem;
            color: #010007;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .stat-item {
            background: #e9f7fe;
            padding: 15px;
            border-radius: 8px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00356B;
            margin-bottom: 5px;
        }