body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111;
  margin: 0;
  padding: 0;
}






.logo {
  font-size: 1.4em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.switch-tabs {
  display: flex;
  gap: 8px;
}

.switch-btn {
  padding: 6px 14px;
  border-radius: 6px;
  background: #f0f0f0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.switch-btn:hover {
  background: #404041;
  color: white;
}

.switch-btn.active {
  background: #333;
  color: white;
  font-weight: bold;
}




.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #404040;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.toggle-label {
  font-size: 0.9em;
  color: #333;
}
.seiten-switch {
  display: flex;
  background: #e0e0e0;
  border-radius: 30px;
  padding: 4px;
  gap: 2px;
}

.seiten-btn {
  padding: 6px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  background: transparent;
  transition: all 0.2s ease;
}

.seiten-btn:hover {
  background: #ccc;
}

.seiten-btn.active {
  background: #333;
  color: white;
}

.logo img {
  height: 100px;         /* ⬅️ Größe anpassen */
  width: auto;
  display: block;
  width: 200px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.impressum-heading {
  text-align: left; 
  font-size: 2.5em; 
  margin-bottom: 1em; 
  color: #333; 
  margin-top: 100px;
  margin-left: 2em;
}
.impressum-text p, ul{
  text-align: left; 
  margin-bottom: 1em; 
  color: #333; 
  margin-top: 10px;
  font-size: 1.1em;
  max-width: 900px;
  
  margin-left: 5em;
}

footer {
  text-align: center;
  padding: 1em 0;
  background-color: #fff;
}
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 1em;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 0.2em;
}
.impressum-text h2{

  text-align: left; 
  margin-bottom: 1em; 
  color: #333; 
  margin-top: 10px;
  font-size: 1.5em;
  max-width: 900px;
  margin-right: auto;
  margin-left: 3.6em;
}

