 .u-section-1 {
  background-position: 50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-image: linear-gradient(to bottom, rgba(119, 170, 217, 0.5), rgba(119, 170, 217, 0.5)), linear-gradient(rgba(14, 71, 203, 0.8), rgba(14, 71, 203, 0.8));
  background-size: cover, cover;
}

.u-section-1 .u-sheet-1 {
  min-height: 901px;
}

.u-section-1 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 0;
}

.u-section-1 .u-layout-cell-1 {
  min-height: 841px;
}

.u-section-1 .u-container-layout-1 {
  padding: 16px 29px;
}

.u-section-1 .u-text-1 {
  margin: 14px auto 0 1px;
}

.u-section-1 .u-text-2 {
  margin: 20px 1px 0;
}

.u-section-1 .u-text-3 {
  margin: 50px 1px 0;
}

.u-section-1 .u-btn-1 {
  background-image: none;
  padding: 0;
}

@media (max-width: 1199px) {
   .u-section-1 {
    --color-var: #0e47cb;
  }

  .u-section-1 .u-sheet-1 {
    min-height: 779px;
  }

  .u-section-1 .u-layout-cell-1 {
    min-height: 693px;
  }

  .u-section-1 .u-text-2 {
    margin-right: 0;
  }

  .u-section-1 .u-text-3 {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 307px;
  }

  .u-section-1 .u-layout-cell-1 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }
} .u-section-2 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgb(119, 170, 217), rgb(119, 170, 217));
  background-size: cover;
}

.u-section-2 .u-sheet-1 {
  min-height: 202px;
}

.u-section-2 .u-text-1 {
  font-size: 1.875rem;
  width: 172px;
  margin: 32px auto 0;
}

.u-section-2 .u-image-1 {
  width: 1108px;
  height: 101px;
  margin: 5px auto 32px;
}

@media (max-width: 1199px) {
   .u-section-2 {
    --color-var: #0e47cb;
  }

  .u-section-2 .u-sheet-1 {
    min-height: 187px;
  }

  .u-section-2 .u-image-1 {
    width: 940px;
    height: 86px;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-sheet-1 {
    min-height: 167px;
  }

  .u-section-2 .u-image-1 {
    width: 720px;
    height: 66px;
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-sheet-1 {
    min-height: 151px;
  }

  .u-section-2 .u-image-1 {
    width: 540px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-sheet-1 {
    min-height: 132px;
  }

  .u-section-2 .u-text-1 {
    font-size: 1.5rem;
  }

  .u-section-2 .u-image-1 {
    width: 340px;
    height: 31px;
  }
}
/* ======================
   Styles pour le menu déroulant (version finale)
   ====================== */

 /* Conteneur du menu déroulant */
header .u-nav-item.dropdown {
  position: relative !important;
}

/* Menu déroulant (caché par défaut) */
header .u-nav-item.dropdown .dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: white !important;
  min-width: 200px !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
  z-index: 99999 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Afficher le menu au survol du parent */
header .u-nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
}

/* Style des liens dans le menu déroulant */
header .u-nav-item.dropdown .dropdown-menu li a {
  display: block !important;
  padding: 12px 16px !important;
  color: #333 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #eee !important;
}

/* Supprimer la bordure du dernier élément */
header .u-nav-item.dropdown .dropdown-menu li:last-child a {
  border-bottom: none !important;
}

/* Effet de survol sur les liens du menu déroulant */
header .u-nav-item.dropdown .dropdown-menu li a:hover {
  background-color: #f5f5f5 !important;
}

/* Zone de survol invisible (sans décalage visuel) */
header .u-nav-item.dropdown > a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; /* Zone invisible pour faciliter le survol */
  background: transparent;
}