/* 全域字型設定（也可以拿掉，改成接你原站字型） */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", "PingFang TC", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 橘色背景區塊 */
.hero-cta {
  color: #ffffff;
  padding: 240px 20px 80px 20px;
  text-align: center;
}

/* 內層寬度控制 */
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* 主標 */
.hero-title-main {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 8px;
}

/* 副標 */
.hero-title-sub {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 24px;
}

/* 說明文字 */
.hero-text {
  font-size: 32px;
  margin: 4px 0;
    font-weight: 700;
  line-height: 1.5;
}

/* 按鈕 */
.hero-cta .hero-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 34px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #e4612d;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}


/* 按鈕 hover 效果 */
.hero-cta .hero-btn:hover {
  background-color:  #e4612d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* 手機 RWD */
@media (max-width: 768px) {
  .hero-cta {
    padding: 60px 16px;
  }

  .hero-title-main {
    font-size: 32px;
  }

  .hero-title-sub {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    padding: 12px 20px;
  }
}