


/* --- Reset & Box Sizing --------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* --- CSS Variables -------------------------------------- */
:root {
  --color-bg:        #f8fafc;
  --color-surface:   #ffffff;
  --color-navy:      #0f172a;
  --color-blue:      #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-muted:     #64748b;
  --color-border:    #e2e8f0;
  --color-ad-bg:     #f1f5f9;

  --radius-card: 12px;
  --radius-btn:  8px;
  --shadow-card:  0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 6px 20px rgba(15, 23, 42, 0.14);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1100px;
}


/* --- Base --------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-navy);
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Stretches main so footer always pins to the bottom */
main {
  flex: 1;
}

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

a:hover {
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

/* Keyboard-only focus ring */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-to-content: visible only on Tab focus */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 9999;
  background: var(--color-blue);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  transition: top 0.12s;
}
.skip-link:focus {
  top: 0;
}


/* --- Layout Wrapper ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}


/* --- Header ------------------------------------------- */
.site-header {
  background: var(--color-navy);
  color: #fff;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.site-logo span {
  color: var(--color-blue);
}

/* Nav is a <ul> inside a <nav> */
.site-nav {
  display: flex;
  gap: 0.2rem;
  list-style: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-btn);
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  font-weight: 600;
}


/* --- Hero --------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1e3a6e 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero h1 span {
  color: #60a5fa;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
}


/* --- Ad Slots ----------------------------------------- */
.ad-slot {
  text-align: center;
  padding: 0.75rem 0;
}

.ad-slot-label {
  display: block;
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.ad-slot ins.adsbygoogle {
  display: block;
  margin: 0 auto;
  background: var(--color-ad-bg);
}

/* Leaderboard (728×90) */
.ad-leaderboard {
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--color-border);
}

/* Rectangle (300×250) */
.ad-rectangle {
  padding: 1.5rem 0;
}


/* --- Section Heading ---------------------------------- */
.section-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}


/* --- Games Grid --------------------------------------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.25rem;
  padding: 0.25rem 0 2rem;
}


/* --- Game Card ---------------------------------------- */
.game-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: var(--color-navy);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-blue);
  text-decoration: none;
}


/* Thumbnail area — 16:9 */
.game-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
}

/* ---- CSS-art thumbnail: Colour Rush (flood grid) ---- */
.game-thumb--flood {
  background: #0f172a;
  padding: 0;
  overflow: hidden;
}

.thumb-flood-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  gap: 2px;
  padding: 6px;
  box-sizing: border-box;
}

.thumb-flood-grid span {
  display: block;
  border-radius: 3px;
  transition: transform 0.2s;
}

/* ---- CSS-art thumbnail: Bubble Burst (circles) ---- */
.game-thumb--bubbles {
  background: radial-gradient(ellipse at 60% 40%, #1e3a5f 0%, #0f172a 100%);
}

.thumb-bubbles {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.thumb-bubbles span {
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: inset -3px -3px 6px rgba(0,0,0,0.35),
              inset 2px 2px 4px rgba(255,255,255,0.25),
              0 2px 6px rgba(0,0,0,0.4);
}

.thumb-bubbles span::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 22%;
  width: 28%;
  height: 22%;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  transform: rotate(-30deg);
}

/* ---- CSS-art thumbnail: Quick Tap (4×4 grid) ---- */
.game-thumb--tap {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
}

.thumb-tap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.thumb-tap-grid span {
  display: block;
  background: #1e293b;
  border-radius: 8px;
  border: 1px solid #334155;
}

.thumb-tap-grid span.lit {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-color: #7dd3fc;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.7),
              0 0 20px rgba(56, 189, 248, 0.3);
}

.thumb-tap-grid span.lit-warm {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  border-color: #fdba74;
  box-shadow: 0 0 10px rgba(251, 146, 60, 0.7),
              0 0 20px rgba(251, 146, 60, 0.3);
}

/* Card body */
.game-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.game-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.game-card__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  flex: 1;
}

.game-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #dbeafe;
  color: var(--color-blue);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  width: fit-content;
}


/* Play button */
.btn-play {
  display: block;
  width: 100%;
  padding: 0.55rem 0;
  margin-top: 0.75rem;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-play:hover {
  background: var(--color-blue-dark);
  text-decoration: none;
}



/* --- Page Content (legal / policy pages) -------------- */
.page-content {
  max-width: 780px;
  margin: 2.5rem auto;
  padding: 0 1.25rem 4rem;
}

.page-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.page-content .last-updated {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2.5rem 0 0.65rem;
  color: var(--color-navy);
  padding-left: 0.75rem;
  border-left: 3px solid var(--color-blue);
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-content p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.page-content li {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.page-content ul,
.page-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.page-content a {
  color: var(--color-blue);
}

/* Tables in policy pages */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.75rem;
  font-size: 0.875rem;
}

.page-content th {
  background: #1e3a5f;
  color: #fff;
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
}

.page-content td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.6;
}

.page-content tr:last-child td {
  border-bottom: none;
}

.page-content tr:nth-child(even) td {
  background: #f8fafc;
}

/* Info / highlight box */
.highlight-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-btn);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: #1e40af;
  line-height: 1.75;
}

/* Cookie category badges (used in h3 headings) */
.category-badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.6;
}

.badge-essential   { background: #dcfce7; color: #166534; }
.badge-analytics   { background: #fef9c3; color: #854d0e; }
.badge-advertising { background: #fee2e2; color: #991b1b; }

/* Manage Cookie Preferences button */
.btn-consent {
  display: inline-block;
  margin: 0.5rem 0 1.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-consent:hover {
  background: var(--color-blue-dark);
  text-decoration: none;
  color: #fff;
}


/* --- Footer ------------------------------------------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.82rem;
  padding: 1.5rem 0;
  margin-top: auto;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.60);
  transition: color 0.15s;
}

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


/* --- Cookie Banner (custom fallback) ------------------- */
/*
   Cookiebot (data-blockingmode="auto") renders its own banner.
   These styles back a lightweight fallback <div class="cookie-banner">
   that should be shown only if the Cookiebot script fails to load.
   Accept and Decline must be visually equal weight (UK GDPR).
*/
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 9998;
  background: #1e293b;
  color: rgba(226, 232, 240, 0.90);
  border-top: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  padding: 1.1rem 1.25rem;
  animation: cookie-slide-up 280ms ease forwards;
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.cookie-banner__text strong { color: #fff; }
.cookie-banner__text a      { color: #93c5fd; }
.cookie-banner__text a:hover { color: #fff; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Accept */
.btn-cookie-accept {
  padding: 0.55rem 1.2rem;
  background: #f59e0b;
  color: #1c1917;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid #f59e0b;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: #d97706;
  border-color: #d97706;
}

/* Decline — same visual weight as Accept (GDPR requirement) */
.btn-cookie-decline {
  padding: 0.55rem 1.2rem;
  background: transparent;
  color: rgba(203, 213, 225, 0.90);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid rgba(148, 163, 184, 0.45);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn-cookie-decline:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

/* Manage / preferences link */
.btn-cookie-prefs {
  background: none;
  border: none;
  color: rgba(147, 197, 253, 0.80);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 0.25rem;
  transition: color 0.15s;
}

.btn-cookie-prefs:hover { color: #fff; }


/* --- Tag Filter Strip --------------------------------- */
.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0 0.5rem;
}

.tag-pill {
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}

.tag-pill:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

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

.game-card.is-dimmed {
  opacity: 0.28;
  transform: scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}


/* --- Why Strip ---------------------------------------- */
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.why-card__icon {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 0.65rem;
}

.why-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.why-card__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.65;
}


/* --- Topic Sections (genre hierarchy) ----------------- */
.topic-sections {
  border-top: 1px solid var(--color-border);
  padding: 0.5rem 0 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.topic-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.topic-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.topic-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.topic-block p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.8;
}

.topic-cta {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.topic-cta:hover {
  text-decoration: underline;
}


/* --- Footer Top --------------------------------------- */
.footer-top {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer-brand__logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand__logo span { color: var(--color-blue); }
.footer-brand__logo:hover { text-decoration: none; }

.footer-brand__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 220px;
}

.footer-nav-cols {
  display: flex;
  gap: 3rem;
}

.footer-col__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.65rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 1.1rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
}


/* --- Responsive ---------------------------------------- */
@media (max-width: 600px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding: 0.3rem 0.45rem;
    font-size: 0.82rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ad-leaderboard ins.adsbygoogle {
    width: 320px !important;
    height: 50px !important;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions button {
    flex: 1;
  }

  .why-strip {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .footer-top__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-nav-cols {
    gap: 1.75rem;
    flex-wrap: wrap;
  }

  .about-section {
    padding: 1.75rem 0 2rem;
  }

  .page-content {
    margin-top: 1.5rem;
  }

  .page-content h1 {
    font-size: 1.6rem;
  }

  .page-content h2 {
    font-size: 1.05rem;
  }

  .page-content table {
    font-size: 0.78rem;
  }

  .page-content th,
  .page-content td {
    padding: 0.45rem 0.5rem;
  }
}


/* ── Homepage FAQ ──────────────────────────────────────── */
.homepage-faq {
  margin: 3rem 0;
  max-width: 760px;
}

.homepage-faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.homepage-faq details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.homepage-faq summary {
  font-weight: 600;
  color: #0f172a;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.homepage-faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #64748b;
  flex-shrink: 0;
}

.homepage-faq details[open] summary::after { content: '−'; }

.homepage-faq .faq-answer {
  padding: 0 1.25rem 1rem;
  color: #334155;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.homepage-faq .faq-answer a {
  color: #2563eb;
  text-decoration: underline;
}
