    /* NOUVEAU FOOTER DESIGN */
        .enterprise-footer {
  background:#f7f7f7;
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .enterprise-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.01)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .footer-main {
            max-width: 90%;
            margin: 0 auto;
            padding: 50px 20px 30px;
            position: relative;
            z-index: 2;
        }

      
        /* Section Liens et Services */
        .footer-links-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            color: #6b2a1e;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #863c2f, #6b2a1e);
            border-radius: 2px;
        }

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

        .footer-column ul li {
            margin-bottom: 15px;
            transform: translateX(0);
            transition: all 0.3s ease;
        }

        .footer-column ul li:hover {
            transform: translateX(10px);
        }

        .footer-column ul li a {
            color: #000000;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-column ul li a::before {
            content: '▶';
            color: #6b2a1e44;
            margin-right: 10px;
            font-size: 12px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #6b2a1e;
        }

        .footer-column ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }


         .footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(61, 59, 59, 0.6); 
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
}



        .footer-legal {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #6b2a1e;
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            color: #5f271d;
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        .footer-copyright {
            color: #000000;
            font-size: 14px;
        }

        .footer-copyright a {
            color: #6b2a1e;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }
.footer-accreditation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-accreditation img {
    max-width: 60px; /* taille du logo */
    height: auto;
    display: block;
}

.footer-accreditation p {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

        @media (max-width: 1200px) {
            .footer-links-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .footer-links-section {
                grid-template-columns: 1fr;
            }
            
            .contact-social-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .social-media {
                gap: 15px;
            }

            .company-story-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .story-header h3 {
                font-size: 24px;
            }
        }