
    /* ==== RESET ==== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
      list-style-type: none;
    }



    body {
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
    }

   /* ===== NAVBAR STYLES IMPORTED FROM navbar.css ===== */


        /* ===== NAVBAR 
        STYLES IMPORTED FROM navbar.css ===== */
        a {
          text-decoration: none;
          color: inherit;
        }
        
        .show {
          display: flex;
        }
          


        .container .navbar{
          width:95%;
          margin: auto;
          display:flex;
          align-items: center;
          justify-content: space-between;
        }

        .menu-icon {
          display: none;
          font-size: 26px;
          cursor: pointer;
          color: #000;
        }

        @media (max-width: 850px) {

          nav ul {
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--primary-blue);
            flex-direction: column;
            display: none;
            text-align: center;
            padding: 15px 0;
          }



          .menu-icon {
            display: block;
          }
        }

         @media (min-width: 850px){
          .nav-links{
            display: flex;
            gap:15px
          }
         }


    /* ==== CARROUSEL ==== */
    .carousel {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 30px auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .carousel img {
      width: 100%;
      display: none;
    }
    .carousel img.active {
      display: block;
    }
    .carousel-buttons {
      text-align: center;
      margin: 10px 0;
    }
    .carousel-buttons button {
      background: #004080;
      color: #fff;
      border: none;
      padding: 10px 18px;
      margin: 5px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }
    .carousel-buttons button:hover {
      background: #ffcc00;
      color: #004080;
    }

    /* ==== SECTIONS ==== */
    section {
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    section h2 {
      margin-bottom: 15px;
      font-size: 1.8rem;
      color: #004080;
    }
    section p {
      margin-bottom: 15px;
      font-size: 1rem;
    }

    /* ==== VALEURS ==== */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .value-card {
      background: #f1f7ff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
    }
    .value-card:hover {
      transform: translateY(-5px);
    }
    .value-card i {
      font-size: 2rem;
      color: #004080;
      margin-bottom: 10px;
    }

    /* ==== BOUTON BROCHURE ==== */
    .btn-download {
      display: inline-block;
      background: #004080;
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
      font-weight: bold;
    }
    .btn-download:hover {
      background: #ffcc00;
      color: #004080;
    }

    /* ==== FOOTER ==== */
footer {
  background: #004080;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3, .footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.footer-col p {
  margin: 8px 0;
  color: #ccc;
}

.footer-col i {
  margin-right: 8px;
  color: #ffcc00;
}

.socials a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

