        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       	@font-face {
		  font-family: 'TitreSite';
		  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap;
		}

        body {
		  line-height: 1.7;
		  font-weight: 400;
		  font-size: 1rem; 
		  color:#454545;
		  font-family:Open Sans, sans-serif;
        }
		
		h1, h2, h3, h4, h5,
		.h1, .h2, .h3, .h4, .h5 {
		  font-family: "TitreSite", sans-serif;
		  text-transform: uppercase; 
		}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Top */
        .header-top {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lang-switch {
            cursor: pointer;
            font-size: 24px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            font-size: 14px;
        }

        .contact-info a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-info a:hover {
            color: #2563eb;
        }

        /* Navigation */
        nav {
            background: #141146;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #93c5fd;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: #f3f4f6;
            padding: 15px 0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb-content a {
            color: #2563eb;
            text-decoration: none;
        }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

        .breadcrumb-content span {
            color: #6b7280;
        }

        /* Page Header */
		
			/* Background Page */
			.slide1 {
				background-image: url('../images/slide1.jpg');
				background-size: cover;
				background-position: center;
			}
			.slide2 {
				background-image: url('../images/slide2.jpg');
				background-size: cover;
				background-position: center;
			}
			.slide3 {
				background-image: url('../images/slide3.jpg');
				background-size: cover;
				background-position: center;
			}
		
		
        .page-header {
            /*background: linear-gradient(135deg, #141146 0%, #3b82f6 100%);*/
            color: #fff;
            padding: 60px 0;
            text-align: center;
			text-shadow: 1px 1px 2px black;
        }

        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            font-size: 32px;
            color: #141146;
            margin-bottom: 20px;
        }

        .content-section h3 {
            font-size: 24px;
            color: #141146;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .content-section p {
            margin-bottom: 15px;
            color: #4b5563;
            font-size: 16px;
        }

        .content-section ul, .content-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .content-section li {
            margin-bottom: 10px;
            color: #4b5563;
        }

        /* Highlight Box */
        .highlight-box {
            background: #eff6ff;
            border-left: 4px solid #2563eb;
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .highlight-box h3 {
            color: #141146;
            margin-top: 0;
        }

        /* CTA Section */
         .cta-section {
            background: #eff6ff;
            border: 2px solid #93c5fd;
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            margin-top: 60px;
        }

        .cta-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #141146;
        }

        .cta-section p {
            color: #4b5563;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: #141146;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            transition: background 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            background: #141146;
        }

        .cta-button.secondary {
            background: #fff;
            color: #141146;
            border: 2px solid #141146;
        }

        .cta-button.secondary:hover {
            background: #f0f9ff;
        }

        /* Related Links */
        .related-links {
            background: #f9fafb;
            padding: 40px;
            border-radius: 8px;
            margin-top: 40px;
        }

        .related-links h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #141146;
        }

        .related-links ul {
            list-style: none;
            padding: 0;
        }

        .related-links li {
            margin-bottom: 10px;
        }

        .related-links a {
            color: #2563eb;
            text-decoration: none;
        }

        .related-links a:hover {
            text-decoration: underline;
        }
		
		/* Actualites */
		
		 /* Styles de base - À adapter à votre charte graphique */
        .actualites-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .actualites-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .actualites-header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            color: #333;
        }
        
        .actualites-header p {
            font-size: 1.1em;
            color: #666;
        }
        
        /* Section "À la une" */
        .section-une {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            color: #333;
            border-bottom: 3px solid #667eea;
            padding-bottom: 10px;
        }
        
        .actualite-une {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .actualite-une:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .actualite-une-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .actualite-une-content {
            padding: 30px;
        }
        
        .actualite-badge-une {
            display: inline-block;
            background: #ffd700;
            color: #856404;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .actualite-une-title {
            font-size: 2em;
            margin-bottom: 15px;
            color: #333;
        }
        
        .actualite-date {
            color: #999;
            font-size: 0.9em;
            margin-bottom: 20px;
        }
        
        .actualite-extrait {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .actualite-lien {
            display: inline-block;
            color: #667eea;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .actualite-lien:hover {
            color: #764ba2;
        }
        
        /* Grille des actualités normales */
        .actualites-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .actualite-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .actualite-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }
        
        .actualite-card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .actualite-card-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            color: white;
        }
        
        .actualite-card-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .actualite-card-title {
            font-size: 1.4em;
            margin-bottom: 10px;
            color: #333;
            line-height: 1.3;
        }
        
        .actualite-card-extrait {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
            flex: 1;
        }
        
        /* Message si aucune actualité */
        .no-actualites {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }
        
        .no-actualites-icon {
            font-size: 4em;
            margin-bottom: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .actualites-header h1 {
                font-size: 2em;
            }
            
            .actualite-une-image {
                height: 250px;
            }
            
            .actualite-une-title {
                font-size: 1.5em;
            }
            
            .actualites-grid {
                grid-template-columns: 1fr;
            }
            
            .actualite-card-image {
                height: 200px;
            }
        }

        /* Footer */
        footer {
            background: #454545;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            color: #FFF;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #141146;
                padding: 20px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .content-section h2 {
                font-size: 26px;
            }

            .cta-section {
                padding: 30px 20px;
            }
        }
