body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f7f9fc;
  color: #172033;
}

a {
  color: inherit;
}

.seo-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.seo-header,
.seo-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.seo-nav a {
  text-decoration: none;
  opacity: 0.78;
}

.seo-nav a:hover {
  opacity: 1;
}

.hero {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: #4a5568;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #ffa500;
  color: #1a1a1a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.16);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
  background: #cc8400;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 10px rgba(0,0,0,.28);
}

.button.secondary {
  background: #fff;
  border: 1px solid #d8e2ee;
  color: #172033;
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d8e2ee;
  box-shadow: 0 18px 40px rgba(23,32,51,.12);
  background: #fff;
}

.hero-media img {
  width: 100%;
  display: block;
}

.content {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 52px;
}

.section-title {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.section-copy {
  margin: 0 0 18px;
  color: #536174;
  line-height: 1.6;
  max-width: 780px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d8e2ee;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(23,32,51,.06);
}

.card h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: #536174;
  line-height: 1.5;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef4fb;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.stat {
  border-radius: 8px;
  background: #172033;
  color: #fff;
  padding: 16px;
}

.stat span {
  display: block;
  margin-bottom: 6px;
  color: #c8d2e1;
  font-size: 13px;
}

.stat strong {
  font-size: 24px;
}

.country-list-section,
.faq-section,
.how-section {
  margin-top: 28px;
}

.country-list {
  columns: 3 220px;
  column-gap: 24px;
  margin: 0;
  padding: 18px 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d8e2ee;
  box-shadow: 0 8px 22px rgba(23,32,51,.06);
}

.country-list li {
  break-inside: avoid;
  margin: 0 0 7px;
  color: #344054;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d8e2ee;
  padding: 18px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: #536174;
  line-height: 1.5;
}

.seo-footer {
  border-top: 1px solid #d8e2ee;
  color: #667085;
  font-size: 14px;
}

@media (max-width: 820px) {
  .seo-header,
  .hero {
    grid-template-columns: 1fr;
  }

  .seo-header {
    align-items: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .stat-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }
}
