.requirements-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column {
  flex-basis: 50%;
  /* Убедитесь, что у вас есть правильные размеры для вашего изображения */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
}

.text-column {
  flex-basis: 50%;
  padding-left: 20px;
}

.text-column h2 {
  margin-bottom: 16px;
}

.text-column p {
  font-size: 16px;
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  font-size: 16px;
  margin-bottom: 8px;
}

.checklist span {
  color: green;
  margin-right: 8px;
}