:root {
  --ink: #211b27;
  --muted: #5f5965;
  --line: #dfdce2;
  --surface: #ffffff;
  --surface-soft: #f6f5f7;
  --accent: #8f159f;
  --accent-dark: #6f0f7d;
  --mint: #dff3ea;
  --mint-ink: #174e3c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.country-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.country-hero {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  padding: 68px 0 56px;
}

.country-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.country-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--mint-ink);
  font-size: 14px;
  font-weight: 700;
}

.country-eyebrow::before {
  width: 26px;
  height: 3px;
  background: #2f8064;
  content: "";
}

.country-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
}

.country-hero__lead {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
}

.country-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.country-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.country-button:hover,
.country-button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.country-button--secondary {
  background: transparent;
  color: var(--accent-dark);
}

.country-button--secondary:hover,
.country-button--secondary:focus-visible {
  color: #ffffff;
}

.country-hero__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(33, 27, 39, 0.12);
}

.country-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
}

.country-section {
  padding: 68px 0;
}

.country-section--soft {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.country-section--mint {
  background: var(--mint);
}

.country-section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.country-section h2 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
}

.country-section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.country-section p {
  color: var(--muted);
}

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

.country-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.country-card p {
  margin: 0;
}

.country-card__index {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 700;
}

.country-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.country-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-checklist li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(23, 78, 60, 0.18);
}

.country-checklist li::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--mint-ink);
  content: "\2713";
  font-weight: 700;
}

.country-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-related a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.country-related a:hover,
.country-related a:focus-visible {
  border-color: var(--accent);
}

.country-faq {
  display: grid;
  gap: 12px;
}

.country-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
}

.country-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.country-faq p {
  margin: 12px 0 0;
}

.country-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.country-cta h2,
.country-cta p {
  margin-top: 0;
}

.country-footer {
  border-top: 1px solid #39333e;
  background: #211b27;
  color: #ffffff;
}

.country-footer__layout {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 52px 0 34px;
}

.country-footer h2,
.country-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0;
}

.country-footer p {
  margin: 0;
  color: #c9c4cc;
}

.country-footer a {
  display: block;
  margin: 8px 0;
  color: #ece9ee;
  text-decoration: none;
}

.country-footer a:hover,
.country-footer a:focus-visible {
  color: #f1b9fa;
}

.country-footer__bottom {
  padding: 18px 0 28px;
  border-top: 1px solid #39333e;
  color: #c9c4cc;
  font-size: 14px;
}

@media (max-width: 900px) {
  .country-hero__layout,
  .country-two-column,
  .country-cta {
    grid-template-columns: 1fr;
  }

  .country-grid,
  .country-footer__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-hero__media {
    max-width: 640px;
  }

  .country-hero h1 {
    font-size: 48px;
  }

  .country-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 620px) {
  .country-shell {
    width: min(100% - 28px, 1160px);
  }

  .country-hero {
    padding: 46px 0 42px;
  }

  .country-hero__layout {
    gap: 34px;
  }

  .country-hero h1 {
    font-size: 36px;
  }

  .country-section h2 {
    font-size: 30px;
  }

  .country-section {
    padding: 50px 0;
  }

  .country-grid,
  .country-footer__layout {
    grid-template-columns: 1fr;
  }

  .country-button {
    width: 100%;
  }
}
