*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f0f4f8;
  color: #1a1a2e;
  min-height: 100vh;
  padding: 20px;
}

.legal-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-btn {
  color: #1565C0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-btn:hover { text-decoration: underline; }

.legal-logo {
  font-size: 16px;
  font-weight: 700;
  color: #1565C0;
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1565C0;
  margin-bottom: 4px;
}

.legal-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 28px;
}

section {
  margin-bottom: 24px;
}

section h2 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

section p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

section ul {
  padding-left: 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

section a {
  color: #1565C0;
  text-decoration: none;
}

section a:hover { text-decoration: underline; }

.about-hero {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.about-icon { font-size: 48px; margin-bottom: 12px; }

.about-hero h2 {
  font-size: 20px;
  color: #1565C0;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 14px;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .legal-card { padding: 22px 18px; border-radius: 12px; }
  .legal-card h1 { font-size: 20px; }
}