
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
     }

    html, body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      height:100%;
     
        }

    body{
        display:flex;
        flex-direction:column;
        scrollbar-width: none; 
        overflow: auto;
        }

    body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

    header {
        top:0; 
        left:0;
        width:100%;
        z-index:1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background-color: #11ccff;
        border-bottom: 1px solid #ddd;
        flex-wrap: wrap;
        }

    main {
        flex:1;
        margin-top:0;
        padding: 2rem;
        font-size: 1.4rem;
        overflow-y: auto;
        max-width: 1280px;
        margin: 0 auto;
        padding: 2rem;
        font-size: 1.4rem;
     }

     .justifie {
      text-align: justify;
    }

    h3 {
        color: #000000;
      font-size: 1.20rem;
      margin-top: 2rem;
    }

    .logos {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }


    .logos img {
      max-width: 100%;
    }

    .logos img:first-child {
      height: 12rem;
      width: auto;
    }

    .logos img:last-child {
      height: 6rem;
      width: auto;
    }

    .title {
      font-size: 2.4rem;
      font-weight: bold;
      flex-grow: 1;
      text-align: center;
      color: white;
    }

    .lang-icon {
      width: 3rem;
      height: 2rem;
      flex-shrink: 0;
    }

     .liste-avec-image {
        display: flex;
        align-items: center; /* Centre verticalement */
        justify-content: flex-start;
        gap: 2rem;
        margin-top: 2rem;
        margin-left: 5rem;
        flex-wrap: nowrap; /* Facultatif : évite le retour à la ligne */
    }


    .liste-textuelle {
      flex: 1;
      min-width: 250px;
      
    }

    .image-liste img {
      max-width: 570px;
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      border-color: red;
    }

    .map-container {
      position: relative;
      width: 100%;
      max-width: 924px;
      margin: auto;
      border-color: red;
    }

    .map-container img {
      width: 100%;
      height: auto;
      display: block;
      border-color: red;
    }

    .clickable-area {
      position: absolute;
      display: block;
      z-index: 2;
    }

    .insp { top: 25%; left: 62%; width: 15%; height: 25%; }
    .mpq  { top: 56%; left: 77%; width: 20%; height: 20%; }
    .ens  { top: 54%; left: 24%; width: 23%; height: 11%; }
    .lux  { top: 72%; left: 10%; width: 35%; height: 6%; }
    .pgg  { top: 73%; left: 52%; width: 18%; height: 20%; }

@media (max-width: 760px) {
    header {
        flex-direction: column;
        align-items: center;
        }

    .title {
        font-size: 1.25rem;
        margin: 0.5rem 0;
        order: 2;
        width: 100%;
        }
    h3{
        font-size:1rem;
    }

    .liste-avec-image {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 1rem;
}

    .logos {
        order: 1;
        justify-content: center;
        width: 100%;
        margin-bottom: 0.5rem;
        }

    .logos img:first-child {
        height: 6rem;
        width: auto;
        }

    .logos img:last-child {
        height: 4rem;
        width: auto;
        }

    .lang-icon {
        width:2rem;
        height: 1rem;
        order: 3;
        margin-bottom: 0.5rem;
        }
    
    main {
        padding: 0.25rem;
        }
    .lang-mail-container {
    order: 3;
    margin-bottom: 0.5rem;
}


}

.lang-mail-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.mail-link {
    font-size: 0.75rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    word-break: break-word;
}

.mail-link:hover {
    color: #003366;
    text-decoration: underline;
}

