footer {
    background-color: #303235;
    color: #A0AEC0;
    padding: 30px 20px;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-coordonnees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
}

.footer-coordonnees p {
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-coordonnees i {
    margin-right: 0.5rem;
    color: #fefee2;
}

.footer-coordonnees a {
    color: #fefee2;
    text-decoration: none;
    margin-left: 0.3rem;
}

.footer-coordonnees a:hover {
    text-decoration: underline;
    color: white;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a,
.legal-links a {
    color: #A0AEC0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85em;
}

.social-links a:hover,
.legal-links a:hover {
    text-decoration: underline;
    color: white;
}

.copyright {
    color: #ffffff;
    font-size: 0.85em;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}

/* Responsive */
@media (min-width: 768px) {
    .footer-coordonnees {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}
