body {
  background: #fcfcfcff;
  color: #111;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.logo {
  max-width: 320px;
  width: 80vw;
  margin-bottom: 2rem;
}
nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
nav a {
  color: #111;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #b71c1c;
}
h1 {
  margin-bottom: 1.5rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}
input, textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
button {
  background: #b71c1c;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #880808;
}
@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
  nav {
    gap: 1rem;
  }
  .logo {
    max-width: 90vw;
  }
  form {
    max-width: 100%;
  }
}

/* Linksbuendiges Layout fuer Impressum und Datenschutz */
body.impressum-seite .container,
body.datenschutz-seite .container {
  align-items: flex-start;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.zurueck-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem 1.5rem;
  background: #fff;
  color: #b71c1c;
  border: 2px solid #b71c1c;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.zurueck-btn:hover {
  background: #b71c1c;
  color: #fff;
  box-shadow: 0 4px 16px rgba(183,28,28,0.10);
} 