footer {
            text-align: center;
            padding: 25px 20px;
            background: white;
            border-radius: 0;
            box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer p {
            color: #6c757d;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #6c757d;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #FFBD59;
        }

        /* Icônes réseaux sociaux dans le footer */
        .footer-social {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .footer-social-icon {
            width: 24px;
            height: 24px;
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-social-icon:hover {
            color: #FFBD59;
        }

        .footer-social-icon svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }