body, html {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #8b9cad;
            color: var(--text);
        }
        .actualites-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .actualite {
            display: none;
            background-color: #f5f5f5;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .actualite.active {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .actualite-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .actualite-date {
            color: #666;
            font-size: 0.9em;
        }
        
        .images-slider {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }
        
        .image-container {
            position: relative;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .image-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .actualite-image {
            max-width: 100%;
            max-height: 400px;
            object-fit: contain;
        }
        
        .image-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
        }
        
        .image-prev {
            left: 10px;
        }
        
        .image-next {
            right: 10px;
        }
        
        .image-indicators {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .image-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }
        
        .image-dot.active {
            background-color: white;
        }
        
        .actualite-contenu {
            line-height: 1.6;
        }
        
        .actualite-contact {
            background-color: #e7e7e7;
            padding: 10px;
            border-radius: 4px;
        }
        
        .navigation-actualites {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .navigation-actualites button {
            padding: 8px 15px;
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .navigation-actualites button:hover {
            background-color: #1a252f;
        }
        
        .indicateurs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }
        
        .indicateur {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
        }
        
        .indicateur.active {
            background-color: #2c3e50;
        }
        
        .default-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
            background-color: #f8f9fa;
            border-radius: 4px;
        }
        
        .default-image {
            max-width: 100%;
            max-height: 300px;
            border: 1px dashed #ccc;
        }