.part2 {
    margin-top: 50px;
}

.part2-img {
    margin-bottom: 50px;
}

.part2-ul {
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    list-style: none;
}

.part2-li {
    margin-bottom: 12px;
}

.part2-li:last-child {
    margin-bottom: 0;
}

.part2-a {
    text-decoration: none;
    font-size: x-large;
    white-space: nowrap; /* 確保文字同一行顯示 */
}

.part3-pic {
    padding: 0 0;
}

.img-overlay-container {
    position: relative;
    overflow: hidden; /* 防止超出邊界 */
    aspect-ratio: 4 / 3;
  }

  /* 半透明遮罩＋文字置中 */
  .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* 半透明黑色 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0; /* 預設隱藏 */
    transition: opacity 0.4s ease;
  }

  /* 滑鼠移入時顯示 overlay */
  .img-overlay-container:hover .img-overlay {
    opacity: 1;
  }

  /* 讓圖片在 hover 時略微放大一點（視覺更有動感） */
  .img-overlay-container img {
    transition: transform 0.6s ease;
  }
  .img-overlay-container:hover img {
    transform: scale(1.05);
  }

.part3-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-info {
  padding-left: 36px;
}

/* 共用 .content 樣式：兩側留白並在小螢幕減少空白 */
.content {
  padding-left: 150px;
  padding-right: 150px;
  padding-top: 120px;
  box-sizing: border-box;
}

/* 讓 .content 內的圖片大小一致且能響應 */
.content img {
  width: 100% !important; /* 覆寫 inline width/height，讓圖片充滿容器 */
  height: auto !important;
  max-width: 100%;
  display: block;
  margin: 0 auto 1rem auto;
  object-fit: cover;
}

@media (max-width: 992px) {
  .content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .content {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 60px;
  }
}
.carousel-caption h1 {
  /* 保持響應式字號，但移除所有裝飾，呈現為純文字 */
  font-size: clamp(1.25rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0;
  display: block;
  color: #fff;
  text-shadow: none; /* 明確移除 text-shadow */
  background: transparent; /* 移除半透明背景 */
  padding: 0; /* 移除內距 */
  border-radius: 0; /* 移除圓角 */
}

/* 讓 carousel caption 在所有尺寸保持水平置中並靠近底部顯示 */
.carousel-caption {
  position: absolute; /* 覆蓋或明確化位置行為 */
  left: 0;
  right: 0;
  bottom: 8%; /* 默認靠下的位置（可調） */
  text-align: center; /* 使內部文字在中間 */
  padding: 0 1rem; /* 防止文字緊貼邊緣 */
  transform: none; /* 避免 translate 導致跑位 */
}

/* 在非常小的螢幕上微調位置與字距 */
@media (max-width: 480px) {
  .carousel-caption {
    bottom: 1rem; /* 向上移動以避免與控制器重疊 */
    padding: 0 0.75rem; /* 稍微減少左右內距 */
  }
  .carousel-caption h1 {
    font-size: 1.1rem;
    padding: 0; /* 保持無額外效果 */
  }
}