:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f3f4f6;
  --ink: #111827;
  --muted: #6b7280;
  --line: #d1d5db;
  --action: #374151;
  --success: #059669;
  --danger: #dc2626;
  --amber: #b45309;
  --blue: #2563eb;
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
}

body:not(.app-ready) .site-shell,
body:not(.app-ready) .toast {
  visibility: hidden;
  opacity: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.loading-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(5px 5px 5px #333333);
  animation: fpesa-logo-load 1400ms ease-in-out infinite;
}

.app-ready .loading-screen {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes fpesa-logo-load {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.82;
  }

  50% {
    transform: translateY(-5px) scale(1.06);
    opacity: 1;
  }
}

.site-shell {
  min-height: 100vh;
}

.home-screen {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.home-inner {
  display: grid;
  width: min(860px, 100%);
  gap: 18px;
  justify-items: center;
}

.hero-logo,
.brand img {
  object-fit: contain;
  filter: drop-shadow(5px 5px 5px #333333);
}

.product-name {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.rate-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: min(860px, 100%);
  overflow: hidden;
  padding: 0;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rate-ticker > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.rate-ticker strong#rateTicker {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}

.rate-ticker:hover strong#rateTicker {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.ticker-item strong {
  color: var(--ink);
  font-weight: 600;
}

.ticker-item em {
  font-style: normal;
  font-weight: 600;
}

.ticker-item em.is-up {
  color: var(--success);
}

.ticker-item em.is-down {
  color: var(--danger);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rate-ticker strong#rateTicker {
    animation: none;
  }
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

.trademark {
  margin-left: 0.12em;
  font-size: 0.34em;
  font-weight: 600;
  line-height: 0;
  vertical-align: super;
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.home-links,
.trust-badges,
.form-actions,
.action-grid,
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.primary-action,
.secondary-action,
.ghost-action,
.portal-tab,
.home-links button,
.home-links a,
.menu-toggle,
.mini-action,
.modal-close {
  min-height: 40px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--action);
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.primary-action,
.secondary-action,
.ghost-action,
.home-links button,
.home-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.primary-action {
  color: #ffffff;
  background: var(--action);
}

.primary-action:hover,
.secondary-action:hover,
.ghost-action:hover,
.home-links button:hover,
.home-links a:hover,
.portal-tab:hover,
.portal-tab.is-active,
.mini-action:hover {
  color: #ffffff;
  background: var(--action);
}

.trust-badges span,
.badge,
.stat,
.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge.success,
.status.accepted,
.status.active,
.status.completed {
  color: #ffffff;
  background: var(--success);
  border-color: var(--success);
}

.status.pending,
.status.quoted,
.status.receiving_quotes {
  color: var(--amber);
  background: #fff7ed;
  border-color: #fed7aa;
}

.status.expired,
.status.rejected,
.status.cancelled {
  color: #ffffff;
  background: var(--danger);
  border-color: var(--danger);
}

.status.best {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 40;
  display: flex;
  width: 42px;
  height: 34px;
  flex-direction: column;
  justify-content: space-between;
  padding: 7px;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 3px;
}

.menu-items {
  position: fixed;
  top: 64px;
  right: 22px;
  z-index: 39;
  display: none;
  min-width: 190px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.menu-items.is-active {
  display: grid;
}

.menu-items a,
.menu-items > button,
.menu-accordion summary,
.menu-subitems button {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  text-decoration: none;
}

.menu-items > button:last-child,
.menu-items a:last-child {
  border-bottom: 0;
}

.menu-accordion {
  border-bottom: 1px solid var(--line);
}

.menu-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  cursor: pointer;
  list-style: none;
}

.menu-accordion summary::-webkit-details-marker {
  display: none;
}

.menu-accordion summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 700;
}

.menu-accordion[open] summary::after {
  content: "-";
}

.menu-subitems {
  display: grid;
  background: var(--bg-soft);
}

.menu-subitems button {
  padding-left: 24px;
  background: var(--bg-soft);
  font-size: 0.9rem;
}

.menu-items a:hover,
.menu-items > button:hover,
.menu-accordion summary:hover,
.menu-subitems button:hover {
  color: #ffffff;
  background: var(--action);
}

.app-frame {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.app-frame[hidden] {
  display: none;
}

.site-footer {
  color: var(--ink);
  background: #f3f4f6;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(240px, 0.9fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 44px 22px;
}

.footer-brand,
.footer-links,
.footer-office {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.footer-logo img {
  object-fit: contain;
  filter: drop-shadow(4px 4px 4px rgba(17, 24, 39, 0.28));
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  font-weight: 600;
}

.footer-logo small,
.footer-brand p,
.footer-contact-list span,
.footer-office-card span,
.footer-office-card address,
.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
}

.footer-contact-list,
.footer-links ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 4px;
}

.footer-contact-list span,
.footer-office-card span {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact-list address,
.footer-office-card a,
.footer-office-card address,
.footer-links a,
.footer-links button {
  color: var(--ink);
  font-style: normal;
  text-decoration: none;
}

.footer-links h3,
.footer-office h3 {
  margin: 0;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
}

.footer-contact-list a:hover,
.footer-office-card a:hover,
.footer-links a:hover,
.footer-links button:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.footer-office-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer-office-card strong {
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

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

.footer-bottom p + p {
  margin-top: 4px;
  font-size: 0.74rem;
}

.footer-bottom nav {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 18px;
  font-size: 0.82rem;
}

.legal-shell {
  background: var(--bg-soft);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.legal-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-nav a {
  text-decoration: none;
}

.legal-nav a:hover,
.legal-card a:hover {
  color: var(--blue);
}

.legal-page {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 42px 22px;
}

.legal-hero,
.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-hero {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-hero p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-grid {
  display: grid;
  gap: 14px;
}

.legal-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.legal-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.legal-card a {
  color: var(--ink);
  font-weight: 500;
}

.marketing-shell {
  background: var(--bg-soft);
}

.marketing-hero {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 64px 22px 42px;
  text-align: center;
}

.marketing-hero .hero-logo {
  width: 136px;
  height: 136px;
}

.marketing-hero h1 {
  max-width: 860px;
}

.marketing-lede {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.marketing-page {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 22px 48px;
}

.marketing-grid,
.marketing-steps {
  display: grid;
  gap: 14px;
}

.marketing-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.marketing-steps .info-card {
  align-content: start;
  background: var(--bg-soft);
}

.marketing-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.marketing-list strong {
  color: var(--ink);
  font-weight: 600;
}

.comparison-table {
  min-width: 620px;
  margin-top: 12px;
}

.comparison-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 500;
}

.cta-card {
  gap: 18px;
}

.onboarding-form {
  margin-top: 4px;
}

.onboarding-form .primary-action {
  justify-self: start;
  min-width: 230px;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.portal-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.forgot-link {
  justify-self: start;
  color: var(--muted);
  font-size: 0.86rem;
}

.modal-note {
  margin: 8px 0 18px;
  color: var(--muted);
}

.portal-tab {
  flex: 0 0 auto;
  padding: 0 12px;
  white-space: nowrap;
}

.portal {
  display: none;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 22px;
}

.portal.is-active {
  display: grid;
  gap: 18px;
}

.section-head,
.panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
}

.section-head p,
.panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 8px !important;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.panel {
  min-width: 0;
  padding: 18px;
}

.panel-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rates-grid,
.mini-table,
.request-cards,
.quote-cards,
.settlement-options,
.compliance-board {
  display: grid;
  gap: 10px;
}

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

.info-card,
.rate-card,
.request-card,
.quote-card,
.timeline li {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card strong,
.rate-card strong,
.request-card strong,
.quote-card strong {
  font-weight: 600;
}

.info-card span,
.rate-card span,
.request-card span,
.quote-card span,
.timeline span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.wizard-steps article {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compact-form,
#quoteForm {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  text-align: left;
}

label:has(input[type="radio"]),
.checkline {
  display: flex;
  align-items: center;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
}

button:focus-visible,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(55, 65, 81, 0.22);
  outline-offset: 2px;
}

.inline-control {
  min-width: 220px;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.data-table th {
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.data-table th,
.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.code-block {
  overflow-x: auto;
  margin: 12px 0 0;
  padding: 14px;
  color: #f9fafb;
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.numbered-list {
  line-height: 1.7;
}

.modal {
  width: min(720px, calc(100vw - 28px));
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(17, 24, 39, 0.45);
}

.modal-close {
  float: right;
  width: 34px;
  padding: 0;
}

.conditional-kyc {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ticket-confirmation {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ticket-confirmation strong {
  color: var(--ink);
  font-weight: 600;
}

.ticket-confirmation[hidden] {
  display: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  width: min(390px, calc(100vw - 36px));
  padding: 14px 16px;
  color: #ffffff;
  background: var(--action);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .app-header {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .three-col,
  .two-col,
  .wizard-steps,
  .marketing-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .home-screen,
  .portal {
    padding: 14px;
  }

  .home-inner {
    gap: 14px;
  }

  .hero-logo {
    width: 126px;
    height: 126px;
  }

  .section-head,
  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid,
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .app-header {
    padding: 12px 14px;
  }

  .portal-tabs {
    margin-right: -14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 14px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 14px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .legal-page {
    padding: 24px 14px;
  }

  .marketing-hero {
    padding: 42px 14px 28px;
  }

  .marketing-page {
    padding: 0 14px 34px;
  }

  .onboarding-form .primary-action {
    justify-self: stretch;
  }

  .legal-hero,
  .legal-card {
    padding: 18px;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  color: #f9fafb;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(17, 24, 39, 0.25);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1 1 280px;
  color: #e5e7eb;
}

.cookie-banner a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .ghost-action {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid #4b5563;
  background: transparent;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
}

.cookie-banner .primary-action {
  padding: 8px 18px;
  font-size: 0.875rem;
  min-height: unset;
}

.cookie-banner.cookie-hidden {
  display: none !important;
}

/* ============================================================
   PRINT STYLESHEET
   ============================================================ */
@media print {
  .loading-screen,
  .app-frame,
  nav,
  .menu-toggle,
  .hero-actions,
  .home-links,
  .cookie-banner,
  .toast,
  .modal,
  dialog,
  button {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    font-family: Georgia, serif;
    line-height: 1.6;
  }

  .site-footer {
    border-top: 1px solid #ccc;
    padding-top: 12pt;
    margin-top: 24pt;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    color: black !important;
  }

  .data-table {
    border-collapse: collapse;
    width: 100%;
  }

  .data-table th,
  .data-table td {
    border: 1px solid #ccc;
    padding: 6px 10px;
    color: black !important;
    background: white !important;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #555;
  }

  a[href^="#"]::after,
  a[href^="mailto"]::after,
  a[href^="tel"]::after,
  a[href^="javascript"]::after {
    content: '';
  }
}
