/* ── 2010s Light Theme ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2b5081;
  --blue-dark: #1e3a5f;
  --blue-light: #3a6aab;
  --red: #b52025;
  --red-dark: #8c181c;
  --bg: #f0f2f5;
  --white: #ffffff;
  --text: #222222;
  --muted: #555555;
  --light: #888888;
  --border: #cccccc;
  --border-light: #e0e0e0;
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--blue-dark);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

/* ── Wrapper ── */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* ── Main Site Header ── */
.site-header {
  background: linear-gradient(180deg, #3a6aab 0%, var(--blue) 100%);
  border-bottom: 3px solid var(--blue-dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  transition: background .2s, box-shadow .2s;
}

.site-header.scrolled {
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.5);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
}

.logo-text span {
  color: #9ed4ff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,.88);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 14px;
  display: block;
  border-left: 1px solid rgba(255,255,255,.15);
  transition: background .15s, color .15s;
}

nav a:hover {
  background: rgba(0,0,0,.2);
  color: #fff;
  text-decoration: none;
}

nav ul li:last-child a {
  border-right: 1px solid rgba(255,255,255,.15);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  border-left: 1px solid rgba(255,255,255,.15) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(180deg, #dce8f7 0%, #f0f2f5 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  letter-spacing: -.01em;
  max-width: 700px;
  margin-bottom: 12px;
}

h1 .highlight {
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 0;
}

/* ── Search Card ── */
.search-card {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.search-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.search-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f8f8;
}

.tab-btn {
  flex: 1;
  background: #f8f8f8;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.tab-btn:hover:not(.active) {
  background: #e8e8e8;
  color: var(--text);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.form-row-single {
  margin-bottom: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.req-text {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.field input, .field select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  padding: 8px 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder {
  color: #bbb;
}

.field input:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,80,129,.15);
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.field select option {
  background: #fff;
  color: var(--text);
}

.search-btn {
  width: 100%;
  padding: 11px 20px;
  background: linear-gradient(180deg, #3a6aab 0%, #2b5081 100%);
  border: 1px solid var(--blue-dark);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.15);
}

.search-btn:hover {
  background: linear-gradient(180deg, #4a7bc5 0%, #3a6aab 100%);
}

.search-btn:active {
  background: var(--blue-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}

.name-field {
  position: relative;
}

.name-field input {
  padding-right: 36px;
}

.name-field .field-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .4;
  font-size: 1rem;
  pointer-events: none;
}

/* ── Stats ── */
.stats {
  margin-top: 32px;
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 680px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  position: relative;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border-light);
}

.stat-number {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Section Common ── */
.section-eyebrow {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 28px;
  line-height: 1.25;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
}

/* ── Features ── */
.features {
  padding: 40px 24px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow .2s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  border-color: #b0b0b0;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.card-icon.teal { background: #dff4ef; }
.card-icon.blue { background: #dce8f7; }
.card-icon.purple { background: #ece8f7; }

.card-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.card-body {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About Blocks ── */
.about-section {
  padding: 0 24px 40px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-block {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .2s;
}

.about-block:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.about-block-icon {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-block-content {
  flex: 1;
}

.about-block-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.about-block-body {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

.payday-alt-section {
  padding: 0 24px 40px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

/* ── Compare Table ── */
.compare-section {
  padding: 0 24px 40px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.compare-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
}

.compare-header-cell {
  padding: 12px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.compare-header-cell.cu {
  background: var(--blue);
  color: #fff;
}

.compare-header-cell.bank {
  background: #5a5a5a;
  color: #fff;
  text-align: right;
}

.compare-header-cell.label {
  background: #f0f0f0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  border-top: 1px solid var(--border-light);
}

.compare-row:nth-child(even) {
  background: #f8f9fc;
}

.compare-row:hover {
  background: #eef3fa;
}

.compare-cell {
  padding: 14px 18px;
  font-size: .83rem;
  line-height: 1.55;
}

.compare-cell.cu {
  color: var(--text);
  border-right: 1px solid var(--border-light);
}

.compare-cell.bank {
  color: var(--muted);
  text-align: right;
}

.compare-cell.label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  background: inherit;
}

.cu-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ── Value Section ── */
.value-section {
  padding: 0 24px 40px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow .2s;
  position: relative;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.value-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 10px;
}

.value-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.value-body {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  margin: 0 auto 40px;
  max-width: 1040px;
  padding: 0 24px;
  width: 100%;
}

.cta-inner {
  background: linear-gradient(180deg, #3a6aab, var(--blue));
  border: 1px solid var(--blue-dark);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.cta-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cta-text p {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  max-width: 440px;
  line-height: 1.6;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #d63030, var(--red));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
  border: 1px solid var(--red-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.15);
  transition: background .15s;
}

.cta-link:hover {
  background: linear-gradient(180deg, #e04040, #c52828);
  text-decoration: none;
}

/* ── Footer ── */
footer {
  background: var(--blue-dark);
  border-top: 3px solid var(--blue);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  transition: color .15s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}

.footer-disclaimer {
  width: 100%;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 4px;
}

.footer-disclaimer a {
  color: rgba(155,210,255,.7);
  text-decoration: none;
  transition: color .15s;
}

.footer-disclaimer a:hover {
  color: #9ed4ff;
  text-decoration: underline;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--blue-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 0;
}

.mobile-nav a:hover {
  color: #9ed4ff;
  text-decoration: none;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Subpages / Privacy & Terms ── */
.page-content {
  padding-top: 36px;
  padding-bottom: 60px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.page-head {
  background: linear-gradient(180deg, #2b5081 0%, #1e3a5f 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  border-bottom: 3px solid var(--blue-dark);
}

.page-head h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.page-head p {
  color: #9ed4ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.toc h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
}

.toc ol {
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.toc li a {
  font-size: 0.85rem;
  font-weight: 600;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: 28px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: 90px;
}

.card h2:first-child {
  margin-top: 0;
}

.card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 18px;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.card ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.card ul li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.contact-box {
  background: #f8f9fc;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 14px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-header { padding: 0 16px; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; padding: 24px; text-align: center; }
  .cta-text p { max-width: 100%; }
  footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 700px) {
  .compare-header { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-cell.label, .compare-header-cell.label { display: none; }
  .compare-cell.bank { text-align: left; }
  .value-grid { grid-template-columns: 1fr; }
  .toc ol { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  .page-head { padding: 24px 20px; }
  .page-head h1 { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .hero { padding: 32px 16px 28px; }
  .search-card { padding: 18px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; }
  .stat-item { flex-basis: 50%; border-left: none; border-top: 1px solid var(--border-light); }
  .stat-item:first-child { border-top: none; }
  .cards-grid { grid-template-columns: 1fr; }
  footer { padding: 20px 16px; }
}

/* ── Standard Comparison Table ── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.standard-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

@media (max-width: 850px) {
  .standard-table {
    table-layout: auto;
    min-width: 760px;
  }
}

.standard-table th {
  background: linear-gradient(180deg, #3a6aab 0%, #2b5081 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid #1e3a5f;
}

.standard-table th:last-child {
  border-right: none;
}

.standard-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e1e8f0;
  border-right: 1px solid #e1e8f0;
  color: #333333;
  line-height: 1.5;
  vertical-align: middle;
}

.standard-table td:last-child {
  border-right: none;
}

.standard-table tr:nth-child(even) td {
  background-color: #f7fafe;
}

.standard-table tr:hover td {
  background-color: #eaf2fc;
}

.standard-table td:first-child {
  font-weight: 600;
  color: #1e3a5f;
  background-color: #eff4fb;
}

.standard-table tr:nth-child(even) td:first-child {
  background-color: #e5edf7;
}

.standard-table td:nth-child(3) {
  font-weight: 600;
  color: #2b5081;
}



