    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #e6f0ff;
      color: #003366;
    }

    header {
      background-color: #004080;
      padding: 0;
      border-bottom: 4px solid #0073e6;
    }

    nav {
      display: flex;
      justify-content: center;
    }

    .menu {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
    }

    .menu > li {
      position: relative;
    }

    .menu > li > a {
      color: white;
      padding: 0.8rem 1.2rem;
      display: block;
      text-decoration: none;
      transition: background 0.3s ease;
      font-weight: 600;
      border-bottom: 4px solid transparent;
    }

    .menu > li > a:hover {
      background-color: #0059b3;
    }

    .menu > li > a.active {
      background-color: #0073e6;
      font-weight: bold;
      border-bottom: 4px solid #0073e6;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #0059b3;
      list-style: none;
      min-width: 200px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 0 0 6px 6px;
      z-index: 10;
    }

    .submenu li a {
      padding: 0.75rem 1rem;
      display: block;
      color: white;
      text-decoration: none;
    }

    .submenu li a:hover {
      background-color: #0073e6;
    }

    .menu > li:hover .submenu {
      display: block;
    }

    main {
      padding: 2rem;
      max-width: 1000px;
      margin: auto;
    }

    .carousel {
      position: relative;
      max-width: 100%;
      height: 400px;
      margin-bottom: 2rem;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-track a {
      min-width: 100%;
    }

    .carousel-track img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .carousel-controls {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 0.5rem;
      z-index: 2;
    }

    .carousel-button {
      background-color: rgba(0, 0, 0, 0.4);
      border: none;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
    }

    .intro {
      text-align: center;
    }

    .intro h1 {
      font-size: 2rem;
      color: #003366;
      margin-bottom: 1rem;
    }

    .intro p {
      font-size: 1.2rem;
      color: #004080;
    }

    @media (max-width: 768px) {
      .top-header {
      justify-content: flex-start;
    }

    .banner-image {
      display: none;
    }
      nav {
        flex-direction: column;
        align-items: center;
      }

      .menu {
        flex-direction: column;
        width: 100%;
      }

      .menu > li {
        width: 100%;
        text-align: center;
      }

      .submenu {
        position: static;
        box-shadow: none;
        border-radius: 0;
      }

      .carousel-track img {
        height: auto;
      }
    }

    .actualites {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.actualites h2 {
  color: #003366;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #0073e6;
  padding-bottom: 0.5rem;
}

.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.articles article {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  transition: box-shadow 0.3s ease;
}

.articles article:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.articles img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin-bottom: 0.75rem;
  object-fit: cover;
  height: 180px;
}

.articles h3 {
  margin-bottom: 0.5rem;
}

.articles h3 a {
  color: #004080;
  text-decoration: none;
  font-weight: 700;
}

.articles h3 a:hover {
  text-decoration: underline;
}

.articles p {
  color: #003366;
  font-size: 0.95rem;
  line-height: 1.3;
}
.no-click {
  cursor: default;
  pointer-events: none;  /* désactive le clic */
  color: white;
  padding: 1rem 1.2rem;
  display: block;
  font-weight: 600;
}

/* --- Top header --- */
  .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004080;
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 50px;
    width: auto;
  }

  .banner-image img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }

  .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }

    .contact-info {
      flex: 1;
      min-width: 250px;
    }

    .map {
      flex: 2;
      min-width: 300px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    h1 { text-align: center; font-size: 2rem; margin: 1.5rem 0; }
    p { line-height: 1.6; margin-bottom: 1.5rem; }
    .downloads a {
      display: inline-block;
      background: #0073e6;
      color: #fff;
      padding: 0.6rem 1rem;
      border-radius: 4px;
      text-decoration: none;
      margin-right: 1rem;
      margin-bottom: 1rem;
    }
    .downloads a:hover { background: #005bb5; }