/* ===================================
   第六區塊：內容展示
   =================================== */

.section6-content-display {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  /* 背景圖使用 background-attachment: fixed 實現固定效果 */
  background-image: url("https://cdn.chainee.io/camp/section6_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  scroll-margin-top: 100px;
  padding-top: 15vh;
  padding-bottom: 10vh;
}

/* 前景長圖容器 */
.section6-image-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.section6-image-wrapper img {
  width: 70%;
  height: auto;
  display: block;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .section6-image-wrapper img {
    width: 100%;
  }
}
