:root{ --line:#e5e7eb; --content:999.5px; }

/* Clean hero */
.hero-band{ background:#f6f9fc; border-bottom:1px solid var(--line); }
.hero-band .inner{ max-width:var(--content); margin:0 auto; padding:12px 16px 14px; text-align:center; }
.hero-band h1{ margin:0 0 4px; font-size:30px; color:#0b3a5b; }
.hero-band p{ margin:0; color:#5c7284; font-size:15px; }

/* Unified Contact Card */
.contact-card {
  max-width: var(--content);
  margin: 30px auto 80px;
  padding: 0 16px;
}
.card-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);
  overflow: hidden;
}

.top-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .top-section { grid-template-columns: 2fr; }
}

.office-photo img {
  width: 85%;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-left: 40px;
  margin-right: -10px;
}

.office-info h2 {
  margin-top: 48px;
  margin-bottom: 10px;
  font-size: 30px;
  color: #0b3a5b;
  margin-left: 20px;
}

.kvs{ display:grid; gap:8px; margin:8px 0 0; margin-left: 20px; }
.kvs div{ display:flex; gap:10px }
.k{ min-width:88px; color:#5c7284 }
.v{ color:#0b3a5b; font-weight:600 }
.v a{ color:#0b6aa1; text-decoration:none }
.v a:hover{ text-decoration:underline }



.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-top: 1px solid var(--line);
}

footer .inner{ max-width:var(--content); margin:20px auto 40px; padding:0 16px; color:#5c7284; }

.actions {
  display: flex;
  justify-content: flex-start; /* or center */
  margin-top: 16px;
  margin-left: 20px;
}

.btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 14px 0;
  border-radius: 40px;
  border: 2px solid #0b6aa1;   /* blue outline */
  background: #fff;            /* white background */
  color: #0b6aa1;              /* text same as border */
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.btn:hover {
  background: #0b6aa1;   /* fill with blue on hover */
  color: #fff;           /* invert text color */
}