/* GLOBAL */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0f172a;
}

body {
  padding-top: 72px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* HERO (LEFT UNCHANGED STYLISTICALLY) */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
}

.btn-green {
  background: #22c55e;
  color: #ffffff;
}

.btn-blue {
  background: #2563eb;
  color: #ffffff;
}

/* SECTIONS */
.section {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section.center {
  text-align: center;
}

.section.muted {
  background: #f8fafc;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.lead {
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #475569;
}

/* MAP */
.map-image {
  margin-top: 40px;
  width: clamp(415px, 45vw, 520px);
}


/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 12px;
}

/* FOOTER */
.page-footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-text {
    position: static;
    transform: none;
    padding: 40px 24px;
    background: rgba(0,0,0,0.5);
  }

  .hero-text h1,
  .hero-text p {
    text-align: center;
  }

  .hero-text {
    max-width: none;
  }
}

