/* Grundlegende Styles für Impressum, Datenschutzerklärung und Startseite */
:root {
  --primary: #1cb8c6;
  --background: #1d2423;
  --text: #ffffff;
  --card-bg: #000000;
  --accent: #1cb8c6;
  --headerBackground: #014d59;
}
body {
  margin: 0;
  font-family: Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--headerBackground);
  border-bottom: 2px solid var(--primary);
}
header img.logo {
  height: 50px;
}
nav a {
  color: var(--text);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 2rem clamp(1rem, 5vw, 4rem);
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  flex: 1;
}
.hero {
  text-align: center;
  padding: 3rem 1rem;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid transparent;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hero-hint {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}
.card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.card h2 {
  margin-top: 0;
  color: var(--primary);
}
.card p {
  margin: 1rem 0;
}
footer {
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.8rem;
  margin-top: auto;
}
table {
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 1rem 1.5rem;
  text-align: left;
}

thead th {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Sichtbarer, zarter Divider */
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Sichtbarer, zarter Divider */
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  color: var(--text);
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    text-align: center;
  }
}
