.page-header {
  background-color: #1a1a1a;
  color: white;
  padding: 50px 30px;
  text-align: center;
}

.page-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 15px;
  color: #ccc;
}

.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;
}

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

.grey {
  background-color: #f5f5f5;
}

.tip {
  background-color: #fff8dc;
  border-left: 5px solid #e8c84a;
  padding: 18px 22px;
  margin: 20px 30px;
  border-radius: 4px;
  max-width: 900px;
  margin: 20px auto;
}

.tip h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.tip p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

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

  .place img {
    width: 100%;
  }
}