  <!-- CSS principal -->
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #fff;
    }

    /* Header */
    header {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    /* DEBUT HAMBURGER */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

/* NOUVEAU : Logo */
.logo {
  height: 40px;
  width: auto;
  max-width: 200px;
      transform: scale(1.5); /* Agrandit le logo de 50% */
    transform-origin: center; /* Centre le point d'origine de la transformation */
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
    }

/* NOUVEAU : Menu hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #2c5aa0;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Animations du hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu mobile overlay */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

/* FIN HAMBURGER */

    nav a {
      text-decoration: none;
      color: #2c5aa0;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      background: #f0f4f8;
      color: #1a4480;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: #f8f9fa;
      padding: 0.75rem 2rem;
      border-bottom: 1px solid #e9ecef;
    }

    .breadcrumb-list {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
    }

    .breadcrumb-item a {
      color: #2c5aa0;
      text-decoration: none;
    }

    .breadcrumb-separator {
      color: #666;
    }

    /* Hero Section Actualités */
    .hero {
      background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
      color: white;
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
    }

.cta-nav {
      background: #28a745;
      color: white !important;
      border-radius: 5px;
    }

    .cta-nav:hover {
      background: #218838 !important;
      color: white !important;
    }
	
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .hero .subtitle {
      font-size: clamp(1rem, 3vw, 1.3rem);
      margin-bottom: 1.5rem;
      opacity: 0.9;
      font-weight: 300;
    }

    /* Sections */
    .section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: #2c5aa0;
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
    }

    .section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: #28a745;
      border-radius: 2px;
    }

    /* Filtres par catégorie */
    .category-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
    }

    .filter-btn {
      background: #f8f9fa;
      color: #2c5aa0;
      border: 2px solid #e9ecef;
      padding: 0.7rem 1.5rem;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: #2c5aa0;
      color: white;
      border-color: #2c5aa0;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    }
	
    /* Grid d'articles */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .article-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 1px solid #f0f4f8;
      position: relative;
	    display: flex;
  flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
	
	.article-card[style*="display: none"] {
		display: none !important;
	}

    .article-image {
      width: 100%;
      height: 200px;
      /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #2c5aa0;
      position: relative;
      overflow: hidden;
    }
	
	.article-image img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover; /* Pour maintenir les proportions */
	  display: block;
	}

    .article-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
}

    .article-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: #666;
    }

    .article-category {
      background: #28a745;
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.75rem;
      font-weight: 600;
    }

.article-category-bleu{
      background: #3498db;
      color: white;
}

.article-category-orange{
      background: #e67e22;
      color: white;
}

.article-category-fushia{
      background: #ad1457;
      color: white;
}

.article-category-violet{
      background: #9b59b6;
      color: white;
}

.article-category-turquoise{
      background: #1abc9c;
      color: white;
}

.article-category-gris{
      background: #34495e;
      color: white;
}

.article-category-rose{
      background: #e91e63;
      color: white;
}
.article-category-rouge{
      background: #e74c3c;
      color: white;
}

    .article-date {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .article-card h3 {
      color: #2c5aa0;
      font-size: 1.4rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .article-excerpt {
      color: #666;
      line-height: 1.6;
      margin-bottom: auto;
    }

    .read-more {
      color: #2c5aa0;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
	  margin-left: auto;
    }

    .read-more:hover {
      color: #1a4480;
      gap: 0.8rem;
    }

    /* Articles à la une */
    .featured-articles {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 3rem 2rem;
      margin-bottom: 4rem;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .featured-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      position: relative;
    }
	
.featured-card::before {
  content: '⭐';
  position: absolute;
  top: 1rem;
  right: 1rem;
  /* background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%); */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}
</style>
<style>
@media (max-width: 1045px){
/* DEBUT HALBURGER */
  .nav-container {
    padding: 0,75rem;
  }
  
  .logo {
    height: 35px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
	
  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 0;
    gap: 0;
    margin-top: 80px;
	display: flex; /* Ajouté */
  }

  nav li {
    border-bottom: 1px solid #f0f4f8;
  }
	
nav a {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background: #f0f4f8;
    padding-left: 2.5rem;
  }
  
  /* Réorganise l'ordre sans changer l'HTML */
  nav li:nth-child(1) { order: 2; } 
  nav li:nth-child(2) { order: 3; } 
  nav li:nth-child(3) { order: 4; } 
  nav li:nth-child(4) { order: 5; } 
  nav li:nth-child(5) { order: 6; } 
  nav li:nth-child(6) { order: 7; } 
  nav li:nth-child(7) { order: 1; } /* Rdv en premier */
  nav li:nth-child(8) { order: 8; } 
  
  /* Style spécial pour le premier élément affiché */
  nav li:nth-child(7) .cta-nav {
    margin: 0 2rem 1rem 2rem;
    padding: 1.2rem 2rem;
  }
  
/* FIN HAMBURGER */

      .hero {
        padding: 2rem 1rem;
      }

      .section {
        padding: 3rem 1rem;
      }

      .breadcrumb {
        padding: 0.75rem 1rem;
      }

      .featured-articles,

      .articles-grid {
        grid-template-columns: 1fr;
      }

      .category-filters {
        gap: 0.5rem;
      }

      .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }	  
}
</style>
<style>
@media (max-width: 480px) {
  nav {
    width: 100%;
    right: -100%;
  }

.logo {
    height: 30px;
  }
}
</style>