.places-list {
  list-style-type: disc;

  padding-left: 20px;
}
.more-places {
  display: none;
}
.image-container {
  text-align: center;
  margin-top: 20px;
  /* border: 5px solid red; */
}
.image-placeholder {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;

  margin: 0 auto;
  background-color: #ccc;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* transition: transform 0.5s ease; */
}
.image-placeholder img:hover {
  transform: scale(1.05);
}
.button {
  display: block;
  margin: 20px auto;
  cursor: pointer;
  background-color: #8db051;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #8db051;
}
.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
