* { box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f7f7f7;
  color: #222;
}

h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 6px;
}

.sub {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 24px;
}

.cta {
  text-align: center;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.cta b { color: #c00; }
.cta span { font-size: 13px; color: #888; }

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.card img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
}

.name {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 4px;
}

.meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.intro {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.req {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact {
  font-size: 14px;
  color: #c00;
  font-weight: 500;
}

.footer {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 30px;
  line-height: 1.6;
}