*{
    text-decoration: none;
}
a{
    color: aliceblue;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.logo img {
    width: 12%;
}
 .filter-container {
            padding: 10px;
            margin-bottom: 10px;
        }
           /* Conteneur des filtres */
        .filter-container {
            padding: 15px;
            background: #f8f8f8;
            border-radius: 8px;
            max-width: 500px;
            margin: 20px auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .filter-container h3 {
            text-align: center;
            margin-bottom: 15px;
        }

.header {
    background: #EB5C56;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #383D45;
    width: 100%;
    text-align: center;
    z-index: 2000;
}

.nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.main {
    height: 2000px;
    flex: 1;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.footer {
    background: #EB5C56;
    color: white;
    text-align: center;
    padding: 15px;
    bottom: 0;
    z-index: 1000;
}

.styled-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.styled-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #F3C137;
    margin: 10px auto 0;
    border-radius: 2px;
}
.data-source {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #444;
    background: linear-gradient(to right, #f0f0f0, #d9e4f5);
    padding: 10px 15px;
    border-left: 4px solid #0077cc;
    border-radius: 5px;
    display: inline-block;
    margin-left: 5%;
}
        #map {
            height: 600px;
            width: 90%;
            margin-left: 5%;
            margin-bottom: 50px;
        }

        /* Conteneur des filtres */
        .filter-container {
            padding: 15px;
            background: #f8f8f8;
            border-radius: 8px;
            max-width: 500px;
            margin: 20px auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .filter-container h3 {
            text-align: center;
            margin-bottom: 15px;
        }

        /* Style des cases à cocher */
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .checkbox-grid label {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            background: #fff;
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkbox-grid label:hover {
            background: #e0e0e0;
        }

        input[type="checkbox"] {
            accent-color: #007bff;
            width: 16px;
            height: 16px;
        }

        /* Style de la case "Afficher tous les projets" */
        .select-all {
            display: block;
            text-align: center;
            font-weight: bold;
            background: #F3C137;
            color: white;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .select-all input {
            margin-right: 8px;
        }

        .legend {
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .legend i {
            width: 18px;
            height: 18px;
            float: left;
            margin-right: 8px;
            opacity: 0.7;
        }

        .filter-container {
            padding: 10px;
            margin-bottom: 10px;
        }
    