body {
  font-family: "Microsoft JhengHei", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  text-align: center;
  line-height: 1.6;
}

/* 頁首 */
header {
  background: #222;
  color: white;
  padding: 40px 20px;
}

header h1 {
  font-size: 40px;  /* 大標題 */
  margin: 0;
}

header h2 {
  font-size: 20px;  /* 副標題 */
  margin-top: 20px;
}

header p {
  font-size: 16px;  /* 頁首介紹文字 */
}

/* 輪播提示文字 */
.swiper-tip {
  font-size: 14px;
  margin: 20px 0;
}

/* 輪播容器 */
.swiper {
  width: 100%;
  max-width: 800px;
  height: 70vh;
  margin: auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* 輪播圖片 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.vr360-container {
    margin: 40px auto;
    width: 800px;         /* 桌機固定 */
    max-width: 100%;      /* 手機自適應 */
    border-radius: 30px;
    overflow: hidden;
    background: #fff;     /* 白底才能顯示陰影 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* 加深陰影 */
  }

  .vr360-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
  }
</style>

/* 分頁圓點 */
.swiper-pagination-bullet {
  background: #ff6600;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff0000;
}

/* 價格方案 */
#pricing h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

#pricing p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.plan-box {
  background: white;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 200px;
}

.plan-box h3 {
  font-size: 24px;
}

.plan-box .price {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  color: #555;
  width: fit-content;
  text-align: left;
  font-size: 16px;
}

/* LINE 按鈕 */
.line-btn a {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 50px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid #00ff40;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: #06C755;
}

.line-btn a:hover {
  background: #04a944;
}

/* 聯絡資訊 */
.contact-info {
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-top: 20px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

/* 三個白色價格框的容器 */
.pricing {
  display: flex;
  justify-content: center;
  gap: 2px;   /* 框與框之間的距離 */
  margin-bottom: 40px; /* 底部留白 */
}

/* 每個價格框 */
.pricing .card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1;
  max-width: 300px; /* 控制最大寬度 */
}

/* LINE 按鈕獨立區塊 */
.line-btn {
  display: inline-block;
  padding: 10x 20x;
  background: #06C755;
  color: white;
  font-size: 1.2em;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 60px; /* 與上面白色框保持距離 */
}

/* 響應式設定 */
@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  p  { font-size: 14px; }
  img { max-width: 100%; height: auto; }
}

/* 隱藏電腦版箭頭 */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* FAQ 區塊 */
#faq {
  max-width: 500px;        /* FAQ 區塊最大寬度 */
  margin: 0 auto 80px;     /* 讓區塊水平置中 */
  padding: 20px;
  text-align: left;        /* 內文靠左 */
}

#faq h2 {
  text-align: center;      /* FAQ 標題置中 */
  margin-bottom: 5px;
}

.faq-item {
  margin-bottom: 0px;      /* 問答區塊間距縮小 */
}

.faq-item h3 {
  margin: 0px 0;           /* 問題上下間距縮小 */
}

.faq-item p {
  margin: 0px 0 10px;      /* 答案間距縮小 */
}
