*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Inter", Roboto, Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 16px 32px;
}

/* Logo block (same style as boka-taxi-online page) */
.hero-logo-block {
  max-width: 260px;
  margin: 14px auto 8px;
}

.hero-logo-block img {
  width: 100%;
  height: auto;
  display: block;
}

.embed-surface {
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 0 16px;
  min-height: 620px;
}

@media (max-width: 768px) {
  .embed-surface {
    min-height: 720px;
  }
  .page-wrap {
    padding-top: 110px;
  }
}

h1 {
  font-size: 2rem;
  color: #0f172a;
  margin: 8px 0 16px;
  text-align: center;
}

h2 {
  font-size: 1.6rem;
  color: #0f172a;
  margin: 0 0 16px;
  text-align: center;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.card-grid-3 article {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.96em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.faq-grid article {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.96em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  align-items: center;
}

.steps-box {
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 0.95em;
}

.steps-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.steps-inner div {
  min-width: 210px;
}

.note {
  font-size: 0.9em;
  color: #6b7280;
  text-align: center;
  margin: 0 0 18px;
}

a {
  color: #111827;
}

a:hover {
  text-decoration: underline;
}

/* ==== Shared related-links block (cluster internal linking) ==== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.related-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.95rem;
  color: #111827;
}

.related-card a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}
