/* Datenschutz – MK Entsorgung */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Hero / Banner */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/entruempelung.png')
              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;
}

/* Datenschutz Inhalt */
.privacy-section {
  padding: 80px 0;
}

.privacy-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.privacy-section p, .privacy-section li {
  color: #555;
  margin-bottom: 10px;
}

.privacy-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.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;
  }
}
