.aboutus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
}

.aboutus-image {
  flex: 1;
  padding-right: 1rem;
  text-align: left;
}

.aboutus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.aboutus-text {
  flex: 1;
}

/* kolor nagłówka */
.aboutus-text h2 {
  color: #d32483;
  font-weight: 600;
  text-transform: uppercase;
}

/* responsywność */
@media (max-width: 768px) {
  .aboutus-container {
    flex-direction: column;
    text-align: center;
  }
  .aboutus-image,
  .aboutus-text {
    width: 100%;
    padding-right: 0;
  }
  .aboutus-text {
    margin-top: 1rem;
  }
}