/* .cleaning-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.headline {
  font-size: 2rem;
  font-weight: bold;
}

.tagline {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  color: #555;
}

.houses {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.house {
  width: 80px;
  height: 80px;
  background: url('/wp-content/themes/your-theme/assets/house-dirty.svg') no-repeat center/contain;
}

.house.clean {
  background: url('/wp-content/themes/your-theme/assets/house-clean.svg') no-repeat center/contain;
}

.van {
  width: 120px;
  height: 60px;
  background: url('/wp-content/themes/your-theme/assets/van.svg') no-repeat center/contain;
  position: absolute;
  left: -150px;
  bottom: 100px;
}

.services {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #0078d7;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
*/