/* Khusus untuk section Contact Us */
.wrapper {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.wrapper h2 {
  text-align: center;
  margin-bottom: 10px;
}

.wrapper p {
  text-align: center;
  margin-bottom: 20px;
}

.wrapper .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.wrapper .contact-form,
.wrapper .map1 {
  flex: 1 1 400px;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wrapper label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.wrapper input,
.wrapper textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.wrapper button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffd700;
  border: none;
  color: rgb(0, 0, 0);
  border-radius: 4px;
  cursor: pointer;
}

.wrapper button:hover {
  background-color: #b8860b;
}

.wrapper .map1 iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 8px;
}