﻿/* =========================
   THEME ALIGNED CSS (3 Sections)
   Font: Articulat CF
   Palette: 🔴 #DE1F26  🟡 #FECD07  ⚫ #1C1C1C  🔵 #93A8AC
========================= */

:root {
    /* Replace this with your actual hero image path */
    --hero-img: url("../images/immigration/hero.jpg");
    /* Brand palette */
    --brand-red: #DE1F26;
    --brand-yellow: #FECD07;
    --brand-black: #1C1C1C;
    --brand-bluegray: #93A8AC;
    /* Typography */
    --ff: "Articulat CF", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    /* Derived */
    --text-on-dark: #ffffff;
    --text-on-light: var(--brand-black);
    --muted-on-dark: rgba(147,168,172,0.92);
    --muted-on-light: rgba(28,28,28,0.70);
    --border-light: rgba(28,28,28,0.10);
    --card-shadow: 0 14px 34px rgba(28,28,28,0.10);
    --radius-lg: 14px;
    --radius-xl: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--ff);
}

/* =========================
   NAV (Screen 1)
========================= */
.imm-nav {
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.imm-brand {
    font-family: var(--ff);
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--brand-black);
}

.imm-navlink {
    font-family: var(--ff);
    color: rgba(28,28,28,0.78) !important;
    font-weight: 600;
}

    .imm-navlink:hover {
        color: var(--brand-black) !important;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

.imm-btn-top {
    font-family: var(--ff);
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(222,31,38,0.20);
}

    .imm-btn-top:hover {
        background: #c81b21;
        border-color: #c81b21;
        color: #fff;
    }

/* =========================
   HERO (Screen 1)
========================= */
.imm-hero {
    position: relative;
    height: calc(100vh - 74px);
    min-height: 650px;
    overflow: hidden;
    color: var(--text-on-dark);
    font-family: var(--ff);
}

.imm-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--hero-img) center/cover no-repeat;
    transform: scale(1.02);
}

.imm-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 420px at 18% 25%, rgba(254,205,7,0.18), rgba(254,205,7,0) 55%), linear-gradient(90deg, rgba(28,28,28,0.86) 0%, rgba(28,28,28,0.72) 44%, rgba(28,28,28,0.40) 100%);
}

/* pill */
.imm-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(28,28,28,0.42);
    border: 1px solid rgba(254,205,7,0.22);
    box-shadow: 0 14px 28px rgba(28,28,28,0.35);
    font-family: var(--ff);
    font-weight: 600;
    font-size: .95rem;
}

.imm-pill__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand-yellow);
    box-shadow: 0 0 0 6px rgba(254,205,7,0.14);
}

/* hero text */
.imm-h1 {
    margin: 0;
    font-family: var(--ff);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(2.6rem, 4vw, 4.1rem);
}

.imm-accent {
    color: var(--brand-yellow);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .imm-accent::after {
        content: "";
        position: absolute;
        left: 4%;
        right: 10%;
        bottom: 0;
        height: 4px;
        border-radius: 999px;
        background: rgba(254,205,7,0.92);
        transform: rotate(-1.2deg);
    }

/* lead */
.imm-lead {
    max-width: 650px;
    color: var(--muted-on-dark);
    font-family: var(--ff);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 500;
}

/* buttons */
.imm-btn-primary {
    font-family: var(--ff);
    border: 0;
    background: var(--brand-red);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(222,31,38,0.22);
}

    .imm-btn-primary:hover {
        background: #c81b21;
        color: #fff;
    }

.imm-btn-secondary {
    font-family: var(--ff);
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(147,168,172,0.35);
    font-weight: 800;
    backdrop-filter: blur(6px);
}

    .imm-btn-secondary:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(254,205,7,0.38);
        color: #fff;
    }

/* stats row */
.imm-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.imm-stat {
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(28,28,28,0.30);
    border: 1px solid rgba(147,168,172,0.22);
    backdrop-filter: blur(7px);
}

.imm-stat__ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254,205,7,0.18);
    color: var(--brand-yellow);
    font-size: 18px;
}

.imm-stat__ico--green {
    background: rgba(222,31,38,0.14);
    color: var(--brand-red);
}

.imm-stat__txt {
    font-family: var(--ff);
    line-height: 1.05;
}

.imm-stat__val {
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
}

.imm-stat__lbl {
    margin-top: 5px;
    font-size: .82rem;
    color: rgba(147,168,172,0.95);
    font-weight: 500;
}

/* scroll hint */
.imm-scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: center;
    color: rgba(147,168,172,0.78);
    font-family: var(--ff);
}

.imm-scroll__text {
    display: block;
    font-size: .86rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.imm-mouse {
    display: block;
    width: 34px;
    height: 52px;
    border: 2px solid rgba(147,168,172,0.35);
    border-radius: 999px;
    margin: 0 auto;
    position: relative;
}

.imm-wheel {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    border-radius: 999px;
    background: rgba(254,205,7,0.75);
    animation: wheel 1.35s infinite ease-in-out;
}

@keyframes wheel {
    0% {
        opacity: .2;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: .9;
    }

    100% {
        opacity: .2;
        transform: translate(-50%, 16px);
    }
}

/* responsive */
@media (max-width: 991.98px) {
    .imm-hero {
        height: auto;
        min-height: 0;
        padding: 56px 0 92px;
    }

    .imm-hero__bg {
        transform: none;
    }

    .imm-stat {
        min-width: 240px;
    }
}

@media (max-width: 575.98px) {
    .imm-stats {
        gap: 12px;
    }

    .imm-stat {
        min-width: 100%;
    }
}

/* =========================
   VISA PATHWAYS (Screen 2)
========================= */
.vp-section {
    background: #ffffff;
}

.vp-head {
    max-width: 760px;
    margin: 0 auto;
}

.vp-kicker {
    letter-spacing: .14em;
    font-weight: 900;
    font-size: .78rem;
    color: var(--brand-red);
    font-family: var(--ff);
}

.vp-title {
    margin: 10px 0 8px;
    font-family: var(--ff);
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--brand-black);
}

.vp-sub {
    margin: 0;
    color: rgba(28,28,28,0.68);
    font-family: var(--ff);
    font-size: 1.02rem;
    font-weight: 500;
}

/* big cards */
.vp-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(28,28,28,0.10);
    box-shadow: var(--card-shadow);
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
}

    .vp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 44px rgba(28,28,28,0.14);
    }

.vp-card--featured {
    border: 2px solid var(--brand-red);
}

.vp-media {
    position: relative;
    height: 210px;
    background: #111;
}

.vp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02);
}

.vp-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 86px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.90) 70%, #fff 100%);
}

.vp-ico {
    position: absolute;
    left: 18px;
    top: 78px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(28,28,28,0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-yellow);
    z-index: 2;
    box-shadow: 0 10px 18px rgba(28,28,28,0.20);
}

    .vp-ico i {
        font-size: 20px;
    }

/* popular badge */
.vp-popular {
    position: absolute;
    right: 16px;
    top: 12px;
    background: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 900;
    font-size: .72rem;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 2;
}

.vp-body {
    padding: 16px 18px 18px;
}

.vp-h3 {
    margin: 6px 0 6px;
    font-family: var(--ff);
    font-weight: 900;
    font-size: 1.22rem;
    color: var(--brand-black);
}

.vp-link {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-red);
    font-weight: 800;
    text-decoration: none;
    font-size: .95rem;
    font-family: var(--ff);
}

    .vp-link:hover {
        text-decoration: underline;
    }

.vp-desc {
    margin: 0 0 12px;
    color: rgba(28,28,28,0.66);
    font-size: .92rem;
    line-height: 1.55;
    font-family: var(--ff);
    font-weight: 500;
}

.vp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.vp-tag {
    background: rgba(147,168,172,0.16);
    color: var(--brand-black);
    border: 1px solid rgba(147,168,172,0.28);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .78rem;
    font-weight: 800;
    font-family: var(--ff);
}

.vp-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-black);
    font-weight: 900;
    text-decoration: none;
    font-size: .9rem;
    font-family: var(--ff);
}

    .vp-more i {
        color: var(--brand-red);
    }

    .vp-more:hover {
        text-decoration: underline;
    }

/* More options panel */
.vp-panel {
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(28,28,28,0.10);
}

.vp-panel-title {
    text-align: center;
    font-family: var(--ff);
    font-weight: 900;
    color: var(--brand-black);
    font-size: 1.15rem;
}

.vp-mini {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(147,168,172,0.10);
    border-radius: 12px;
    padding: 14px 14px;
    border: 1px solid rgba(147,168,172,0.22);
}

.vp-mini-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(254,205,7,0.18);
    color: var(--brand-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vp-mini-ico i {
        font-size: 18px;
    }

.vp-mini-title {
    font-weight: 900;
    color: var(--brand-black);
    font-size: .92rem;
    margin-top: 2px;
    font-family: var(--ff);
}

.vp-mini-desc {
    margin-top: 2px;
    color: rgba(28,28,28,0.66);
    font-size: .82rem;
    line-height: 1.45;
    font-family: var(--ff);
    font-weight: 500;
}

.vp-mini-badge {
    margin-left: 8px;
    font-size: .68rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(222,31,38,0.12);
    color: var(--brand-red);
}

/* =========================
   HEALTHCARE (Screen 3)
========================= */
.hc-section {
    background: radial-gradient(1200px 520px at 55% -35%, rgba(254,205,7,0.20), rgba(254,205,7,0) 60%), #ffffff;
}

/* Left photo card */
.hc-photoCard {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(28,28,28,0.16);
    background: #111;
}

.hc-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Demand pill */
.hc-demand {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--brand-red);
    color: #fff;
    font-weight: 900;
    font-size: .85rem;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(222,31,38,0.25);
    z-index: 2;
}

/* Bottom metrics strip */
.hc-metrics {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    background: rgba(255,255,255,0.96);
    border-radius: 16px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 30px rgba(28,28,28,0.10);
    border: 1px solid rgba(28,28,28,0.08);
}

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

.hc-metric-val {
    font-family: var(--ff);
    font-weight: 900;
    color: var(--brand-black);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.hc-green {
    color: var(--brand-red);
}

.hc-metric-lbl {
    margin-top: 2px;
    font-size: .82rem;
    color: rgba(28,28,28,0.64);
    font-family: var(--ff);
    font-weight: 500;
}

.hc-divider {
    width: 1px;
    height: 40px;
    background: rgba(28, 28, 28, 0.10);
}

/* Right side */
.hc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(254,205,7,0.18);
    border: 1px solid rgba(254,205,7,0.35);
    color: var(--brand-black);
    font-weight: 800;
    font-size: .92rem;
    font-family: var(--ff);
}

.hc-title {
    font-family: var(--ff);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(2.1rem, 3.1vw, 3.0rem);
    color: var(--brand-black);
}

.hc-blue {
    color: var(--brand-red);
}

.hc-sub {
    color: rgba(28,28,28,0.68);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--ff);
    font-weight: 500;
    max-width: 640px;
}

/* icon tiles */
.hc-icons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hc-icard {
    width: 110px;
    text-align: center;
    font-family: var(--ff);
}

.hc-icircle {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    border-radius: 16px;
    background: rgba(147,168,172,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    box-shadow: 0 10px 18px rgba(28,28,28,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid rgba(147,168,172,0.30);
}

    .hc-icircle i {
        font-size: 26px;
        color: var(--brand-red);
    }

.hc-iname {
    font-weight: 900;
    color: var(--brand-black);
    font-size: .92rem;
    font-family: var(--ff);
}

.hc-icount {
    margin-top: 4px;
    color: rgba(28,28,28,0.60);
    font-size: .82rem;
    font-family: var(--ff);
    font-weight: 500;
}

/* CTA */
.hc-btn {
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 900;
    font-family: var(--ff);
    box-shadow: 0 16px 28px rgba(222,31,38,0.20);
}

    .hc-btn:hover {
        background: #c81b21;
        border-color: #c81b21;
        color: #fff;
    }

/* Responsive */
@media (max-width: 991.98px) {
    .hc-photo {
        height: 360px;
    }

    .hc-metrics {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 575.98px) {
    .hc-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }

    .hc-divider {
        display: none;
    }

    .hc-metric {
        text-align: left;
    }

    .hc-icard {
        width: 100px;
    }
}


/* =========================
   CONSULTATION (Screen 4)
   Uses: Articulat CF + Theme Palette
========================= */
.cs-section {
    font-family: var(--ff);
    background: radial-gradient(1100px 520px at 25% 35%, rgba(147,168,172,0.18), rgba(147,168,172,0) 60%), radial-gradient(900px 520px at 80% 35%, rgba(254,205,7,0.10), rgba(254,205,7,0) 55%), #eef5f7;
}

/* Left */
.cs-kicker {
    letter-spacing: .14em;
    font-weight: 900;
    font-size: .78rem;
    color: var(--brand-red);
    margin-bottom: 14px;
}

.cs-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(2.1rem, 3.2vw, 3.0rem);
    color: var(--brand-black);
    margin: 0;
}

.cs-accent {
    color: var(--brand-red);
}

.cs-sub {
    margin: 0;
    margin-top: 12px;
    max-width: 560px;
    color: rgba(28,28,28,0.70);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}

.cs-points {
    margin-top: 26px;
    display: grid;
    gap: 16px;
    max-width: 520px;
}

.cs-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cs-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(147,168,172,0.20);
    border: 1px solid rgba(147,168,172,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    flex: 0 0 auto;
}

    .cs-ico i {
        font-size: 20px;
    }

.cs-ico--soft {
    background: rgba(254,205,7,0.18);
    border-color: rgba(254,205,7,0.30);
    color: var(--brand-black);
}

.cs-point-title {
    font-weight: 900;
    color: var(--brand-black);
    font-size: 1rem;
    margin-top: 2px;
}

.cs-point-sub {
    margin-top: 3px;
    color: rgba(28,28,28,0.64);
    font-size: .92rem;
    font-weight: 500;
}

/* Right card */
.cs-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid rgba(28,28,28,0.10);
    box-shadow: 0 24px 50px rgba(28,28,28,0.14);
}

.cs-label {
    font-weight: 700;
    color: rgba(28,28,28,0.88);
    font-size: .92rem;
}

.cs-req {
    color: var(--brand-red);
}

.cs-input {
    border-radius: 10px;
    border: 1px solid rgba(147,168,172,0.40);
    padding: 10px 12px;
    font-family: var(--ff);
    font-weight: 500;
    color: var(--brand-black);
}

    .cs-input::placeholder {
        color: rgba(147,168,172,0.95);
    }

    .cs-input:focus {
        border-color: rgba(222,31,38,0.55);
        box-shadow: 0 0 0 .2rem rgba(222,31,38,0.18);
    }

.cs-textarea {
    padding-top: 12px;
    resize: none;
}

/* checkbox */
.cs-check {
    font-size: .92rem;
    color: rgba(28,28,28,0.70);
    font-weight: 500;
}

    .cs-check .form-check-input {
        border-color: rgba(147,168,172,0.55);
    }

        .cs-check .form-check-input:checked {
            background-color: var(--brand-red);
            border-color: var(--brand-red);
        }

.cs-link {
    color: var(--brand-red);
    font-weight: 800;
    text-decoration: none;
}

    .cs-link:hover {
        text-decoration: underline;
    }

/* submit */
.cs-submit {
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 900;
    font-family: var(--ff);
    box-shadow: 0 18px 30px rgba(222,31,38,0.20);
}

    .cs-submit:hover {
        background: #c81b21;
        border-color: #c81b21;
        color: #fff;
    }

.cs-footnote {
    margin-top: 14px;
    text-align: center;
    font-size: .82rem;
    color: rgba(28,28,28,0.62);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
    .cs-card {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .cs-card {
        padding: 18px;
    }
}


/* =========================
   FAQ (Screen 5)
   Theme + Articulat CF
========================= */
.faq-section {
    font-family: var(--ff);
    background: #ffffff;
}

.faq-head {
    max-width: 760px;
    margin: 0 auto;
}

.faq-kicker {
    letter-spacing: .14em;
    font-weight: 900;
    font-size: .78rem;
    color: var(--brand-red);
}

.faq-title {
    margin: 10px 0 8px;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(2.05rem, 3vw, 2.75rem);
    color: var(--brand-black);
}

.faq-sub {
    margin: 0;
    color: rgba(28,28,28,0.68);
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 500;
}

.faq-wrap {
    max-width: 740px;
}

/* Accordion styling */
.faq-acc .faq-item {
    border: 1px solid rgba(147,168,172,0.35);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(28,28,28,0.08);
    margin-bottom: 14px;
}

.faq-acc .accordion-item {
    background: #fff;
}

.faq-acc .faq-btn {
    background: #fff;
    color: var(--brand-black);
    font-weight: 800;
    padding: 20px 22px;
    border: 0;
    box-shadow: none;
}

.faq-acc .accordion-button:not(.collapsed) {
    background: rgba(254,205,7,0.14);
    color: var(--brand-black);
}

.faq-acc .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(222,31,38,0.15);
    border-color: rgba(222,31,38,0.25);
}

.faq-acc .accordion-button::after {
    /* Bootstrap uses an SVG; we keep it but tint it */
    filter: grayscale(1) brightness(0.35);
    opacity: .9;
}

.faq-body {
    padding: 18px 22px 22px;
    color: rgba(28,28,28,0.72);
    font-weight: 500;
    line-height: 1.65;
}

/* Bottom CTA */
.faq-bottom-text {
    color: rgba(28,28,28,0.62);
    font-weight: 500;
    font-size: .95rem;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--brand-red);
    font-weight: 900;
    text-decoration: none;
}

    .faq-cta:hover {
        text-decoration: underline;
        text-underline-offset: 6px;
    }
