<style>
  .slider-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }

  .slider-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    
  }

  .swiper {
    width: 100%;
    padding: 20px 60px 60px;
  }

  .swiper-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
  }

  /* 自訂箭頭按鈕樣式 */
  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(204, 151, 151, 0.95);
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
    color: #080808;
    font-weight: bold;
  }

  .swiper-button-disabled {
    opacity: 0.4;
  }

  /* 自訂分頁指示點樣式 */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
  }

  /* RWD 響應式圖片高度 */
  @media (max-width: 991px) {
    .swiper-slide img {
      height: 200px;
    }
  }

  @media (max-width: 767px) {
    .swiper-slide img {
      height: 180px;
    }
    .swiper {
      padding: 20px 50px 60px;
    }
    .swiper-button-next,
    .swiper-button-prev {
      width: 40px;
      height: 40px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
    }
  }

  @media (max-width: 575px) {
    .swiper-slide img {
      height: 150px;
    }
  }
</style>