.site-footer {
    background-color: #2e2e2e; 
    color: #c4c4c4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: #92a02b; 
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #c4c4c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff; 
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #92a02b; 
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #a8b835; 
    transform: scale(1.1);
}

/* Séparation et Copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid #444444; 
    text-align: center;
    font-size: 12px;
    color: #888888; 
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }
}
