footer {
    background: #ffffff;
    color: #5a6c7d;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #e5e7e9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7e9;
}

.footer-section h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.9rem;
}

.footer-section a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #004d33;
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: #007B5A;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
     background: #f0f2f4;
    border: 1px solid #e5e7e9;
    border-radius: 8px;
    color: #5a6c7d;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #004d33;
    border-color: #004d33;
    color: white;
    transform: translateY(-2px);
}

/* Footer bas */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: #8395a7;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}