
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      overflow-x: hidden;
    }

    body {
      padding-top: 80px;
      font-family: 'Montserrat', 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: #222;
    }

    
  /* mettre une image en background sur la div */
  .section-hero{
  position:relative;
  height:100vh;
  background-image: url('../img/background-1.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  color:white;
}

  .section-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5); /* overlay sombre */
  }

  .section-hero h1{
    font-size: 40px;
    position:relative;
    z-index:2;
    text-align: center;
  }
  .section-hero h2{
    font-size: 25px;
    position:relative;
    z-index:2;
    text-align: center;
  }
  .section-hero p{
    font-size: 16px;
    position:relative;
    z-index:2;
    padding: 20px;
    text-align: justify;
  }

  .section-hero ul{
    font-size: 16px;
    position:relative;
    z-index:2;
    text-align: left;
  }

  .btn-verification{
    background: #d656d6;
    color: #141414;
    padding: 20px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  .btn-verification:hover{
    background: #f492f7;
    color: #fff;
    text-decoration: none;
  }


    h3, h4, .nav-links a {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }

    /* Boutons */
    button, .btn {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }

    /* NAVBAR FIXE */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #f5f5f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    /* PARTIES */
    .nav-left {
      display: flex;
      align-items: center;
    }

    .nav-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-right {
      display: flex;
      align-items: center;
    }

    /* LOGO */
    .logo {
      color: white;
      font-size: 22px;
      font-weight: bold;
    }

    /* MENU */
    .nav-links {
      list-style: none;
      display: flex;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: #141414;
      text-decoration: none;
      padding: 10px 18px;
      display: block;
    }

    .nav-links a:hover {
      color: #0036c2;
      border-radius: 6px;
    }

    /* DROPDOWN A GAUCHE */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #f5f5f0;
      min-width: 180px;
      border-radius: 6px;
      overflow: hidden;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu li a {
      padding: 12px;
    }

    /* BOUTON DROITE */
    .btn {
      background: #0036c2;
      color: white;
      padding: 8px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn:hover {
      background: #05226f;
      color : white;
    }

    /* HAMBURGER */
    .menu-toggle {
      display: none;
      width: 30px;
      height: 25px;
      position: relative;
      cursor: pointer;
      margin-right: 20px;
    }

    .menu-toggle span {
      position: absolute;
      width: 100%;
      height: 3px;
      background: #141414;
      left: 0;
      transition: 0.3s;
    }

    .menu-toggle span:nth-child(1) {
      top: 0;
    }

    .menu-toggle span:nth-child(2) {
      top: 10px;
    }

    .menu-toggle span:nth-child(3) {
      top: 20px;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 10px;
      background: #141414;
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 10px;
      background: #141414;
    }

    /* RESPONSIVE */
    @media(max-width:1300px) {

      .img-fluid{
        width: 142px;
        height: 24px;
      }

      .section-hero h1{
    font-size: 32px;
  }
  .section-hero h2{
    font-size: 18px;
  }
  .section-hero p{
    font-size: 14px;
    text-align: center;
  }
  .section-hero ul{
    font-size: 14px;
    text-align: left;
    padding: 0 20px;
  }
  .btn-verification{
    font-size: 16px;
  }
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 250px;
        height: 100%;
        background: #f5f5f0;
        flex-direction: column;
        transition: 0.4s;
        padding-top: 20px;
      }

      .nav-links.active {
        left: 0;
      }

      .dropdown-menu {
        position: static;
      }

      .dropdown:hover .dropdown-menu {
        display: none;
      }

      .dropdown.active .dropdown-menu {
        display: block;
      }

      .menu-toggle {
        display: block;
      }

      .btn {
         margin-right : -20px;
         padding: 8px 12px;
         font-size: 14px;
      }
    }

    .services-hero{
      background: linear-gradient(135deg, #0036c2, #05226f);
      color:#fff;
      text-align:center;
      padding:100px 20px 60px;
    }

    .services-hero h1{
      font-size:40px;
      font-weight:bold;
      margin-bottom:20px;
    }

    .services-hero p{
      max-width:800px;
      margin:auto;
      font-size:16px;
    }

    .services-section{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:30px;
      padding:60px 20px;
      background:#f5f5f9;
    }

    .service-card{
      background:#fff;
      width:320px;
      padding:30px;
      border-radius:10px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
      transition:0.3s;
      text-align:center;
    }

    .service-card:hover{
      transform:translateY(-6px);
    }

    .service-card h3{
      font-size:20px;
      margin-bottom:15px;
      color:#0036c2;
    }

    .service-card p{
      font-size:14px;
      color:#444;
    }

    @media(max-width:768px){
      .services-hero h1{
        font-size:28px;
      }

      .service-card{
        width:100%;
        max-width:400px;
      }
    }
