:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #192326;
  --muted: #5c696d;
  --line: #d8dedc;
  --primary: #0f766e;
  --primary-dark: #0a4f4a;
  --accent: #c8582b;
  --shadow: 0 18px 50px rgba(25, 35, 38, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer,
.content-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
}

.site-nav {
  gap: 18px;
}

.site-nav a,
.text-link,
.back-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.content-main {
  flex: 1;
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
}

.hero p,
.page-heading p,
.post-description {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 70px 0;
}

.feature-grid,
.post-list {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 22px;
}

.page-heading,
.post-header {
  padding: 70px 0 34px;
}

.post-list {
  padding-bottom: 70px;
}

.post-card {
  padding: 26px;
}

.post-card h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.post-card h2 a {
  text-decoration: none;
}

.post-date,
.post time {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.post {
  max-width: 780px;
}

.post-content {
  padding-bottom: 80px;
  font-size: 1.08rem;
}

.post-content p {
  margin-bottom: 22px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .hero {
    min-height: 440px;
    padding: 52px 0;
  }

  .section-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .page-heading,
  .post-header {
    padding-top: 48px;
  }
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.home-page {
  --home-bg: #fcf8f9;
  --home-surface: #ffffff;
  --home-muted-surface: #f6f3f4;
  --home-text: #1b1b1c;
  --home-muted: #444652;
  --home-line: #c5c5d4;
  --home-primary: #002a8f;
  --home-primary-soft: #dde1ff;
  --home-secondary: #d21034;
  --home-gold: #ffd700;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  padding-bottom: 0;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.home-page h1 {
  color: var(--home-primary);
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1.05;
}

.home-page h2 {
  color: var(--home-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
}

.home-page h3 {
  color: var(--home-primary);
  font-size: 1.35rem;
  line-height: 1.25;
}

.home-page p {
  color: var(--home-muted);
}

.home-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.home-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(1200px, 100%);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(252, 248, 249, 0.92);
  box-shadow: 0 6px 22px rgba(27, 27, 28, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.home-brand,
.home-nav a {
  text-decoration: none;
}

.home-brand {
  color: var(--home-primary);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.home-nav-links a {
  color: var(--home-text);
  font-weight: 700;
}

.home-nav-links a.active {
  color: var(--home-secondary);
  border-bottom: 2px solid var(--home-secondary);
}

.nav-cta,
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.home-button.primary {
  background: var(--home-secondary);
  color: #fff;
  box-shadow: 0 18px 38px rgba(210, 16, 52, 0.22);
}

.home-button.secondary {
  border: 2px solid var(--home-primary);
  color: var(--home-primary);
  background: transparent;
}

.home-hero {
  overflow: hidden;
  padding: 150px 0 96px;
  background: radial-gradient(circle at top right, #dde1ff 0%, #fcf8f9 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.15rem;
}

.pill {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--home-primary-soft);
  color: #001452;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-buttons,
.hero-proof,
.status-title,
.trust-grid span,
.section-title-row,
.mobile-nav,
.mobile-nav a {
  display: flex;
  align-items: center;
}

.hero-buttons {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  border-top: 1px solid rgba(117, 118, 132, 0.25);
  padding-top: 24px;
  color: #757684;
  font-weight: 700;
}

.hero-proof span,
.trust-grid span {
  display: inline-flex;
  gap: 8px;
}

.hero-proof i,
.trust-grid i,
.benefit-card i,
.article-card span {
  color: var(--home-secondary);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-photo,
.requirements-photo,
.article-photo {
  background-position: center;
  background-size: cover;
}

.hero-photo {
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 32px;
  background-image: linear-gradient(rgba(0, 42, 143, 0.1), rgba(0, 42, 143, 0.1)), url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80");
  box-shadow: 0 28px 70px rgba(0, 42, 143, 0.22);
  transform: rotate(3deg);
}

.status-card {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(280px, 80%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(27, 27, 28, 0.18);
  backdrop-filter: blur(12px);
}

.status-title {
  gap: 10px;
  color: var(--home-primary);
}

.status-title span {
  color: var(--home-secondary);
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e2e3;
}

.progress span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--home-secondary);
}

.trust-bar {
  border-block: 1px solid rgba(197, 197, 212, 0.35);
  background: #fcf8f9;
  padding: 44px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  color: var(--home-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-section {
  padding: 92px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
}

.align-center {
  align-items: center;
}

.intro-section p,
.requirements-section p,
.editorial-copy p {
  font-size: 1.1rem;
}

.notice-card {
  display: flex;
  gap: 18px;
  align-self: center;
  border-radius: 24px;
  background: #002a8f;
  padding: 32px;
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 42, 143, 0.22);
}

.notice-card h3,
.notice-card p,
.notice-card span {
  color: #fff;
}

.notice-card > span {
  color: var(--home-gold);
  font-size: 42px;
}

.muted-section,
.blog-preview {
  background: var(--home-muted-surface);
}

.center-heading {
  max-width: 760px;
  margin-bottom: 50px;
  text-align: center;
}

.center-heading p {
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.benefit-card,
.article-card,
.faq-list details {
  border: 1px solid rgba(197, 197, 212, 0.65);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(27, 27, 28, 0.06);
}

.info-card,
.benefit-card {
  padding: 30px;
}

.info-card i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(210, 16, 52, 0.1);
  color: var(--home-secondary);
  font-size: 32px;
}

.benefit-card i {
  margin-bottom: 18px;
  font-size: 42px;
}

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

.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 18%;
  right: 18%;
  border-top: 2px dashed var(--home-line);
}

.steps article {
  position: relative;
  text-align: center;
}

.steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--home-primary);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 42, 143, 0.25);
}

.requirements-section {
  background: var(--home-primary);
}

.requirements-section h2,
.requirements-section p {
  color: #fff;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #fff;
  font-weight: 700;
}

.checklist li::before {
  content: "check_circle";
  margin-right: 10px;
  color: var(--home-secondary);
  font-family: "Material Symbols Outlined";
  vertical-align: -5px;
}

.requirements-photo {
  aspect-ratio: 16 / 10;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.editorial-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-image: linear-gradient(90deg, rgba(252, 248, 249, 0.98), rgba(252, 248, 249, 0.84), rgba(252, 248, 249, 0.2)), url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.editorial-copy {
  max-width: 560px;
}

.faq-list {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
}

.faq-list details {
  padding: 24px;
}

.faq-list details + details {
  margin-top: 14px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--home-primary);
  cursor: pointer;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.section-title-row {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section-title-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-secondary);
  font-weight: 800;
  text-decoration: none;
}

.article-card {
  overflow: hidden;
}

.article-card > div:last-child {
  padding: 28px;
}

.article-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-photo {
  aspect-ratio: 16 / 9;
}

.article-photo.one {
  background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80");
}

.article-photo.two {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.article-photo.three {
  background-image: url("https://images.unsplash.com/photo-1483683804023-6ccdb62f86ef?auto=format&fit=crop&w=900&q=80");
}

.final-cta {
  background: var(--home-bg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: radial-gradient(circle at bottom left, rgba(210, 16, 52, 0.35), transparent 40%), #002a8f;
  padding: clamp(48px, 9vw, 96px);
  text-align: center;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  max-width: 680px;
  margin-inline: auto;
}

.home-footer {
  border-top: 1px solid rgba(197, 197, 212, 0.65);
  background: #e5e2e3;
  padding: 38px 0 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid strong {
  color: var(--home-primary);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: var(--home-muted);
  text-decoration: none;
}

.mobile-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 55;
  width: 100%;
  height: 64px;
  justify-content: space-around;
  border-top: 1px solid rgba(197, 197, 212, 0.5);
  background: #fff;
  box-shadow: 0 -8px 28px rgba(27, 27, 28, 0.08);
}

.mobile-nav a {
  flex-direction: column;
  gap: 2px;
  color: var(--home-muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a.active {
  color: var(--home-secondary);
}

@media (min-width: 761px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-nav-links {
    display: none;
  }

  .hero-grid,
  .two-column,
  .card-grid.four,
  .card-grid.three,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-photo {
    margin: 0 auto;
  }

  .status-card {
    left: 20px;
    bottom: 0;
  }

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

@media (max-width: 640px) {
  .home-page {
    padding-bottom: 64px;
  }

  .home-nav {
    padding-inline: 20px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .home-hero {
    padding: 110px 0 64px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section {
    padding: 64px 0;
  }

  .checklist,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.article-page {
  --article-bg: #fcf8f9;
  --article-surface: #ffffff;
  --article-muted-surface: #f6f3f4;
  --article-surface-high: #eae7e8;
  --article-text: #1b1b1c;
  --article-muted: #444652;
  --article-line: #c5c5d4;
  --article-primary: #00185e;
  --article-primary-container: #002a8f;
  --article-primary-soft: #dde1ff;
  --article-secondary: #ba002a;
  --article-error: #ba1a1a;
  background: var(--article-bg);
  color: var(--article-text);
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
}

.article-page h1,
.article-page h2,
.article-page h3,
.article-page p {
  margin-top: 0;
}

.article-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.article-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: 64px;
  border-bottom: 1px solid var(--article-line);
  background: rgba(252, 248, 249, 0.96);
  backdrop-filter: blur(14px);
}

.article-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.article-brand {
  color: var(--article-primary);
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.article-nav nav {
  display: flex;
  gap: 24px;
}

.article-nav nav a {
  color: var(--article-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.article-nav nav a.active {
  color: var(--article-secondary);
  border-bottom: 2px solid var(--article-secondary);
  padding-bottom: 4px;
}

.article-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  background: var(--article-secondary);
  color: #fff;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
}

.article-main {
  padding: 96px 0 80px;
}

.article-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #757684;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.article-breadcrumbs span:last-child {
  color: var(--article-secondary);
}

.article-breadcrumbs .material-symbols-outlined {
  font-size: 16px;
}

.article-hero {
  margin-bottom: 46px;
}

.article-pill {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--article-primary-soft);
  color: #001452;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  color: var(--article-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--article-muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta i {
  color: var(--article-secondary);
}

.article-featured-image {
  aspect-ratio: 21 / 9;
  margin-bottom: 48px;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: 0 4px 20px rgba(0, 24, 94, 0.08);
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
}

.article-toc > div {
  position: sticky;
  top: 96px;
}

.article-toc h2 {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--article-line);
  padding-bottom: 10px;
  color: var(--article-primary);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-toc nav {
  display: grid;
  gap: 2px;
}

.article-toc nav a {
  border-left: 4px solid transparent;
  color: var(--article-muted);
  padding: 9px 0 9px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.article-toc nav a.active,
.article-toc nav a:hover {
  border-left-color: var(--article-secondary);
  background: rgba(186, 0, 42, 0.05);
  color: var(--article-secondary);
}

.toc-cta {
  margin-top: 36px;
  border-top: 4px solid var(--article-secondary);
  border-radius: 8px;
  background: var(--article-primary);
  color: #fff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 24, 94, 0.18);
}

.toc-cta h3,
.toc-cta p {
  color: #fff;
}

.toc-cta a {
  display: block;
  border-radius: 8px;
  background: var(--article-secondary);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
}

.article-content {
  max-width: 860px;
}

.article-content h2 {
  margin: 48px 0 12px;
  color: var(--article-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.article-content h3 {
  margin: 28px 0 10px;
  color: var(--article-primary);
  font-size: 1.5rem;
}

.article-content p,
.article-content li {
  color: var(--article-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 24px;
}

.article-content strong {
  color: var(--article-primary);
}

.article-content blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--article-secondary);
  border-radius: 0 8px 8px 0;
  background: #f0edee;
  padding: 22px 24px;
  color: var(--article-text);
  font-size: 1.1rem;
  font-style: italic;
}

.article-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 46px 0;
}

.article-info-grid > div {
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: var(--article-muted-surface);
  padding: 24px;
}

.article-info-grid span {
  color: var(--article-secondary);
  font-size: 42px;
}

.mistake-box {
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: var(--article-surface-high);
  padding: 28px;
}

.mistake-box h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: var(--article-error);
}

.mistake-box ul {
  list-style: none;
  padding-left: 0;
}

.mistake-box li::before {
  content: "close";
  margin-right: 10px;
  color: var(--article-error);
  font-family: "Material Symbols Outlined";
  vertical-align: -5px;
}

.article-conversion {
  position: relative;
  overflow: hidden;
  margin: 48px 0;
  border-left: 8px solid var(--article-secondary);
  border-radius: 18px;
  background: var(--article-primary-container);
  color: #fff;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 18px 44px rgba(0, 42, 143, 0.22);
}

.article-conversion h3,
.article-conversion p {
  color: #fff;
}

.article-conversion h3 {
  margin-top: 0;
  font-size: 2rem;
}

.article-conversion div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.article-conversion a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 999px;
  background: var(--article-secondary);
  color: #fff;
  padding: 0 26px;
  font-weight: 800;
  text-decoration: none;
}

.article-conversion span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.article-content details {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: var(--article-muted-surface);
}

.article-content summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--article-primary);
  cursor: pointer;
  font-weight: 800;
}

.article-content summary::-webkit-details-marker {
  display: none;
}

.article-content details[open] summary span {
  transform: rotate(180deg);
}

.article-content details p {
  margin: 0;
  border-top: 1px solid rgba(197, 197, 212, 0.35);
  padding: 18px 24px 24px;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 72px;
  border-top: 1px solid var(--article-line);
  padding-top: 40px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border: 2px solid var(--article-secondary);
  border-radius: 50%;
  background-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=400&q=80");
  background-position: center;
  background-size: cover;
}

.author-block h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.related-guides {
  margin-top: 80px;
}

.related-guides > h2 {
  margin-bottom: 32px;
  color: var(--article-primary);
  text-align: center;
  text-transform: uppercase;
}

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

.related-card {
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.related-card span,
.related-card h3,
.related-card p {
  margin-inline: 22px;
}

.related-card span {
  display: block;
  margin-top: 22px;
  color: var(--article-secondary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card h3 {
  margin-top: 8px;
  color: var(--article-primary);
  font-size: 1.25rem;
}

.related-card p {
  margin-bottom: 24px;
  color: var(--article-muted);
}

.related-image {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
}

.related-image.resort {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.related-image.visa {
  background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80");
}

.related-image.trinidad {
  background-image: url("https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=900&q=80");
}

.article-footer {
  background: var(--article-primary);
  color: #fff;
  padding: 72px 0;
}

.article-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
}

.article-footer strong,
.article-footer h2,
.article-footer p,
.article-footer a {
  color: #fff;
}

.article-footer strong {
  display: block;
  margin-bottom: 20px;
  font-size: 1.45rem;
}

.article-footer h2 {
  margin-bottom: 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.article-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--article-primary-soft);
  text-decoration: none;
}

@media (max-width: 980px) {
  .article-nav nav,
  .article-toc {
    display: none;
  }

  .article-featured-image {
    aspect-ratio: 16 / 10;
  }

  .article-layout,
  .article-info-grid,
  .related-grid,
  .article-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-main {
    padding-top: 88px;
  }

  .article-cta {
    padding-inline: 14px;
  }

  .author-block {
    align-items: flex-start;
    flex-direction: column;
  }
}

.blog-page {
  --blog-bg: #fcf8f9;
  --blog-surface: #ffffff;
  --blog-muted-surface: #f6f3f4;
  --blog-text: #1b1b1c;
  --blog-muted: #444652;
  --blog-line: #c5c5d4;
  --blog-primary: #00185e;
  --blog-primary-bright: #002a8f;
  --blog-primary-soft: #dde1ff;
  --blog-secondary: #ba002a;
  background: var(--blog-bg);
  color: var(--blog-text);
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
}

.blog-page h1,
.blog-page h2,
.blog-page h3,
.blog-page p {
  margin-top: 0;
}

.blog-page h1,
.blog-page h2,
.blog-page h3 {
  color: var(--blog-primary);
  letter-spacing: 0;
}

.blog-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 64px;
  border-bottom: 1px solid rgba(197, 197, 212, 0.35);
  background: rgba(252, 248, 249, 0.92);
  box-shadow: 0 4px 18px rgba(0, 24, 94, 0.06);
  backdrop-filter: blur(14px);
}

.blog-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-brand {
  color: var(--blog-primary);
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-nav nav a,
.blog-cta {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-nav nav a {
  color: var(--blog-text);
}

.blog-nav nav a.active {
  color: var(--blog-secondary);
  border-bottom: 2px solid var(--blog-secondary);
  padding-bottom: 4px;
}

.blog-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  background: var(--blog-secondary);
  color: #fff;
  padding: 0 22px;
}

.blog-main {
  padding: 96px 0 48px;
}

.blog-hero {
  margin-bottom: 48px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blog-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs span:last-child {
  color: var(--blog-primary);
}

.breadcrumbs .material-symbols-outlined {
  font-size: 16px;
}

.blog-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
}

.blog-hero p {
  max-width: 720px;
  color: var(--blog-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.featured-article {
  display: grid;
  grid-template-columns: 7fr 5fr;
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid rgba(197, 197, 212, 0.45);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 24, 94, 0.06);
}

.featured-image {
  min-height: 430px;
  background-image: linear-gradient(90deg, rgba(0, 24, 94, 0.18), transparent), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1300&q=80");
  background-position: center;
  background-size: cover;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 48px);
}

.category-pill {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 4px;
  background: #e2213d;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.featured-copy p,
.blog-card p,
.sidebar-card p,
.newsletter-card p,
.support-card p,
.blog-footer p {
  color: var(--blog-muted);
}

.author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}

.author-row > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #eae7e8;
  color: var(--blog-primary);
}

.author-row p {
  margin: 2px 0 0;
  font-size: 0.85rem;
}

.read-more,
.card-link,
.support-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blog-secondary);
  font-weight: 800;
  text-decoration: none;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  gap: 24px;
}

.article-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(197, 197, 212, 0.4);
  padding-bottom: 16px;
}

.article-toolbar h2 {
  margin: 0;
  font-size: 1.6rem;
}

.view-buttons {
  display: flex;
  gap: 8px;
}

.view-buttons span,
.pagination a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  color: var(--blog-muted);
}

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

.blog-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(197, 197, 212, 0.35);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 24, 94, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 24, 94, 0.08);
}

.blog-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
}

.blog-card-image::after {
  content: "D'Viajeros";
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 4px;
  background: var(--blog-primary-bright);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.blog-card-image.image-1,
.blog-card-image.image-5 {
  background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80");
}

.blog-card-image.image-2,
.blog-card-image.image-6 {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
}

.blog-card-image.image-3,
.blog-card-image.image-7 {
  background-image: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=900&q=80");
}

.blog-card-image.image-4,
.blog-card-image.image-8 {
  background-image: url("https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=900&q=80");
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blog-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-meta span:nth-child(2) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blog-line);
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card p {
  margin-bottom: 22px;
}

.card-link {
  margin-top: auto;
}

.card-link .material-symbols-outlined {
  font-size: 18px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.pagination a {
  border-radius: 8px;
  text-decoration: none;
}

.pagination a.active {
  border-color: var(--blog-primary);
  background: var(--blog-primary);
  color: #fff;
  font-weight: 800;
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 28px;
}

.sidebar-card,
.newsletter-card,
.support-card {
  border: 1px solid rgba(197, 197, 212, 0.42);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 24, 94, 0.05);
}

.sidebar-card {
  background: #fff;
  padding: 24px;
}

.sidebar-card h2,
.newsletter-card h2 {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box {
  position: relative;
  display: block;
}

.search-box span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--blog-primary);
  transform: translateY(-50%);
}

.search-box input,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--blog-line);
  border-radius: 4px;
  font: inherit;
}

.search-box input {
  background: var(--blog-muted-surface);
  padding: 0 14px 0 48px;
}

.category-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blog-text);
  text-decoration: none;
}

.category-list span {
  border-radius: 4px;
  background: var(--blog-primary-soft);
  color: #001452;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  background: var(--blog-primary);
  color: #fff;
  padding: 30px;
}

.newsletter-card > span {
  color: #ffb3b2;
  font-size: 42px;
}

.newsletter-card h2,
.newsletter-card p,
.newsletter-card small,
.newsletter-form label {
  color: #fff;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.newsletter-form label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 12px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form button {
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  background: var(--blog-secondary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.newsletter-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--blog-muted-surface);
  padding: 24px;
}

.support-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(186, 0, 42, 0.1);
  color: var(--blog-secondary);
}

.support-card p {
  margin: 4px 0 8px;
  font-size: 0.85rem;
}

.blog-footer {
  border-top: 1px solid var(--blog-line);
  background: #e5e2e3;
}

.blog-footer .footer-grid {
  padding: 48px 0;
}

.blog-footer h2 {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--blog-muted);
  text-decoration: none;
}

.blog-footer a.active,
.blog-footer a:hover {
  color: var(--blog-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(117, 118, 132, 0.25);
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .blog-nav nav {
    display: none;
  }

  .featured-article,
  .blog-layout,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 320px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .blog-main {
    padding-top: 88px;
  }

  .blog-cta {
    padding-inline: 14px;
  }

  .article-toolbar,
  .blog-nav {
    align-items: flex-start;
  }

  .article-toolbar {
    flex-direction: column;
  }
}

.gov-home {
  --home-bg: #f4f6f9;
  --home-surface: #ffffff;
  --home-muted-surface: #eef2f6;
  --home-text: #172033;
  --home-muted: #526070;
  --home-line: #cbd5e1;
  --home-primary: #092b63;
  --home-primary-soft: #dbe8ff;
  --home-secondary: #b4232f;
  --home-gold: #d8a21b;
  background: var(--home-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.gov-home .home-container {
  width: min(1180px, calc(100% - 32px));
}

.gov-topbar {
  background: #061b3a;
  color: #dbe8ff;
  font-size: 0.82rem;
}

.gov-topbar .home-container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gov-nav {
  top: 36px;
  width: 100%;
  min-height: 72px;
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
}

.gov-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--home-primary);
  border-radius: 50%;
  color: var(--home-primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.gov-home .home-nav-links a {
  color: #223047;
  font-size: 0.94rem;
}

.gov-home .home-nav-links a.active {
  border-bottom-color: var(--home-secondary);
  color: var(--home-secondary);
}

.gov-home .nav-cta,
.gov-home .home-button.primary {
  border-radius: 4px;
  background: var(--home-secondary);
  box-shadow: none;
}

.gov-home .home-button.secondary {
  border-color: var(--home-primary);
  border-radius: 4px;
  background: #fff;
}

.gov-hero {
  padding: 158px 0 70px;
  border-bottom: 1px solid var(--home-line);
  background:
    linear-gradient(90deg, rgba(9, 43, 99, 0.08) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(9, 43, 99, 0.06) 0 1px, transparent 1px),
    #f4f6f9;
  background-size: 32px 32px;
}

.gov-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.gov-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--home-primary);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.gov-hero-copy .lead {
  max-width: 720px;
  color: #344256;
  font-size: 1.18rem;
}

.gov-kicker,
.section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--home-secondary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gov-alert {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin: 30px 0 0;
  border: 1px solid #e7c66a;
  border-left: 5px solid var(--home-gold);
  border-radius: 4px;
  background: #fff9e7;
  padding: 16px 18px;
}

.gov-alert span {
  color: #956b00;
}

.gov-alert p {
  margin: 0;
  color: #4f3a00;
  font-size: 0.98rem;
}

.gov-service-panel {
  border: 1px solid var(--home-line);
  border-top: 5px solid var(--home-primary);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(9, 43, 99, 0.08);
}

.panel-header {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--home-line);
  padding: 22px;
}

.panel-header > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 4px;
  background: var(--home-primary);
  color: #fff;
}

.panel-header strong {
  display: block;
  color: var(--home-primary);
  font-size: 1.12rem;
}

.panel-header p {
  margin: 2px 0 0;
}

.service-list {
  margin: 0;
}

.service-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 22px;
}

.service-list dt {
  color: var(--home-muted);
  font-weight: 700;
}

.service-list dd {
  margin: 0;
  color: var(--home-text);
  font-weight: 800;
}

.service-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  color: #0f6b3f;
}

.service-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
}

.gov-quick-facts {
  background: #fff;
  padding: 28px 0;
}

.gov-home .trust-grid {
  color: var(--home-primary);
}

.gov-home .trust-grid i,
.gov-home .benefit-card i,
.gov-home .info-card i {
  color: var(--home-primary);
}

.gov-home .home-section {
  padding: 76px 0;
}

.gov-home h2 {
  color: var(--home-primary);
  font-size: clamp(1.8rem, 3.3vw, 2.85rem);
}

.gov-notice {
  border-top: 5px solid var(--home-secondary);
  border-radius: 4px;
  background: #fff;
  color: var(--home-text);
  box-shadow: none;
}

.gov-notice h3,
.gov-notice p,
.gov-notice span {
  color: var(--home-text);
}

.gov-notice > span {
  color: var(--home-secondary);
}

.gov-audience-section {
  border-block: 1px solid var(--home-line);
}

.gov-home .info-card,
.gov-home .benefit-card,
.gov-home .article-card,
.gov-home .faq-list details {
  border-color: var(--home-line);
  border-radius: 4px;
  box-shadow: none;
}

.gov-home .info-card i {
  border-radius: 4px;
  background: var(--home-primary-soft);
}

.gov-steps::before {
  border-top-color: var(--home-line);
}

.gov-steps span {
  border-radius: 4px;
  background: var(--home-primary);
  box-shadow: none;
}

.gov-requirements {
  border-block: 1px solid #153c7a;
  background: #092b63;
}

.gov-requirements .section-label {
  color: #ffccd2;
}

.document-panel {
  display: grid;
  gap: 12px;
}

.doc-row {
  display: grid;
  grid-template-columns: 52px 0.75fr 1.1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  color: #fff;
}

.doc-row span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  color: var(--home-primary);
  font-weight: 900;
}

.doc-row p {
  margin: 0;
  color: #dbe8ff;
}

.gov-banner {
  border-block: 1px solid var(--home-line);
  background: #e8eef7;
}

.gov-banner .editorial-copy {
  max-width: 720px;
}

.gov-blog-preview .article-card {
  min-height: 210px;
}

.gov-blog-preview .article-card > div:last-child,
.gov-blog-preview .article-card > div {
  padding: 28px;
}

.gov-blog-preview .article-card span {
  color: var(--home-secondary);
}

.gov-final-cta .cta-panel {
  border-radius: 4px;
  background: #092b63;
}

.gov-footer {
  background: #e2e8f0;
}

@media (max-width: 980px) {
  .gov-topbar .home-container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .gov-nav {
    top: 56px;
  }

  .gov-hero {
    padding-top: 150px;
  }

  .gov-hero-grid,
  .service-list div,
  .doc-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gov-topbar {
    display: none;
  }

  .gov-nav {
    top: 0;
  }

  .gov-hero {
    padding-top: 108px;
  }

  .brand-seal {
    display: none;
  }
}

.official-home {
  --home-bg: #f5f7fb;
  --home-surface: #ffffff;
  --home-muted-surface: #eef3f8;
  --home-text: #111827;
  --home-muted: #4b5563;
  --home-line: #c9d3e1;
  --home-primary: #002a70;
  --home-primary-soft: #e4ecf8;
  --home-secondary: #cf142b;
  --home-gold: #d8a21b;
  background: var(--home-bg);
}

.official-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  height: 6px;
  grid-template-columns: 1fr 1fr 1fr;
}

.official-strip span:nth-child(1) {
  background: #002a70;
}

.official-strip span:nth-child(2) {
  background: #ffffff;
}

.official-strip span:nth-child(3) {
  background: #cf142b;
}

.official-header {
  position: fixed;
  inset: 6px 0 auto;
  z-index: 75;
  border-bottom: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.official-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.official-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--home-primary);
  text-decoration: none;
}

.official-emblem {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--home-primary);
  border-radius: 50%;
  background: #fff;
  color: var(--home-primary);
  font-weight: 900;
}

.official-brand strong,
.official-brand small {
  display: block;
  line-height: 1.15;
}

.official-brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.official-brand small {
  color: var(--home-muted);
  font-weight: 800;
}

.official-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.official-nav a {
  color: #243247;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.official-nav a.active {
  color: var(--home-secondary);
  border-bottom: 3px solid var(--home-secondary);
  padding-bottom: 6px;
}

.official-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 3px;
  background: var(--home-secondary);
  color: #fff;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
}

.language-switcher {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: #f8fafc;
  padding: 4px;
}

.lang-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--home-primary);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 10px;
}

.lang-button.is-active {
  background: #fff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.12);
}

.flag {
  position: relative;
  width: 22px;
  height: 15px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 2px;
  flex: 0 0 auto;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.15px,
    #fff 1.15px 2.3px
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 10px;
  height: 8px;
  background: #3c3b6e;
}

.flag-es {
  background: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.official-hero {
  padding: 146px 0 72px;
  border-bottom: 1px solid var(--home-line);
  background:
    linear-gradient(105deg, rgba(0, 42, 112, 0.95) 0%, rgba(0, 42, 112, 0.9) 46%, rgba(0, 42, 112, 0.08) 46.2%, rgba(0, 42, 112, 0) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.official-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.7fr);
  gap: 46px;
  align-items: center;
}

.official-hero-copy {
  color: #fff;
}

.official-kicker,
.official-hero-copy h1,
.official-hero-copy .official-lead {
  color: #fff;
}

.official-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.official-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  line-height: 1.08;
}

.official-lead {
  max-width: 690px;
  font-size: 1.18rem;
}

.official-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.official-home .home-button {
  border-radius: 3px;
  box-shadow: none;
}

.official-home .home-button.primary {
  background: var(--home-secondary);
}

.official-home .home-button.secondary {
  border-color: #fff;
  background: #fff;
  color: var(--home-primary);
}

.official-procedure-card {
  border: 1px solid var(--home-line);
  border-top: 6px solid var(--home-secondary);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.procedure-head {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--home-line);
  padding: 22px;
}

.procedure-head > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--home-primary);
  color: #fff;
}

.procedure-head strong {
  display: block;
  color: var(--home-primary);
  font-size: 1.2rem;
}

.procedure-head p,
.procedure-status {
  margin: 0;
  color: var(--home-muted);
}

.procedure-status {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--home-line);
  padding: 14px 22px;
  background: #f8fafc;
}

.procedure-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
}

.procedure-status strong {
  color: #166534;
}

.official-procedure-card dl {
  margin: 0;
}

.official-procedure-card dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 22px;
}

.official-procedure-card dl div:last-child {
  border-bottom: 0;
}

.official-procedure-card dt {
  color: var(--home-muted);
  font-weight: 800;
}

.official-procedure-card dd {
  margin: 0;
  color: var(--home-text);
  font-weight: 900;
}

.official-facts {
  border-bottom: 1px solid var(--home-line);
  background: #fff;
  padding: 24px 0;
}

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

.official-fact-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--home-primary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.official-fact-grid i {
  color: var(--home-secondary);
}

.official-home .home-section {
  padding: 76px 0;
}

.official-home h2 {
  color: var(--home-primary);
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
}

.official-home .section-label {
  color: var(--home-secondary);
}

.official-notice {
  display: flex;
  gap: 18px;
  align-self: center;
  border: 1px solid var(--home-line);
  border-left: 6px solid var(--home-primary);
  border-radius: 3px;
  background: #fff;
  padding: 28px;
}

.official-notice > span {
  color: var(--home-secondary);
  font-size: 40px;
}

.official-notice h3 {
  color: var(--home-primary);
}

.official-band,
.official-guidance {
  border-block: 1px solid var(--home-line);
  background: #eef3f8;
}

.official-home .info-card,
.official-home .benefit-card,
.official-home .article-card,
.official-home .faq-list details {
  border-color: var(--home-line);
  border-radius: 3px;
  box-shadow: none;
}

.official-home .info-card i,
.official-home .benefit-card i {
  border-radius: 3px;
  background: var(--home-primary-soft);
  color: var(--home-primary);
}

.official-steps span {
  border-radius: 3px;
  background: var(--home-primary);
  box-shadow: none;
}

.official-steps::before {
  border-top-color: var(--home-line);
}

.official-requirements {
  border-block: 1px solid #05245d;
  background: #002a70;
}

.official-requirements h2,
.official-requirements p,
.official-requirements .checklist {
  color: #fff;
}

.official-requirements .section-label {
  color: #ffd7dd;
}

.official-document {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.doc-title {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
}

.doc-title span {
  color: #fff;
}

.official-document .doc-row {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.official-document .doc-row:last-child {
  border-bottom: 0;
}

.official-callout {
  border-block: 1px solid var(--home-line);
  background: #fff;
  padding: 52px 0;
}

.official-callout .home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.official-callout h2 {
  max-width: 720px;
}

.official-callout p {
  max-width: 760px;
}

.official-guidance .article-card > div {
  padding: 28px;
}

.official-guidance .article-card span {
  color: var(--home-secondary);
}

.official-final .cta-panel {
  border-radius: 3px;
  background: linear-gradient(135deg, #002a70, #001946);
}

.official-footer {
  background: #061b3a;
}

.official-footer strong,
.official-footer h4,
.official-footer p,
.official-footer a {
  color: #fff;
}

.official-footer a {
  color: #dbe8ff;
}

.official-home .mobile-nav a.active {
  color: var(--home-secondary);
}

@media (max-width: 980px) {
  .official-nav {
    display: none;
  }

  .official-hero {
    background: var(--home-primary);
  }

  .official-hero-grid,
  .official-procedure-card dl div,
  .official-fact-grid {
    grid-template-columns: 1fr;
  }

  .official-callout .home-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .official-header-inner {
    gap: 12px;
  }

  .language-switcher {
    order: 3;
  }
}

@media (max-width: 640px) {
  .official-brand strong {
    font-size: 0.86rem;
  }

  .official-emblem {
    display: none;
  }

  .official-action {
    padding-inline: 12px;
  }

  .lang-button span:last-child {
    display: none;
  }

  .official-hero {
    padding-top: 116px;
  }
}

.official-content-page.blog-page,
.official-content-page.article-page {
  --blog-bg: #f5f7fb;
  --blog-primary: #002a70;
  --blog-secondary: #cf142b;
  --blog-muted: #4b5563;
  --blog-line: #c9d3e1;
  --article-bg: #f5f7fb;
  --article-primary: #002a70;
  --article-primary-container: #002a70;
  --article-secondary: #cf142b;
  --article-muted: #4b5563;
  --article-line: #c9d3e1;
  background: #f5f7fb;
}

.official-content-page .blog-main,
.official-content-page .article-main {
  padding-top: 124px;
}

.official-content-page .blog-hero,
.official-content-page .article-hero {
  border-bottom: 1px solid var(--home-line);
  margin-bottom: 34px;
  padding-bottom: 30px;
}

.official-content-page .blog-hero h1,
.official-content-page .article-hero h1 {
  color: var(--home-primary);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.official-content-page .breadcrumbs,
.official-content-page .article-breadcrumbs {
  color: var(--home-muted);
}

.official-content-page .featured-article,
.official-content-page .blog-card,
.official-content-page .sidebar-card,
.official-content-page .support-card,
.official-content-page .related-card,
.official-content-page .article-content details {
  border-color: var(--home-line);
  border-radius: 3px;
  box-shadow: none;
}

.official-content-page .featured-article {
  border-top: 5px solid var(--home-primary);
}

.official-content-page .featured-image,
.official-content-page .blog-card-image,
.official-content-page .article-featured-image,
.official-content-page .related-image {
  filter: saturate(0.86) contrast(0.96);
}

.official-content-page .category-pill,
.official-content-page .blog-card-image::after {
  border-radius: 3px;
  background: var(--home-secondary);
}

.official-content-page .newsletter-card,
.official-content-page .article-conversion,
.official-content-page .toc-cta {
  border-radius: 3px;
  background: var(--home-primary);
  box-shadow: none;
}

.official-content-page .newsletter-form button,
.official-content-page .article-conversion a,
.official-content-page .toc-cta a {
  border-radius: 3px;
  background: var(--home-secondary);
}

.official-content-page .blog-footer,
.official-content-page .article-footer {
  background: #061b3a;
}

.official-content-page .blog-footer h2,
.official-content-page .blog-footer p,
.official-content-page .blog-footer a,
.official-content-page .blog-footer .blog-brand,
.official-content-page .article-footer h2,
.official-content-page .article-footer p,
.official-content-page .article-footer a,
.official-content-page .article-footer strong {
  color: #fff;
}

.official-content-page .blog-footer a,
.official-content-page .article-footer a {
  color: #dbe8ff;
}

.official-content-page .article-toc nav a.active,
.official-content-page .article-toc nav a:hover {
  border-left-color: var(--home-secondary);
  color: var(--home-secondary);
}

.official-content-page .article-pill,
.official-content-page .category-list span {
  border-radius: 3px;
  background: var(--home-primary-soft);
  color: var(--home-primary);
}

.official-content-page .article-content blockquote,
.official-content-page .mistake-box,
.official-content-page .article-info-grid > div {
  border-color: var(--home-line);
  border-radius: 3px;
}

.official-content-page .article-conversion {
  border-left-color: var(--home-secondary);
}

.official-content-page .author-avatar {
  border-color: var(--home-secondary);
  background-image: none;
  background-color: var(--home-primary-soft);
}

@media (max-width: 980px) {
  .official-content-page .blog-main,
  .official-content-page .article-main {
    padding-top: 112px;
  }
}
