.servicePage {
  /*max-width: 1100px;*/
  margin: 0 auto;
  padding: 40px 20px;
}

.pageHeader h1 {
  text-align: center;
  color: #4ea6c8;
  margin-bottom: 50px;
}

.contentBlock {
  margin-bottom: 60px;
}

.contentBlock h2 {
  color: #e47878;
  margin-bottom: 16px;
  font-size: 22px;
}

.contentBlock p {
  line-height: 1.9;
  color: #333;
}

.contentBlock.highlight {
  background: #f8f8f8;
  padding: 30px;
  border-left: 6px solid #4ea6c8;
}



.imageSlider {
  overflow: hidden;
  width: 100%;
  margin: 50px 0;
}

.sliderTrack {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}

.sliderTrack img {
  height: 360px;
  margin-right: 20px;
  border-radius: 12px;
  object-fit: cover;
}

/* 關鍵動畫 */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 滑過暫停 */
.imageSlider:hover .sliderTrack {
  animation-play-state: paused;
}

/* 手機 */
@media (max-width: 768px) {
  .sliderTrack img {
    height: 220px;
  }
}





.photoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photoGrid.aa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photoGrid .Img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .photoGrid, .photoGrid.aa {
    grid-template-columns: repeat(1, 1fr);
  }
}




.wrap > .contentBox.index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrap > .contentBox.index > .leftBox {
  width: 23%;
  padding-left: 0;
  /*padding-right: 85px;*/
  margin-right: 2%;
  background: #eee;
}
.wrap > .contentBox.index > .rightBox {
  width: 75%;
}
@media (max-width: 1023px) {
  .wrap > .contentBox.index > .leftBox {
    width: 100%;
    padding-right: 0px;
    margin-right: 0;
  }
  .wrap > .contentBox.index > .rightBox {
    width: 100%;
  }
}



#photo-gallery{
  column-count: 3;
  column-gap: 10px;
  width: 100%; 
  margin:0 auto;
}
#photo-gallery img{
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
#photo-gallery{
  column-count: 2;
}
}