footer {
    background: #0d1b2a;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 9999;
}


footer.footer-contact {
padding-top: 70px; /* ou plus selon le rendu */
}


.promo-banner {
    background: linear-gradient(90deg, #0871d3, #043f99, rgb(0, 151, 0));
    color: white;
    padding: 30px;
    position: relative;
    top: -60px;
    width: 70%;
    margin: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    max-width: 100vw;

    z-index: 10;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
}
.promo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.promo-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(-40%);
}
.promo-list {
display: flex;
gap: 50px;
align-items: center;
position: relative;
transform: translateY(-10%);
max-width: 100%;
flex-wrap: wrap;
justify-content: center;
}

.promo-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.checkmark {
    font-size: 18px;
    color: white;
    margin-right: 8px;
}
.cta-button {
    background: rgba(0 ,0 ,0 ,0.1);
    border: solid 1px white;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
}
.cta-button .arrow {
    margin-left: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 100vw;
    margin: auto;
    padding: 0;
    margin-bottom: 40px;
    width: 70%;

}

.footer-logo img {
    height: 35px;
    margin-left: 6%;
}


.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgb(102, 102, 102);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #4d9ef7;
}

.social-section {
    width: 100%; /* S'assurer que la section prend toute la largeur */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto; /* Évite tout décalage */
    padding: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%; /* Assure un bon centrage */
    margin: 0 auto; /* Évite les marges indésirables */
    padding: 0;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    padding: 0;
}

.social-icon {
    width: 30px;
    height: auto;
    transition: 0.3s;
}

.social-icon:hover {
    opacity: 0.6;
}


.footer-bottom {
    text-align: center;
    padding: 5px;
    background: #091726;
    font-size: 11px;
}

@media (max-width: 1200px) {

    .promo-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

}



@media (max-width: 768px) {
    .promo-banner {
        width: 60%;
        padding: 40px;
        top: -90px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 10px;
    }

    .promo-content {
        flex-direction: column;
        padding: 0;
    }

    .promo-text {
        align-items: center;
    }

    .promo-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-button {
        margin-top: 15px;
        padding: 12px 20px;
    }

    .footer-container {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
    }

    .footer-logo img {
        margin-left: 0;
    }

    .social-links {
        justify-content: center;
    }
}