.about__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about__info {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about__info h3 {
  margin-bottom: 0;
}

.about__title {
  font-size: 36px;
  margin-bottom: 40px;
}

.about__img {
  width: 500px;
  height: 400px;
  overflow: hidden;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about__wrapper {
    flex-direction: column;
  }

  .about__img {
    width: 100%;
    height: auto;
  }

  .about__info {
    max-width: 100%;
  }

  .about__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
