ul.v-list {
      list-style: none; /* Supprime les puces */
      padding-left: 0;
    }

    ul.v-list li {
      position: relative;
      padding-left: 1.5em; /* Espace pour le ✓ */
      margin-bottom: 0.5em;
    }

    ul.v-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #193d8b;
      font-weight: bold;
    }


 
/* Slider logos */

 .slider-container {
      overflow: hidden;
      width: 100%;
      padding: 40px 0;
    }

    .slider-track {
      display: flex;
      gap: 50px;
      animation: scroll 60s linear infinite;
    }

    .slider-track img {
      height: 140px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.5s;
    }

    .slider-track img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Dupliquer les logos pour boucle fluide */
    .slider-track-wrapper {
      display: flex;
      width: max-content;
    }


.btn-primary-estimation {
    color: #fff;
    background-color: var(--color-primary, #ED7458);
}

.btn-primary-estimation:hover {
 background-color: #fcfbf9;
 border: 1px solid #f5a439; 
 color: #f5a439; 
}

    .row-btn {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .button-box {
      display: flex;
      align-items: center;
      background-color: white;
      color: #0e2a5a;
      font-style: italic;
      font-weight: bold;
      padding: 0;
      text-decoration: none;
      width: 250px;
      height: 60px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .icon-btn {
      background-color: orange;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 100%;
      font-size: 18px;
    }

    .label {
      flex: 1;
      text-align: center;
      font-size: 14px;
      color: #193d8b; 
    }

    @media (max-width: 768px) {
      .row-btn {
        flex-direction: column;
        align-items: center;
      }
    }

.row-btn a {
opacity: 1!important;
}

.btn-contact {
    background-color: #193d8b;
    padding-bottom: 45px;
    padding-top: 20px;
}






    .cards-container {
      display: flex;
    justify-content: space-between;
      flex-wrap: wrap;
    }


    @media (max-width: 768px) {
    .cards-container {
      gap: 40px; 
    justify-content: center;
    text-align: center;
    }
}

    .card {
      background-color: white;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card .top-content {
      flex-grow: 1;
    }

    .card .icon {
      font-size: 36px;
      margin-bottom: 16px;
      color: #f48f09;
    justify-self: center;
    }

    .card h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #333;
    justify-self: center;
text-align: center;
line-height: normal;
    }

    .card p {
      font-size: 15px;
      color: #666;
      margin-bottom: 20px;
    justify-self: center;
    }

    .cta-button {
      display: inline-block;
      background-color: #f48f09;
      color: white;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 14px;
      transition: background-color 0.2s;
      text-align: center;
    }

a.cta-button:hover {
color: #ffffff;
}

a.cta-button:active {
color: #ffffff;
}

.radio-inline.radio-contact+.radio-inline.radio-contact {
    margin-left: 0px;
}
.radio-inline.radio-contact+.radio-inline.radio-contact+.radio-inline.radio-contact {
    margin-left: 10px;
}
@media (max-width: 767px) {
   .radio-inline.radio-contact+.radio-inline.radio-contact {
       margin-left: 0px;
   }
   .radio-inline.radio-contact+.radio-inline.radio-contact+.radio-inline.radio-contact {
       margin-left: 0px !important;
   }
}