.site-footer{
    background-color: #fff;
    color: #000;
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
}

.footer-content{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;

    width: 90%;
    margin: 0 auto;
}

.container-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.footer-menu{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    max-width: 250px;
}

.footer-menu-address{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.footer-menu h3 {
    font-size: 15px;
    font-weight: 500;
    color: #655C57;
    margin: 0;
    padding: 0;
    position: relative; /* Needed for positioning the ::after */
    text-align: left;
    text-transform: uppercase;
    font-family: "Segoe UI SemiBold";
}

.footer-menu h3::after {
    content: ""; /* Creates the line */
    display: block;
    width: 80%; /* Adjust the line's width */
    height: 3px; /* Line thickness */
    background-color: #D62598; /* Line color */
    position: absolute;
    bottom: -5px;
    left: 0; /* Align to the left */
}


.footer-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-menu ul li{
    margin: 0;
    padding: 0;
}

.footer-menu ul li a,
.footer-menu p{
    color:#655C57;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-align: left;

    font-family: "Segoe UI Semilight";
}

.footer-menu-subcontainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.container-col{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items:center;
    gap: 40px;
}

.footer-social{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-bottom{
    background-color: #D62598;
    color: white;
    text-align: center;
    padding: 15px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-bottom a,
.footer-bottom span{
    color: white;
    font-family: "Segoe UI Semilight";
    font-size: 15px;
}


.separation-line{
    width: 4px;
    background-color: #D62598;
}

.footer-legal{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-legal a{
    font-size: 15px;
    font-weight: 200;
    text-align: center;

    color: #fff;
    text-decoration: underline;
}


.footer-logo img{
    width: 228px;
    height: auto;
}

.footer-icon{
    width: 50px;
    height: 50px;
}
.site-footer p{
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-break: normal;
    text-align: left;
    font-family: "Segoe UI Semilight";
}


#menu-footer-menu-entreprise-1{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;

    margin: 0;
}

#menu-footer-menu-entreprise-1 li:first-child{
    display: none;
}

#menu-footer-menu-entreprise-1 li{
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-footer-menu-entreprise-1 li a{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
    font-family: "Segoe UI SemiLight";
}

#menu-footer-menu-entreprise-1 li::after {
    content: "|"; /* Separator symbol */
    margin-left: 15px;
    color: #fff; /* Adjust color if needed */
}


@media screen and (max-width: 991px){
    .site-footer{
        margin-top: 30px;
        gap: 20px;
    }
    .footer-content{
        flex-direction: column-reverse;
        gap: 10px;
    }

    .footer-logo{
        display: none;
    }

    .container-menu{
        flex-direction: column;
        gap: 25px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-menu-subcontainer,
    .footer-menu,
    .footer-menu-address{
        align-items: center;
        justify-content: center;
    }

    .footer-menu{
        gap: 15px;
        max-width: fit-content;
    }

    .footer-menu ul,
    .footer-menu-address{
        max-width: 200px;
    }


    .container-menu h3,
    .container-menu p,
    .footer-products-menu,
    .footer-menu ul li{
        text-align: center;
    }

    .footer-menu ul li a{
        font-family: "Segoe UI Light";
        text-align: center;
    }

    .footer-bottom .container{
        padding: 0px;
    }

    #menu-footer-menu-entreprise-1{
        padding: 0;
    }

    .footer-legal{
        display: flex;
        flex-flow: row wrap;
        gap: initial;

        font-size: 14px;
    }

    #menu-footer-menu-entreprise-1 li a{
        font-size: 14px;
    }

    .container-menu p.bold{
        font-weight: 700;
        text-transform: uppercase;
        font-family: "Segoe UI SemiBold";
    }

}

