body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

main {
  max-width: 1400px; /* WIDE LAYOUT */
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 30px;
}

.contact-hero h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
}

.contact-hero a {
  font-size: 1.3em;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.contact-hero a:hover {
  text-decoration: underline;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
}

.contact-map {
  text-align: center;
  margin-top: 40px;
  max-width: 1200px; /* Ensure map is wide but not full edge-to-edge */
  margin-left: auto;
  margin-right: auto;
}

.contact-map h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.contact-map iframe {
  max-width: 100%;
  width: 100%;
  height: 500px; /* Taller map */
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.contact-map iframe:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  main {
    padding-top: 10px;
  }
  .contact-hero h1 {
    font-size: 1.8em;
  }
  .contact-info h2 {
    font-size: 1.4em;
  }
  .contact-map iframe {
    height: 300px;
  }
}