
body {
  margin: 0;
  font-family: 'Noto Sans TC', sans-serif;
  background: #f9f8f5;
  color: #333;
}
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: #fffaf4;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #a88d65;
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  font-size: 2rem;
  border-left: 5px solid #a88d65;
  padding-left: 0.5rem;
  margin-bottom: 2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.02);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}
.card p {
  padding: 1rem;
  font-weight: 500;
  text-align: center;
}
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #999;
}
.logo {
  font-weight: bold;
  font-size: 1.2rem;
}
