:root {
  --navy: #0f2a4a;
  --gold: #b8933f;
  --bg: #f7f6f3;
  --text: #2b2b2b;
  --muted: #6b6b6b;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
header {
  background: var(--navy);
  color: #fff;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--gold); }
.logo a { color: inherit; text-decoration: none; }
nav a {
  color: #e8e8e8;
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  padding-bottom: 4px;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); border-bottom: 2px solid var(--gold); }

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d63 100%);
  color: #fff;
  padding: 60px 6% 70px;
  text-align: center;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 14px; font-weight: 700; }
.page-hero p { max-width: 640px; margin: 0 auto; color: #d7dfe8; font-size: 1rem; }
.page-hero .en { margin-top: 10px; font-size: 0.85rem; color: #a8b8c9; letter-spacing: 0.5px; }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3d63 100%);
  color: #fff;
  padding: 90px 6% 100px;
  text-align: center;
}
.hero h1 { font-size: 2.3rem; margin-bottom: 18px; font-weight: 700; }
.hero p { max-width: 640px; margin: 0 auto; color: #d7dfe8; font-size: 1.05rem; }
.hero .en { margin-top: 10px; font-size: 0.9rem; color: #a8b8c9; letter-spacing: 0.5px; }

section { padding: 70px 6%; max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
  font-size: 1.7rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: var(--gold);
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: 0 2px 12px rgba(15,42,74,0.06);
  border-top: 3px solid var(--gold);
}
.card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.about-grid p { color: var(--muted); margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stats div { background: var(--bg); padding: 24px 10px; border-radius: 6px; }
.stats strong { display: block; font-size: 1.6rem; color: var(--navy); }
.stats span { font-size: 0.85rem; color: var(--muted); }

.timeline { max-width: 700px; margin: 0 auto; }
.timeline .item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e7e4de;
}
.timeline .item:last-child { border-bottom: none; }
.timeline .year { color: var(--gold); font-weight: 700; }
.timeline h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.timeline p { color: var(--muted); font-size: 0.92rem; }

.news-list { max-width: 800px; margin: 0 auto; }
.news-item {
  background: #fff;
  border-radius: 6px;
  padding: 28px 30px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(15,42,74,0.06);
}
.news-item .date { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; display: block; }
.news-item h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.news-item p { color: var(--muted); font-size: 0.93rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info .row { margin-bottom: 22px; }
.contact-info .row h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info .row p { color: var(--muted); font-size: 0.93rem; }
.map-box {
  background: #e5e2db;
  border-radius: 6px;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

footer {
  background: var(--navy);
  color: #c9d3de;
  padding: 40px 6% 30px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
}
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
footer p { margin-bottom: 6px; }
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
  color: #8fa0b3;
}

@media (max-width: 720px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  nav a { margin-left: 16px; font-size: 0.85rem; }
  .timeline .item { grid-template-columns: 60px 1fr; }
}
