/* FORM */
form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* GALERI */
.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 30%;
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* MAP */
.map {
  margin-top: 20px;
}

/* RESPONSIVE TAMBAHAN */
@media (max-width: 768px) {
  .gallery img {
    width: 80%;
  }
}