 
        /* Styles spécifiques pour la page Mentions Légales */
        .legal-hero-section {
            background: linear-gradient(rgba(44, 62, 73, 0.9), rgba(44, 62, 73, 0.75)),
                        url('../../banner/emera_mentions_legales_2048x2048.jpg');
            background-size: cover;
            background-position: center;
             
            height: 40vh;
            min-height: 320px;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -50px;
        }
        
        .legal-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .legal-hero-content {
            z-index: 2;
        }
        
        .legal-hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .legal-hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .toc-card {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .legal-article {
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 2rem;
        }
        
        .legal-article:last-child {
            border-bottom: none;
        }
        
        .article-header {
            display: flex;
            align-items: center;
            gap: 1rem;
        } 
        
        .article-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .article-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 0;
        }
        
        .info-card {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            border: 1px solid var(--accent-color);
        } 
        
        .table th {
            background-color: rgba(243, 215, 35, 0.1);
            border-color: #dee2e6;
        }
        
        @media (max-width: 768px) {
            .legal-hero-title {
                font-size: 2.2rem;
            }
            
            .legal-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .article-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
        }
   
    