/* Impressum – MK Entsorgung */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero / Banner */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1581093588401-22d6363faad4?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

/* Impressum Inhalt */
.impressum-section {
  padding: 80px 0;
}

.impressum-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.impressum-section p {
  margin-bottom: 10px;
  color: #555;
}

.content-box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 40px;
}

/* Zurück-Button */
.back-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 25px;
  background-color: #222;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

@media (max-width: 576px) {
  .content-box {
    padding: 25px;
  }
}
