body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f9fafb; color: #111827; min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 560px; margin: 0 auto; padding: 64px 20px 80px; flex: 1; }
h1 { font-size: 26px; font-weight: 800; color: #111827; margin-bottom: 10px; }
.lead { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 40px; }
.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.contact-icon { font-size: 40px; }
.contact-label { font-size: 13px; font-weight: 600; color: #9ca3af; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-email {
  font-size: 18px; font-weight: 700; color: #111827;
  text-decoration: none; word-break: break-all;
}
.contact-email:hover { color: #16a34a; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: #16a34a; color: white;
  border-radius: 8px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background 0.15s;
  margin-top: 4px;
}
.contact-btn:hover { background: #15803d; }
.contact-note { font-size: 13px; color: #9ca3af; line-height: 1.65; }
.topics {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.topics h2 { font-size: 14px; font-weight: 700; color: #374151; margin-bottom: 14px; }
.topic-list { display: flex; flex-direction: column; gap: 8px; }
.topic-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #374151;
}
.topic-item span:first-child { font-size: 18px; }
