/* Basic, Word-like typography */
:root {
  --text: #222;
  --muted: #555;
  --accent: #0a5fff; /* subtle Microsoft-ish blue */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: Calibri, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: #fafafa;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
}

header h1 {
  font-weight: 700;
  font-size: 2rem; /* approx. Word Heading 1 */
  text-align: center;
  margin: 0 0 12px 0;
}

.hero { margin: 16px 0 24px; text-align: center; }
.hero img {
  max-width: 220px;   /* Größe nach Wunsch anpassen: z.B. 180px–280px */
  width: 100%;
  height: auto;
  border-radius: 6px;
}


section { margin: 20px 0; }
section h2 {
  font-size: 1.4rem; /* Heading 2 scale */
  font-weight: 700;
  margin: 0 0 8px 0;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 4px;
}
section p { margin: 8px 0; }
section ul { margin: 8px 0 0 -20px; }
section li { margin: 4px 0; }

address { font-style: normal; color: var(--muted); }

.footer { text-align: center; padding: 12px; color: var(--muted); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
