
        /* Styles spécifiques pour la page CGU */
        .cgu-hero-section {
            background: linear-gradient(rgba(44, 62, 73, 0.8), rgba(44, 62, 73, 0.95)), 
            url('../../banner/emera_cgu_2048x2048.jpg');
            background-size: cover;
            background-position: center;
            /* height: 40vh; */
            min-height: 320px;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: 0px;
        }
        
        .cgu-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .cgu-hero-content {
            z-index: 2;
        }
        
        .cgu-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);
        }
        
        .cgu-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;
        }
        
        .cgu-nav-container {
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        
        .cgu-nav-scroll {
            display: inline-flex;
            gap: 1rem;
            padding: 0.5rem 0;
        }
        
        .cgu-nav-link {
            padding: 0.5rem 1.5rem;
            background: var(--white-color);
            border-radius: 50px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .cgu-nav-link:hover {
            background: var(--primary-color);
            color: var(--dark-color);
            border-color: var(--primary-color);
        }
        
        .cgu-article {
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 3rem;
            margin-bottom: 3rem;
        }
        
        .cgu-article:last-child {
            border-bottom: none;
        }
        
        .cgu-article-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .cgu-article-number {
            width: 60px;
            height: 60px;
            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;
        }
        
        .cgu-article-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 0;
        }
        
        .acceptance-card, .service-item-card, .ip-card, .responsibility-card, 
        .highlight-card, .jurisdiction-info {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }
        
        .acceptance-card:hover, .service-item-card:hover, .ip-card:hover, 
        .responsibility-card:hover, .highlight-card:hover, .jurisdiction-info:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }
        
        .service-item-card {
            text-align: center;
        }
        
        .service-item-card .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(243, 215, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .account-rules, .user-obligations, .authorized-uses, .user-responsibility, 
        .modification-process, .data-highlights {
            background: rgba(243, 215, 35, 0.05);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .obligation-icon {
            width: 24px;
            flex-shrink: 0;
        }
        
        .ip-rights {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .cgu-hero-title {
                font-size: 2.2rem;
            }
            
            .cgu-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .cgu-article-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .cgu-article-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .cgu-article-title {
                font-size: 1.5rem;
            }
            
            .services-grid, .ip-rights {
                grid-template-columns: 1fr;
            }
            
            .cgu-nav-link {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }
   