/* ==== IMPRESSUM PAGE ==== */

.impressum-header {
  background: #F5C76E;
  padding: 2rem;
  border-bottom: 2px solid #111;
}

.impressum-nav {
  max-width: 1200px;
  margin: 0 auto;
}

.nav-back {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: 0.2s;
  display: inline-block;
}

.nav-back:hover {
  background: #111;
  color: #fff;
}

.impressum-container {
  min-height: calc(100vh - 300px);
  padding: 6rem 2rem;
  background: #F5C76E;
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
  background: #F9E4B7;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.impressum-content h1 {
  font-family: Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #111;
  text-align: center;
}

.impressum-content h2 {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.impressum-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 1rem;
}

.impressum-content strong {
  font-weight: 400;
  color: #222;
}

.impressum-content a {
  color: #F5C76E;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.impressum-content a:hover {
  color: #111;
  background: #F5C76E;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

.impressum-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .impressum-container {
    padding: 4rem 1.5rem;
  }

  .impressum-content {
    padding: 2rem;
  }

  .impressum-content h1 {
    font-size: 2rem;
  }

  .impressum-content h2 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }

  .impressum-content p {
    font-size: 0.95rem;
  }
}
