@charset "UTF-8";
.TreatmentProcess {
  display: flex;
}

.ServicePageTreatmentProcess {
  margin: 0;
}

.ServicePageTreatmentProcessTitle {
  font-size: 2rem;
  color: #2c3e50;
  text-align: center;
  font-weight: 600;
  padding: 0;
  margin: 0 auto;
}

.ServicePageTreatmentProcessItem {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ServicePageTreatmentProcessTitle {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.ServicePageTreatmentProcessDescription {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.ServicePageTreatmentProcessSteps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ServicePageTreatmentProcessSteps li {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  position: relative;
  padding-left: 20px;
}

.ServicePageTreatmentProcessSteps li::before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}