/* ========== MAIN SECTION ========== */
.service-section {
    
     background-color: #fbf8f7;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.service-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
.service-section h1 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.service-section h2 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 50px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 12px;
}

.service-section h3 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Paragraphs & Text */
.service-section p {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.service-section ul {
  margin: 15px 0 25px 25px;
}

.service-section li {
  margin-bottom: 10px;
}

/* ========== TREATMENT BOXES ========== */
.treatment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px 0;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.treatment.reverse {
  flex-direction: row-reverse;
}

.treatment img {
  width: 45%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment img:hover {
  transform: scale(1.05);
}

.treatment div {
  flex: 1;
}

/* ========== FINAL SECTION ========== */
.final-section {
  text-align: center;
  margin-top: 80px;
  background: linear-gradient(to right, #e9fdfb, #f9fffe);
  border-radius: 20px;
  padding: 60px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.final-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.final-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 10px auto;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .treatment {
    flex-direction: column;
    text-align: center;
  }

  .treatment.reverse {
    flex-direction: column;
  }

  .treatment img {
    width: 100%;
  }

  .service-section h1 {
    font-size: 2rem;
  }

  .service-section h2 {
    font-size: 1.6rem;
  }

  .final-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .service-section {
    padding: 50px 15px;
  }

  .treatment {
    padding: 20px;
    margin: 40px 0;
  }

  .service-section h1 {
    font-size: 1.8rem;
  }

  .service-section p {
    font-size: 1rem;
  }
}