/* ---------- Global --------------*/
* {
    margin: 0;
}


/* ---------- Fonts --------------*/
h1, h2, h3 {
    font-family: "Calibri", sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1 {
    font-size:24px;
    color: #212529;
}

h2 {
    font-size:24px;
    color: #c0d235;
}

p, li {
    font-family: "Calibri", sans-serif;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    color: #7A7A7A;
}

a {
    color: #333333;
}

/* ---------- Layout --------------*/
header {
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

footer {
    border-top: 1px solid #333;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .left,
footer .right {
    flex: 1;
}

footer .right {
    text-align: right;
}

main {
    padding: 60px;
    text-align: center;
}

  
/* ---------- Carte --------------*/
.map-container {
    margin-top: 30px;
}

.map-container img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* ---------- Legende --------------*/
.map-legend {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.legend-item {
    text-align: center;
    max-width: 200px;
}

.legend-item img {
    max-width: 100%;
    height: auto;
}

.legend-item p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
}



/* ---------- Mentions Legales --------------*/
.mentions-legales {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.mentions-legales p {
    font-size: 22px;
}