.footerSec {
    height: auto;
    width: 100%;
    padding: 50px 0;
    background-color: #f8f9fa; /* Ajouter un fond clair si nécessaire */
}

.leftFooter,
.middleFooter,
.RightFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    border-right: 1px solid #000;
    text-align: center;
}

.leftFooter {
    border-right: 1px solid #000;
}

.middleFooter {
    border-right: 1px solid #000;
}

.RightFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: none;
}

.contactFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contactFooter ul li {
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.contactFooter ul li i {
    font-size: 25px;
    padding-right: 10px;
}

.contactFooter ul li:hover {
    color: #cb111c;
}

.Icons ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.Icons ul li {
    color: #000;
    font-weight: bold;
    padding: 0 10px;
    font-size: 25px;
}

.Icons ul li i:hover {
    color: #cb111c;
    cursor: pointer;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
}

hr.mobile-hr {
    display: none;
}

.highlight-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
  }

  .advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .advantage-item {
    background-color: #cb111c;
    border-radius: 10px;
    padding: 20px;
    max-width: 250px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
  }

  .advantage-item:hover {
    transform: translateY(-10px);
  }

  .advantage-icon {
    font-size: 40px;
    color: #fff;
    
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }

  .advantage-title {
    font-size: 20px;
    margin: 10px 0;
    color: white;
  }

  .advantage-description {
    font-size: 14px;
    color: white;
  }

  .advantage-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
  }

  .advantage-link:hover {
    color: #555;
  }
  .testimonials-container {
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.testimonials-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: calc(100% / 3 - 20px);
    flex-shrink: 0;
    position: relative;
}

.testimonial-content {
    position: relative;
    padding-bottom: 40px; /* espace pour l'auteur */
}

.icon-stars {
    display: flex;
    align-items: center;
}

.icon {
    font-size: 20px;
    margin-right: 5px;
    color: #cb111c;
}

.stars {
    color: #cb111c;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

.author {
    color: #cb111c;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.google-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
}

.navigation {
    margin-top: 20px;
}

.nav-prev, .nav-next {
    font-size: 24px;
    cursor: pointer;
    margin: 0 15px;
    color: #888;
}

.nav-prev:hover, .nav-next:hover {
    color: #007bff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonial {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 480px) {
    .testimonial {
        width: calc(100% - 20px);
    }

    .nav-prev, .nav-next {
        font-size: 20px;
        margin: 0 10px;
    }

    .testimonials-container h2 {
        font-size: 20px;
    }

    .testimonial p {
        font-size: 14px;
    }

    .author {
        font-size: 12px;
    }

    .icon, .stars {
        font-size: 18px;
    }
}


@media screen and (max-width: 767px) {
    .leftFooter,
    .middleFooter,
    .RightFooter {
        border-right: none;
        border-bottom: 1px solid #000;
        margin-bottom: 20px;
    }

    .RightFooter {
        border-bottom: none;
    }

    hr.mobile-hr {
        display: block;
        border-top: 1px solid #eee;
        width: 100%;
    }
}
