
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Contact Us Button – push this section down instead of body */
#contact {
  text-align: center;
  margin-top: 180px;   /* Adjust if needed (150–180px) */
}

#contact h2 {
  display: inline-block;
  background-color: #0077b6;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
}

#contact h2:hover {
  background-color: #0096c7;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Contact Container */
.contact-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
}

/* LEFT SIDE (Get in Touch + Inquiry) */
.left-side {
  width: 40%;
}

/* Inquiry Box */
.inquiry-box {
  margin-top: 20px;
  padding: 15px;
  background: #f3f3f3;
  border-radius: 10px;
  width: 100%;
}

.inquiry-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #0077b6;
}

/* Form layout */
.inquiry-box form {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.row input {
  width: 50%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #aaa;
}

textarea {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #aaa;
  resize: none;
}

button {
  background-color: #0077b6;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #005f8a;
}

/* MAP */
.map iframe {
  width: 550px;
  height: 450px;
  border-radius: 10px;
}