fuite.css
.fuite{
  padding:10px 0 30px;
}

.back-home{
  padding:12px 0;
}

.back-home a{
  font-weight:600;
  color:#1a66c7;
}

.fuite-banner{
  width:100%;
  height:340px;
  border-radius:22px;
  margin:10px 0 25px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(13,62,119,.55), rgba(13,62,119,.35)),
    url("images/recherche-de-fuite.jpg") center/cover no-repeat;
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}

.fuite-banner__content{
  position:absolute;
  left:28px;
  bottom:28px;
  color:#fff;
}

.fuite-banner__content h1{
  margin:0;
  font-size:2.3rem;
  font-weight:900;
}

.fuite-box{
  background:#fff;
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.fuite-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:15px;
}

.fuite-card{
  background:#f8fbff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 15px rgba(0,0,0,.05);
}

.fuite-card h3{
  margin:0 0 8px;
  color:#0d3e77;
}

.fuite-highlight{
  background:#eef5fd;
  border-left:5px solid #1a66c7;
  padding:18px;
  border-radius:14px;
  margin:20px 0;
}

.fuite-phone{
  margin-top:15px;
  font-weight:800;
  color:#0d3e77;
}

.fuite-cta{
  margin-top:20px;
}

@media (max-width:800px){
  .fuite-grid{
    grid-template-columns:1fr;
  }
}