:root {
  --text: #111;
  --muted: #666;
  --border: #e6e6e6;
  --background: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 0 32px;
}

header {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-name {
  font-weight: 600;
  font-size: 1.2rem;
}

main {
  padding: 48px 0;
}

section {
  margin-bottom: 60px;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

ul {
  padding-left: 20px;
  color: var(--muted);
}

a {
    color: #3a6ea5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #3a6ea5;
}

#contact li {
    list-style: none;   /* entfernt die Bulletpoints */
    padding: 0;         /* entfernt Einrückung */
    margin: 0;
    margin-bottom: 6px; /* kleiner Abstand zwischen Zeilen */
}

footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--muted);
}