.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden; /* Скрываем контент, выходящий за границы */
  }
  
  .testimonials-carousel-inner {
    display: flex;
    transition: transform 0.5s ease; /* Анимация для переключения слайдов */
  }
  
  .testimonial-item {
    flex: 0 0 100%; /* Каждый отзыв занимает 100% ширины контейнера */
    padding: 20px;
    box-sizing: border-box; /* Учитываем padding и border в ширине */
  }
  
  .testimonial-content {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: #555;
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10; /* Убедитесь, что кнопки поверх слайдов */
  }
  
  .carousel-control.prev {
    left: 10px;
  }
  
  .carousel-control.next {
    right: 10px;
  }
  
  /* Адаптация для мобильных устройств */
  @media (max-width: 768px) {
    .testimonial-content {
      padding: 15px;
    }
  
    .testimonial-content p {
      font-size: 14px;
    }
  
    .testimonial-author {
      font-size: 12px;
    }
  
    .carousel-control {
      font-size: 16px;
      padding: 8px 12px;
    }
  }
  