
/* banner */
/* partial preview banner */
.hero-image.slider {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
  padding: 10px;
}

.slides-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slides-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  flex: 0 0 70%; /* 原本是 80%，縮小一點 */
  margin: 0 5px; /* 原本是 10px，讓間距更小 */
  transition: transform 0.5s, opacity 0.5s;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-image.slider .nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 44px;
  cursor: pointer;
  user-select: none;
}
.hero-image.slider .nav.prev { left: 5%; }
.hero-image.slider .nav.next { right: 5%; }
.hero-image.slider .nav:hover {
  background: rgba(0,0,0,0.6);
}


.content {
  max-width: 1200px;
  margin: auto;
}

.service-flow {
  max-width: 1200px;
  text-align: center;
  padding: 0 20px;
  margin: auto;
}

.service-flow h1 {
  color: var(--main);
}
.pricing h2 {
  margin-bottom: 30px;
}

.service-flow h1,
.pricing h2 {
  text-align: center;
}

.service-flow h1,
.pricing h2,
.blog-section h2 {
  font-size: 36px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1000px;
  margin: auto;
}

.step {
  flex: 1 1 calc(20% - 16px); /* 每行最多5個，留間距 */
  min-width: 150px;
  max-width: 200px;
}

.step img {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin: 0 auto 8px;
  display: block;
}

.step-title {
  font-weight: bold;
  color: var(--alert);
  margin: 8px 0 4px;
  font-size: 18px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.4;
}

.notice {
  line-height: 1.5;
  margin: 30px auto;
}

.pricing {
  background: var(--light);
  padding: 40px 20px;
}

table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 10px;
  border-collapse: collapse;
  background: white;
}
th, td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  font-size: 18px;
}
table ul {
  padding-left: 20px;
}

.disclaimer {
  text-align: center;
  font-size: 16px;
  color: var(--alert);
}

.blog-section {
  padding: 40px 16px;
}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
   .steps .step:nth-child(-n+2) {
    flex: 1 1 45%;
  }

  /* .steps .step:nth-child(n+3) {
    flex: 1 1 33.33%;
  } */

  .steps {
    justify-content: center;
    gap: 12px;
  }

  .slide {
    flex: 0 0 90%;
    margin: 0 6px;
  }
  .hero-image.slider .nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 36px;
  }

}
@media (max-width: 480px) {
  
}