:root {
  --blue: #0a2540;
  --orange: #ff6b00;
  --orange-hover: #e56000;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --bg-main: #f8f9fa;
  --bg-white: #ffffff;
  --border: #e0e0e0;
  --mobile-bar-height: 72px;
}

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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--text-main);
  background: var(--bg-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

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

img {
  height: auto;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 16px;
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--bg-white);
  background: var(--blue);
  padding: 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-decoration: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  max-width: 100%;
  color: var(--bg-white);
  background: var(--orange);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
  transition: background 0.2s ease, transform 0.1s ease;
}

.cta-btn small {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 900;
}

.cta-btn:active {
  background: var(--orange-hover);
  transform: translateY(2px);
}

.cta-large {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
}

.header-phone {
  display: none;
}

.mobile-bar {
  position: fixed;
  z-index: 110;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: var(--mobile-bar-height);
  align-items: stretch;
  justify-content: center;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  visibility: hidden;
  background: var(--blue);
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.mobile-bar.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  background: #ffd166;
  border: 2px solid var(--bg-white);
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.mobile-cta strong {
  white-space: nowrap;
  font-size: 1.05rem;
}

h1,
h2,
h3 {
  color: var(--blue);
  overflow-wrap: anywhere;
}

h1 {
  margin: 1.5rem 0 0.875rem;
  font-size: clamp(1.8rem, 9vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

h3 {
  margin: 1.35rem 0 0.625rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

p,
li,
td,
th,
figcaption {
  overflow-wrap: anywhere;
}

p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

a {
  color: var(--blue);
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.breadcrumbs {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #777777;
  content: "›";
}

.breadcrumbs a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
}

.hero-text {
  color: var(--text-main);
  background: var(--bg-white);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.my-4 {
  margin: 1.5rem 0;
}

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

.content-section,
.data-block,
.faq-block {
  min-width: 0;
  margin-bottom: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.content-section > :first-child,
.data-block > :first-child,
.faq-block > :first-child {
  margin-top: 0;
}

.content-figure {
  width: 100%;
  margin: 1.5rem 0;
}

.content-figure picture,
.content-figure img {
  width: 100%;
}

.content-figure img {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
}

.content-figure figcaption {
  margin-top: 0.625rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-figure {
  margin-block: 1rem 1.5rem;
}

.table-responsive,
.table-scroll {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.table-scroll:focus {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--bg-white);
}

caption {
  padding: 0 0 0.75rem;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: left;
}

th,
td {
  border: 1px solid var(--border);
  padding: 10px;
  font-size: 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--bg-white);
  background: var(--blue);
  font-weight: 700;
}

.block-source {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-top: 3px solid var(--orange);
  background: var(--bg-main);
  padding: 1rem;
}

.faq-item h3 {
  margin-top: 0;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.last-updated {
  margin-top: 2.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.footer {
  margin-top: 2.5rem;
  color: var(--bg-white);
  background: var(--blue);
  padding: 2.25rem 0;
  font-size: 1rem;
}

.footer a {
  color: var(--bg-white);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 1.25rem 0;
}

.footer-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding-block: 8px;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  color: #d3deea;
  font-size: 1rem;
}

@media (min-width: 390px) {
  .container {
    padding-inline: 20px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .cta-large {
    width: auto;
    min-width: min(100%, 330px);
    padding-inline: 24px;
  }

  .content-section,
  .data-block,
  .faq-block {
    padding: 1.25rem;
  }

  .mobile-bar {
    padding-inline: 16px;
  }

  .mobile-cta {
    max-width: 420px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .container {
    padding-inline: 28px;
  }

  .header {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .header-phone {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 8px 18px;
    font-size: 0.95rem;
  }

  .header-phone small {
    font-size: 0.9rem;
  }

  .mobile-bar,
  .mobile-bar.is-visible {
    display: none;
  }

  h1 {
    margin-top: 2rem;
    font-size: 2.5rem;
  }

  h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.05rem;
  }

  .hero-text {
    padding: 1.5rem;
    font-size: 1.15rem;
  }

  .my-4 {
    margin: 2rem 0;
  }

  .content-section,
  .data-block,
  .faq-block {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }

  .footer {
    margin-top: 3rem;
    padding: 3rem 0;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  .footer-nav a {
    min-height: 44px;
  }

  .last-updated,
  .disclaimer {
    font-size: 0.9rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 960px;
    padding-inline: 32px;
  }

  .header-inner {
    max-width: 1120px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .cta-large {
    padding: 17px 36px;
    font-size: 1.1rem;
  }

  .content-section,
  .data-block,
  .faq-block {
    padding: 1.75rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}