/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Section styling */
.services {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #d2691e;
}

/* Two-column container */
.services-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Left side */
.services-left {
  flex: 1 1 500px;
  margin-top: -30px;  /* move text upwards */
}

.services-left h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #d2691e; /* warm orange like screenshot */
}

.services-left .intro-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}
.hygiene-heading {
  font-size: 20px;
  margin-top: 30px;
  color: #d2691e; /* same orange as "What We Offer" */
  font-weight: bold;
}

/* Bullet list styling */
.services-list {
  list-style: none;
}

.services-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: 1rem;
  color: #444;
}

.services-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d2691e; /* orange tick */
  font-weight: bold;
}

/* Right side */
.services-right {
  flex: 1 1 400px;
  text-align: center;
}

.services-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cleaning-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #d2691e; /* or any color you want */
  font-weight: bold;
}