/* 全域樣式 */
body {
  font-family: 'Noto Sans TC', sans-serif;
  padding-top: 72px;               /* 與固定導覽列高度對齊 */
  background-color: #f4f5f7;
  color: #212529;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('hero.png') center/cover no-repeat;
}

.hero h1,
.hero p {
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* CTA 深色區塊 */
.cta {
  background: #262b32;
}

/* 服務卡片文字微調 */
.service-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6c757d;
}

/* 小螢幕調整 */
@media (max-width: 767.98px) {
  .hero {
    height: 80vh;
  }
  .service-desc {
    font-size: 0.9rem;
  }
}

  }
}
.team-profile p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #343a40; /* 深灰色字體，提升可讀性 */
}