/* Assurez-vous que le conteneur parent occupe toute la largeur */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

.bluecom-banner-container {
    position: relative;
    width: 100vw; /* Utilisez 100vw pour prendre toute la largeur de la fenêtre */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #00305B; /* Ajoutez un fond pour le conteneur */
}

/* Styles pour le bandeau */
.bluecom-banner {
    display: flex;
    width: 100%;
}

.bluecom-banner-left,
.bluecom-banner-right {
    width: 50%;
}

.bluecom-banner-left img {
    width: 100%;
    height: auto;
}

.bluecom-banner-right {
    background-color: #00305B;
    color: #FFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
}

.bluecom-banner-right h2 {
    margin: 0;
    font-size: 25px;
    font-family: Kanit;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 112% */
    color: #FFF;
}

.bluecom-banner-right .separator {
    width: 84px;
    height: 2px;
    background: #00A6E2;
    margin: 10px 0;
}

.bluecom-banner-right p {
    margin: 0;
    font-size: 16px;
    font-family: Kanit;
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 175% */
    color: #FFF;
}