* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
}

/* Section */
.location-section {
  padding: 60px 20px;
  text-align: center;
}

.location-section h1 {
  font-size: 36px;
  color: #1f2937;
}

.subtitle {
  margin-top: 10px;
  color: #6b7280;
}

/* Card */
.location-card {
  margin: 30px auto;
  max-width: 600px;
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card h3 {
  margin-top: 15px;
  color: #111827;
}

.location-card p {
  margin-top: 5px;
  color: #4b5563;
}

/* Map */
.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-container iframe {
  display: block;
}