﻿/* Imprint - start*/
:root {
  --primary: #1730d1;
  --primary-light: #eef2ff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto-sans", sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.8;
}

.container {
  width: min(900px, 90%);
  margin: auto;
}

header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
}

.hero {
  padding: 80px 0 50px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 15px;
}

.hero p {
  color: var(--muted);
  max-width: 700px;
  margin: auto;
}

.content {
  padding-bottom: 80px;
}

.policy-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.policy-section p {
  color: #4b5563;
  margin-bottom: 16px;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 2rem 0;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* Imprint - end*/
