* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.logo-container {
    padding: 30px;
    background: white;
    text-align: center;
}

.logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contact-info {
    margin-top: 10px;
    font-size: 24px;
    color: #000000;
}

.content {
    margin-top: 15px;
}

h1 {
    font-size: 30px;
    color: #438bc9;
    margin-bottom: 20px;
    border-bottom: 2px solid #438bc9;
    padding-bottom: 10px;
}

.image {
    width: 65%;
    height: auto;
    order: 2;
}

.image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
}

.text {
    width: 80%;
    padding-left: 200px;
    text-align: left;
    order: 1;
}
.container {
    display: flex;
    flex-direction: row; /* Aligne les éléments sur une ligne */
    align-items: center;
    justify-content: center;
    text-align: justify;
    width: 120%;
    max-width: 1500px;
    background: white;
    margin: 0 auto;
    padding: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

p {
    font-size: 17px;
    color: #000000;
    margin-top: 10px;
}

body
/* Barre de navigation */
.navbar {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ddd;
    position: relative;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 15px;
}

.nav-item {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    color: black;
}

.nav-item.active {
    color: black;
    border-bottom: 2px solid #439cc9;
}

/* Carrousel */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
  }
  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .carousel-container .slide {
    min-width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
  .carousel-container .slide.active {
    display: flex;
  }
  .carousel-container .slide .image img {
    max-width: 50%;
    height: auto;
    border-radius: 5px;
}
.image {
    width: 50%;
    height: auto
}

  .carousel-container .slide .text {
    padding: 25px;
    max-width: 500px;
}
  .carousel-container .slide .text h2 {
    margin-top: 0;
    color: #000000;
}
  .carousel-container .slide .text p {
    color: #000000;
}

/* Ligne bleu sous l'onglet actif */
.nav-underline {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #439cc9;
    width: 160px; /* Ajustable selon le texte */
    transition: transform 0.3s ease-in-out;
}
.partenaires {
    padding: 40px 0;
    background-color: #ddd;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}


.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logos-container img {
    width: 180px; /* Ajustez la taille selon vos besoins */
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.width-20-percent{
    width: 20% !important;
}

.display-flex{
    display: flex;
    gap: 30px;
    align-items: center;
}

.flex-elements{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.width-100-percent{
    width: 100% !important;
}

.width-50-percent{
    width: 50% !important;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 40px 20px;
        width: 100%;
    }

    .text {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .image {
        width: 100%;
    }

    .carousel-container .slide {
        flex-direction: column;
    }

    .carousel-container .slide .text {
        padding: 10px;
        text-align: center;
    }

    .display-flex {
        flex-direction: column;
        gap: 15px;
    }

    .flex-elements {
        justify-content: center;
    }

    .logos-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-info {
        font-size: 16px;
        padding: 10px;
    }
}