/* ===== Base Reset ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f6f7f9;
}

/* ===== Page Container Feel ===== */
body > h1,
body > p,
.deep-ol {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Title ===== */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px auto 20px;
  color: #111;
  letter-spacing: -0.02em;
}

/* ===== Basic Paragraphs ===== */
p {
  margin: 10px auto;
  font-size: 0.95rem;
  color: #333;
}

/* Links */
a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Impressum Block ===== */
body > p:first-of-type {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ===== Section Container (Privacy Policy) ===== */
.deep-ol {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 60px;
}

/* Centered headings inside */
.deep-ol p strong {
  font-size: 1.2rem;
}

/* ===== Lists ===== */
ol {
  padding-left: 1.2rem;
  margin: 10px 0 20px;
}

ol li {
  margin-bottom: 10px;
}

/* Nested lists */
ol ol {
  margin-top: 10px;
  padding-left: 1.4rem;
}

ol ol li {
  font-size: 0.92rem;
  color: #444;
}

/* Alphabetical sublists */
ol.a {
  list-style-type: lower-alpha;
}

/* Section separators */
.deep-ol > p {
  margin: 15px 0;
}

/* Divider line */
.deep-ol > p[style*="center"] {
  color: #999;
  letter-spacing: 2px;
}

/* ===== Small improvements ===== */
strong {
  color: #111;
}

/* Make long legal text easier to read */
.deep-ol li {
  text-align: justify;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  .deep-ol {
    padding: 20px;
    border-radius: 10px;
  }
}