    /* STYLES IDENTIQUES À CEUX QUE VOUS AVEZ DONNÉS */
    #fh5co-testimonials {
      padding: 80px 0;
    }

    .title-subtitle {
      text-align: center;
      margin-bottom: 60px;
    }

    .title-subtitle .title {
      font-size: 3rem;
      color: #542e2a;
      font-weight: bold;
    }

    .title-subtitle .subtitle {
      font-size: 1.5rem;
      color: #542e2a;
    }

    .testimonials-carousel-container {
      position: relative;
      width: 90%;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 60px;
      box-sizing: border-box;
    }

    .testimonials-carousel {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      width: 100%;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 20px;
      padding: 20px 0;
      touch-action: pan-y;
    }

    .testimonials-carousel::-webkit-scrollbar {
      display: none;
    }

    .testimonial-card {
      flex: 0 0 360px;
      min-width: 360px;
      max-width: 360px;
      background: white;
      border-radius: 1.5rem;
      box-shadow: 0 10px 30px rgba(84, 46, 42, 0.08);
      padding: 30px;
      scroll-snap-align: start;
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-content {
      font-size: 1.8rem;
      line-height: 1.7;
      color: #542e2a;
      margin-bottom: 25px;
      position: relative;
    }

    .testimonial-preview {
      max-height: 200px;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

    .testimonial-preview.expanded {
      max-height: 1000px;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: #e75623;
      font-size: 1.4rem;
      cursor: pointer;
      padding: 5px 0;
      margin-top: 10px;
      font-weight: 500;
      display: none;
    }

    .read-more-btn:hover {
      text-decoration: underline;
    }

    .testimonial-card.has-long-content .read-more-btn {
      display: block;
    }

    .testimonial-author {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .author-name {
      font-weight: bold;
      font-size: 1.8rem;
      color: #542e2a;
      margin: 0;
    }

    .author-role {
      font-size: 1.5rem;
      color: #e75623;
      margin: 0;
    }

    .testimonials-prev,
    .testimonials-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 48px;
      height: 48px;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 2rem;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: background 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      line-height: 1;
    }

    .testimonials-prev { left: 0; }
    .testimonials-next { right: 0; }

    .testimonials-prev:hover,
    .testimonials-next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    @media (max-width: 1200px) {
      .testimonial-card {
        flex: 0 0 calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .testimonials-carousel-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0 8px;
      }
      
      .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 16px;
      }

      .testimonials-prev,
      .testimonials-next {
        position: static;
        margin: 0 8px;
        display: inline-block;
        transform: none;
        width: 36px;
        height: 36px;
      }

      .testimonials-controls {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 16px;
      }
    }
