/* Haushaltsauflösung & Leistungen – MK Entsorgung */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Banner */
.banner-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/entruempelung.png')
              center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.banner-section h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

/* Leistungen */
.service-section {
  padding: 80px 0;
}

.service-section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  font-size: 2rem;
}

.service-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 40px;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.service-box p {
  color: #555;
  line-height: 1.6;
}

.advantages {
  margin-top: 15px;
}

.advantages li {
  margin-bottom: 10px;
}

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-img {
    height: 200px;
  }
}

/* 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;
}

footer a {
  color: #fff;
  text-decoration: underline;
}
