body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 防止橫向捲動 */
}

.carousel img {
  max-height: 400px; /* 最大高度 400px */
  height: auto; /* 自適應 */
  width: 100%; /* 確保圖片填滿 */
  object-fit: contain; /* 讓圖片完整顯示 */
}

h2 {
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', 'PingFang TC', sans-serif;
  font-weight: 700; /* 加粗 */
  letter-spacing: 1px; /* 增加字距 */
  text-align: center; /* 置中 */
  margin-top: 0;
  margin-bottom: 10px; /* 減少標題與表格間距 */
}

.product-card img {
  max-height: 250px;  /* 限制最大高度 */
  height: auto; /* 高度自適應 */
  object-fit: cover;  /* 確保圖片填滿不變形 */
  width: 100%; /* 確保圖片寬度適應卡片 */
}

.carousel-indicators {
  position: absolute;
  bottom: 5%; /* 調整指示器位置 */
  left: 50%;
  transform: translateX(-50%);
}

.container {
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.feature-box {
  text-align: center;
  padding: 10px;
}
.pricing-table {
  margin-top: 5px !important; /* 確保表格不被推遠 */
}
