body {
  margin: 0px;
}

.swiper-section {
  text-align: center;
  margin-bottom: 24px;
  background-color: white; /* 預設白色 */
}

.swiper-section:nth-child(even) {
  background-color: #f0f0f0; /* 偶數為灰色，可以調整你想要的灰色 */
}

h2.section-title {
  width: 330px;
  padding-bottom: 6px;
  text-align: center;
  font-size: 28px;
  color: #00695c;
  margin: 20px 0;
  border-bottom: 2px solid #a2d9c6;
  display: inline-block;
}

.swiper {
  width: 100%;
}

.swiper-container-wrapper {
  position: relative;
  padding: 20px 60px;
  /* 留空間給箭頭 */
  margin: auto;
  box-sizing: border-box;
  /* Flexbox 垂直置中設定 */
  display: flex;
  align-items: center;
  /* 垂直置中 */
  justify-content: center;
  /* 水平置中（如果也需要） */
}

.swiper-slide {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.swiper-slide a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}


.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 770 / 590;
  background: #f0f0f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 等比縮放並完整顯示 */
  object-position: center;
}

.card-body h4 {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 16px;
  margin: 10px auto;
  color: #444;
}

.card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #00695c;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}