/* Style de base pour la bannière - toutes tailles d'écran */
.banner-background {
    background-color: #f6f9fe; /* Couleur de fond de repli */
    min-height: 400px;
}

@media (max-width: 768px) {
    .banner-content {
        text-align: center !important;
        padding: 30px 15px !important;
    }

    .banner-heading {
        font-size: 2rem !important;
        padding-bottom: 20px !important;
    }
    .banner-text-container {
        width: 100%;
    }

    .banner-logo {
        padding: 20px 15px !important;
        order: -1; /* Met le logo en haut sur mobile */
        width: 100%;
        text-align: center;
    }

    .banner-logo img {
        max-height: 250px !important;
    }

    .banner-background {
        background-image: url("../img-intelligent-networks/banner-bg-01-sysupVG.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .banner-content {
        padding: 40px 20px !important;
    }

    .banner-logo {
        padding: 40px 20px !important;
        width:40%;
        text-align: center;
    }

    .banner-logo img {
        max-height: 350px !important;
    }
    .banner-text-container {
        padding-top: 25px;
        width: 60%;
    }
    .banner-background {
        background-image: url("../img-intelligent-networks/banner-bg-01-sysupVG.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

@media (min-width: 1025px) {
    .banner-content {
        padding: 60px 30px !important;
    }

    .banner-logo {
        padding: 60px 30px !important;
        width:40%;
        text-align: center;
    }
    .banner-logo img {
        max-height: 350px !important;
    }
    .banner-text-container {
        width: 60%;
        padding-top: 25px;
    }
    .banner-background {
        background-image: url("../img-intelligent-networks/banner-bg-01-sysupVG.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

/* CUBE */

.cube-container {
    max-width: 80%;
    display: flex;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.cube-icon {
    font-size: 35px;
}


@media only screen and (min-width: 701px) {
    .cube{
        width:200px;
        text-align: center;
    }
    .cube-icon {
        font-size: 40px;
        margin-bottom: 13px;
    }
}

@media only screen and (max-width: 700px) {
    .cube{
        width:100%;
        text-align: left;
    }
    .cube-icon {
        text-align: center;
    }
    .cube-text {
        text-align: center;
    }

}