#registration {
    margin: 56px auto;
  max-width: 1184px;
  display: flex;
  flex-direction: row;
  column-gap: 64px;
  align-items: center;
  font-family: Inter, sans-serif;
}

.Content-Column h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #4a4a4a;
  font-weight: 600;
}

.Content-Column p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}

.MobileImg {
  display: none;
}

@media (max-width: 992px) {
  #registration {
    flex-direction: column;
    row-gap: 32px;
  }
  .DesktopImg {
    display: none;
  }
  .MobileImg {
  display: block;
    max-width: 100%;
  }
  .MobileImg img {
    width: 100%;
    max-width: 100%;
}

