.rug-cleaning-section {
  padding: 70px 20px;
  background: #f5f9ff;
  font-family: Arial, sans-serif;
  color: #0f172a;
}

.rug-cleaning-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-box {
  background: linear-gradient(135deg, #0066ff, #003f9e);
  color: #fff;
  padding: 60px 45px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 35px;
}

.hero-box .tag {
  display: inline-block;
  background: #ffdd33;
  color: #0f172a;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-box h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-box p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  background: #ffdd33;
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.light {
  background: #fff;
  color: #0066ff;
}

.content-box,
.why-section,
.commercial-box {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

.content-box p,
.commercial-box p,
.why-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.section-title {
  text-align: center;
  margin: 45px 0 25px;
}

.section-title h2,
.why-content h2,
.commercial-box h2,
.cta-box h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 17px;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.service-card,
.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border-top: 4px solid #0066ff;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  transition: 0.3s;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
}

.service-card h3,
.benefit-card h3 {
  font-size: 20px;
  color: #0066ff;
  margin-bottom: 12px;
}

.service-card p,
.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.why-content ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.why-content li {
  background: #f0f6ff;
  padding: 15px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  line-height: 1.7;
  border-left: 4px solid #0066ff;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.list-grid span {
  background: #f0f6ff;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #0f172a;
}

.cta-box {
  background: #0066ff;
  color: #fff;
  padding: 45px;
  border-radius: 22px;
  text-align: center;
}

.cta-box h2 {
  color: #fff;
}

.cta-box p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 18px;
}

@media (max-width: 992px) {
  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-box h1 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .rug-cleaning-section {
    padding: 45px 15px;
  }

  .hero-box,
  .content-box,
  .why-section,
  .commercial-box,
  .cta-box {
    padding: 28px 20px;
  }

  .hero-box h1 {
    font-size: 28px;
  }

  .section-title h2,
  .why-content h2,
  .commercial-box h2,
  .cta-box h2 {
    font-size: 26px;
  }

  .service-grid,
  .benefit-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }
}