footer {
    position: relative;
    background-color: #4B4FA4;
    color: white;
    font-family: Arial;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur et la hauteur */
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 20px; /
box-sizing: border-box;
}

.footer-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section nav a {
    font-size: 1em;
    line-height: 1.6; /* Espacement des lignes */
    margin: 5px 0;
    font-weight: 300;
    font-family: Arial;
}

.footer-section nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.footer-bottom-right {
    position: absolute; /* Position absolue par rapport à son conteneur relatif parent */
    right: 50px;
    bottom: 10px;
    text-align: right;
}

.footer-bottom-right a {
    color: white;
    text-decoration: none;
}

.footer-bottom-right a:hover{
    text-decoration: underline;
    transition: 0.5s;
}

.footer-section nav a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    footer {
        height: fit-content;
        padding:50px 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        padding: 10px;
    }

    .footer-section nav a {
        display: block;
        margin: 10px 0;
    }

    .footer-bottom-right {
        right: 20px;
        bottom: 10px;
    }
}
