@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f6f8fc;
  color: #202124;
}

.topbar {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #202124;
}

.name h1 {
  font-size: 20px;
  font-weight: 600;
}

.name i {
  font-size: 20px;
  color: #1a73e8;
}

.legal-wrap {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #202124;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content ul {
  margin: 8px 0 8px 24px;
}

.legal-content ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.legal-content a {
  color: #1a73e8;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #5f6368;
  border-top: 1px solid #e0e0e0;
  margin-top: 60px;
}