.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.service-page-hero {
  background-size: cover;
  background-position: center;
  padding: 130px  0;
  position: relative;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.service-page-hero .container-1200 {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.795);
}

/* First Content Section - Safety Priority */
.first-content-section {
  padding: 80px 0;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.first-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 20px;
}

.first-content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.first-content-section ul {
  /* list-style: none; */
  padding: 0;
  margin: 0;
}

.first-content-section ul li {
  font-size: 16px;
  color: #333;
  margin-left: 20px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
}

/* .first-content-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-color);
  font-weight: bold;
  font-size: 18px;
} */

.first-content-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Second Content Section - Why Choose */
.second-content-section {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}

.second-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.second-content-section > p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.second-content-section ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}

.second-content-section ul li {
  /* background: white; */
  /* padding: 30px; */
  border-radius: 10px;
  text-align: left;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  display: flex;
  gap: 15px;
}

.tick {
  display: inline-flex;
  width: 80px;
  height: 47px;
  background: var(--green-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

@media (max-width: 998px) {
  .tick {
    width: 47px;
    height: 47px;
  }
}

.tick:before {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.left-arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  /* color: var(--green-color); */
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.left-arrow:before {
  content: "→";
   color: var(--green-color);
  font-weight: bold;
  font-size: 30px;
}

.second-content-section ul li p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.second-content-section ul li p strong {
  display: block;
  color: var(--blue-color);
  font-size: 18px;
  margin-bottom: 10px;
}

/* Third Content Section - Steps */
.third-content-section {
  padding: 80px 0;
  background: white;
}

.third-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 20px;
}

.third-content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Fourth Content Section - Cleaning Process */
.forth-content-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.forth-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 40px;
}

.forth-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.image-one img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.forth-content-section ul {
  list-style: none;  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .forth-content-layout {
    grid-template-columns: 1fr ;
  }
  .forth-content-section ul {
    grid-template-columns: 1fr ;
  }
}
.forth-content-section ul li {
  border-radius: 8px;
}

.forth-content-section ul li p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.forth-content-section ul li p strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.forth-content-section ul li .tick {
  width: 24px;
  height: 24px;
  font-size: 14px;
  margin: 0;
}

  
  .cta-banner .container {
  overflow: hidden;
  max-width: 1200px;
  background: linear-gradient(135deg, var(--blue-color) 0%, #1a237e 100%);
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  margin-top: 50px;
}

.cta-content h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.btn-cta {
  background: var(--green-color);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #6bc035;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(119, 211, 63, 0.3);
}

/* Fifth Content Section - All Types */
.fifth-content-section {
  padding: 80px 0;
  background: white;
}

.fifth-content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 20px;
}

.fifth-content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* FAQ Section */
.sd-faq-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.sd-subtitle {
  display: block;
  font-size: 14px;
  color: var(--green-color);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.sd-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 40px;
}

.sd-heading span {
  color: var(--green-color);
}

.sd-faq-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.sd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sd-faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sd-faq-item.active {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--green-color);
}
.sd-faq-item.active > .sd-faq-btn{
  background: transparent;

}
/* .sd-faq-item:first-child {
  border-left: 4px solid var(--green-color);
} */

/* .sd-faq-item:not(:first-child) {
  background: #f0f9f0;
} */

.sd-faq-btn {
  width: 100%;
  padding: 20px 25px;
  background: #ECFFE0;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
/* 
.sd-faq-item:not(:first-child) .sd-faq-btn {
  color: #2e7d32;
} */

.sd-faq-btn:hover {
  background: rgba(0, 0, 0, 0.02);
}

.sd-faq-icon {
  font-size: 20px;
  color: var(--green-color);
  font-weight: bold;
}

.sd-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sd-faq-item.active .sd-faq-content {
  max-height: 500px;
}

.sd-faq-content p {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.sd-faq-sidebar-centered {
  position: sticky;
  top: 20px;
}

.sd-faq-quote-box {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sd-faq-quote-box p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .first-content-section,
  .forth-content-section > div {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .second-content-section ul {
    grid-template-columns: 1fr;
  }

  .sd-faq-layout {
    grid-template-columns: 1fr;
  }

  .sd-faq-sidebar-centered {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .first-content-section h2,
  .second-content-section h2,
  .third-content-section h2,
  .forth-content-section h2,
  .fifth-content-section h2,
  .sd-heading {
    font-size: 26px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .btn-cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-page-hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .first-content-section,
  .second-content-section,
  .third-content-section,
  .forth-content-section,
  .fifth-content-section,
  .sd-faq-section {
    padding: 60px 0;
  }
}
