.simpleText {
  margin: 1.75rem 0;
}
.simpleText--double {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  gap: 3rem;
}
.simpleText img {
  margin: 0 auto 1rem;
  height: auto;
}
.simpleText h3 {
  margin: 2rem 0 0.5rem;
}
.simpleText h4 {
  margin: 0.5rem 0;
}
.simpleText ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}
.simpleText ul li {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.simpleText ul li:last-child {
  border-bottom: none;
}
.simpleText ul li::before {
  display: inline-block;
  margin-right: 1rem;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
}
.simpleText ul li a {
  color: inherit;
  font-weight: inherit;
}

@media screen and (max-width: 600px) {
  .simpleText--double {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .simpleText--double {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    gap: 1rem;
  }
}