
        /* Styles spécifiques pour la page Politique de Confidentialité */
        .privacy-hero-section {
            background: linear-gradient(rgba(44, 62, 73, 0.75), rgba(44, 62, 73, 0.95)), 
            url('../../banner/emera_confidentialite_2048x1150.jpg');
            background-size: cover;
            background-position: center;
            height: 40vh;
            min-height: 320px;
            display: flex;
            align-items: center;
            position: relative;
            margin-top: -50px;
        }
        
        .privacy-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .privacy-hero-content {
            z-index: 2;
        }
        
        .privacy-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);
        }
        
        .privacy-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;
        }
        
        .privacy-badge {
            background: var(--white-color);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow-hover);
        }
        
        .privacy-feature {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }
        
        .privacy-feature:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(80, 180, 50, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .privacy-article {
            border-bottom: 2px solid var(--light-gray);
            padding-bottom: 3rem;
            margin-bottom: 3rem;
        }
        
        .privacy-article:last-child {
            border-bottom: none;
        }
        
        .privacy-header {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 1rem;
        }
        
        .privacy-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        
        .privacy-date {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }
        
        .principles-list .principle-item {
            background: rgba(243, 215, 35, 0.05);
            border-left: 4px solid var(--primary-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .category-card {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            border-left: 4px solid var(--accent-color);
        }
        
        .category-title {
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .right-card {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .right-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-hover);
        }
        
        .right-icon {
            width: 70px;
            height: 70px;
            background: rgba(80, 180, 50, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .exercise-rights {
            background: linear-gradient(135deg, var(--accent-color) 0%, #42942a 100%);
        }
        
        .security-measures .measure-icon {
            flex-shrink: 0;
        }
        
        .recipient-card {
            background: var(--white-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .dpo-contact {
            background: linear-gradient(135deg, var(--dark-color) 0%, #3a5366 100%);
        }
        
        @media (max-width: 768px) {
            .privacy-hero-title {
                font-size: 2.2rem;
            }
            
            .privacy-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .privacy-title {
                font-size: 1.5rem;
            }
            
            .measure-item {
                flex-direction: column;
                text-align: center;
            }
            
            .measure-icon {
                margin: 0 auto 1rem !important;
            }
        }

        .bullet-point {
    display: inline-block;
    font-weight: bold;
    color: #007bff; 
    font-size: 1.5rem;
    line-height: 1;
}

.measure-bullet {
    min-width: 24px;
    text-align: center;
}