:root{
			--primary: #0a6ebd;
			--bg: #f6f9fc;
			--card: #ffffff;
			--text: #0f172a;
			--muted: #64748b;
			--border: #e5eaf0;
			--radius: 14px;
		}

		* {
			box-sizing: border-box;
		}

		body {
			margin: 0;
			font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
			background: var(--bg);
			color: var(--text);
			line-height: 1.6;
		}

		a {
			color: var(--primary);
			text-decoration: none;
			font-weight: 500;
		}

		.container {
			max-width: 1180px;
			margin: auto;
			padding: 1.5rem;
		}

		/* HEADER */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
}

.main-nav a:hover {
  color: var(--primary);
}

@media (max-width: 700px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}


		/* HERO */
		.hero {
			background: linear-gradient(135deg, #eaf4fd, #ffffff);
			padding: 4rem 1.5rem;
		}

		.hero-grid {
			display: grid;
			grid-template-columns: 1.1fr 0.9fr;
			gap: 3rem;
			align-items: center;
		}

		.hero h1 {
			font-size: clamp(2.2rem, 4vw, 3rem);
			margin-bottom: 1rem;
		}

		.hero p {
			color: var(--muted);
			font-size: 1.1rem;
			max-width: 520px;
		}

		.hero img {
			width: 100%;
			max-width: 420px;
			display: block;
			margin-left: auto;
		}

		/* BUTTONS */
		.buttons {
			margin-top: 2rem;
			display: flex;
			gap: 1rem;
			flex-wrap: wrap;
		}

		.btn {
			padding: 0.85rem 1.5rem;
			border-radius: 8px;
			font-weight: 600;
			border: none;
		}

		.btn.primary {
			background: var(--primary);
			color: white;
		}

		.btn.secondary {
			background: white;
			border: 1px solid var(--border);
			color: var(--primary);
		}

		/* SECTIONS */
		section {
			padding: 4rem 1.5rem;
		}

		section h2 {
			text-align: center;
			margin-bottom: 2.5rem;
			font-size: 2rem;
		}

		.grid {
			display: grid;
			gap: 2rem;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			max-width: 1000px;
			margin: auto;
		}

		.card {
			background: var(--card);
			border-radius: var(--radius);
			padding: 2rem;
			border: 1px solid var(--border);
			box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
		}

		.card img {
			height: 28px;
			margin-bottom: 0.75rem;
		}

.map-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Aspect-ratio container */
.map-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Responsive image */
.map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  text-decoration: none;
}

/* Pin image */
.map-pin img {
  width: 28px;
  height: auto;
  transition: transform 0.2s ease;
}

.map-pin:hover img {
  transform: scale(1.15);
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #fff;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.map-pin:hover .tooltip {
  opacity: 1;
}
		/* FOOTER */
		footer {
			background: white;
			border-top: 1px solid var(--border);
			text-align: center;
			padding: 2rem 1.5rem;
			font-size: 0.9rem;
			color: var(--muted);
		}

		@media(max-width: 900px) {
			.hero-grid,
			.map-layout {
				grid-template-columns: 1fr;
				text-align: center;
			}

			.hero img {
				margin: 0 auto;
			}
		}
