.place {
  display: flex;
  gap: 25px;
  padding: 40px 30px;
  max-width: 950px;
  margin: 0 auto;
  align-items: flex-start;
}

.place img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.place-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.place-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

.place-text strong {
  color: #333;
}

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

  .place img {
    width: 100%;
    height: auto;
  }
}
