.footer-dark {
    background-color: #1c1f22;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-col {
    flex: 1;
    min-width: 180px;
    color: #fff;
}
.left-col {
    flex: 0 0 25%;
    max-width: 25%;
    margin-left: 20px;
}
.footer-dark h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.footer-dark p, .footer-dark ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.8;
}
.footer-dark p i {
    margin-right: 12px;
}
.footer-dark ul a {
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
}
.footer-dark ul a:hover {
    color: #fff;
}
.footer-dark .item.social div {
    margin-top: 15px;
}
.footer-dark .item.social a {
    color: #bbb;
    margin: 0 15px;
    font-size: 24px;
}
.footer-dark .item.social a:hover {
    color: #fff;
}
.footer-dark .copyright {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        flex: 1 1 100%;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    .left-col {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
}

/* Reserve de l'espace au bas des pages pour le footer afin d'éviter qu'il ne chevauche le contenu */
.content {
    padding-bottom: 220px;
    box-sizing: border-box;
}

/* Si le footer est plus petit sur mobile, réduire l'espace réservé */
@media (max-width: 767px) {
    .content { padding-bottom: 160px; }
}