.telemedicine-steps {
  counter-reset: step;
}
.telemedicine-steps details {
  margin: 20px 0;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
}
.telemedicine-steps details[open] {
  background-color: #f1f1f1;
}
.telemedicine-steps summary {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  list-style: none;
}

.telemedicine-steps summary::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background-color: #ccc;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
}
.telemedicine-steps p {
  margin-top: 10px;
  line-height: 1.6;
}