* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: #f5f7fa;
  padding: 40px;
}

/* Card */
.map-card {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Header */
.map-header {
  background: linear-gradient(135deg, #00b19c, #00b19c);
  color: white;
  padding: 24px 32px;
}

.map-header h2 {
  margin: 0;
  font-size: 28px;
}

.map-header p {
  margin-top: 6px;
  opacity: .9;
}

/* Map */
.map-wrapper {
  width: 100%;
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}

.map-footer p {
  margin-top: 4px;
  color: #555;
}

.direction-btn {
  background: #0b2a44;
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s;
}

.direction-btn:hover {
  background: #134a78;
}
