:root {
    --navy: #0A3161;
    --navy-dark: #061F40;
    --saffron: #FF9933;
    --saffron-dark: #E17F14;
    --green: #0F7A3D;
    --white: #FFFFFF;
    --bg: #F3F5F8;
    --paper: #FFFFFF;
    --ink: #1C2230;
    --muted: #5B6472;
    --line: #D9DEE6;
    --alert: #B3261E;
    --alert-bg: #FDECEC;
    --gold: #B8860B;
    --radius: 4px;
    --font-display: 'PT Serif', 'Noto Serif', serif;
    --font-body: 'Noto Sans', system-ui, sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.22;
    color: var(--navy-dark);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    font-weight: 600;
}

section {
    padding: 56px 0;
}

.tricolor-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--saffron) 0 33.3%, #FFFFFF 33.3% 66.6%, var(--green) 66.6% 100%);
    position: relative;
}

/* ---------- Utility bar ---------- */
.util-bar {
    background: var(--navy-dark);
    color: #CBD6E6;
    font-size: 12.5px;
}

.util-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.util-left {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.util-left span {
    opacity: .9;
}

.util-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

.lang-toggle {
    border-left: 1px solid #2A466E;
    padding-left: 14px;
    display: flex;
    gap: 8px;
}

.lang-toggle button {
    background: none;
    border: none;
    color: #CBD6E6;
    font-size: 12.5px;
    cursor: pointer;
    font-family: var(--font-body);
}

.lang-toggle button.active {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--white);
    color: var(--navy);
    padding: 8px 14px;
    z-index: 200;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

/* ---------- Header ---------- */
header.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(10, 49, 97, .04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chakra {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid var(--navy);
    position: relative;
    flex-shrink: 0;
}

.chakra::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background:
        repeating-conic-gradient(var(--navy) 0deg 3deg, transparent 3deg 15deg);
}

.chakra::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--navy);
}

.brand-text .name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: .2px;
}

.brand-text .tag {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav.main-nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy-dark);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

nav.main-nav a:hover {
    border-bottom-color: var(--saffron);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    padding: 11px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn-primary {
    background: var(--saffron);
    color: #3A1E00;
    border-color: var(--saffron-dark);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(225, 127, 20, .35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(10, 49, 97, .3);
}

.btn-outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--navy-dark);
}

/* ---------- Disclaimer strip ---------- */
.disclaimer-strip {
    background: #FFF8E8;
    border-bottom: 1px solid #F0D9A0;
    font-size: 12.5px;
    color: #6B5416;
    text-align: center;
    padding: 7px 16px;
}

.disclaimer-strip strong {
    color: #4A3900;
}

/* ---------- Notice marquee ---------- */
.notice-bar {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 9px 0;
}

.notice-bar .marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollLeft 32s linear infinite;
    font-size: 13.5px;
    font-weight: 500;
}

.notice-bar .marquee-track span {
    margin-right: 60px;
}

.notice-bar .tagchip {
    background: var(--saffron);
    color: #3A1E00;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .notice-bar .marquee-track {
        animation: none;
        padding-left: 0;
    }
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, #EEF2F8 0%, var(--bg) 100%);
    padding: 48px 0 60px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 44px;
    align-items: start;
}

.hero h1 {
    font-size: 38px;
    margin: 14px 0 16px;
}

.hero h1 .accent {
    color: var(--saffron-dark);
}

.hero p.lead {
    font-size: 16.5px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 22px;
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
}

.trust-chip .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.checklist {
    list-style: none;
    margin-bottom: 8px;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    margin-bottom: 10px;
    color: var(--ink);
}

.checklist li .tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

/* Government-style application form card */
.gov-form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 5px solid var(--navy);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(10, 49, 97, .10);
    position: sticky;
    top: 20px;
}

.gov-form-head {
    padding: 18px 22px 14px;
    border-bottom: 1px dashed var(--line);
    position: relative;
}

.gov-form-head .ref {
    position: absolute;
    right: 20px;
    top: 18px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--muted);
    text-align: right;
    line-height: 1.4;
}

.gov-form-head h3 {
    font-size: 19px;
    color: var(--navy-dark);
    margin-bottom: 3px;
}

.gov-form-head p {
    font-size: 12.5px;
    color: var(--muted);
}

.gov-form-body {
    padding: 18px 22px 22px;
}

.form-row {
    margin-bottom: 13px;
}

.form-row label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
    letter-spacing: .01em;
}

.form-row label .req {
    color: var(--alert);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.4px solid var(--line);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: #FCFDFE;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid var(--saffron);
    outline-offset: 1px;
    border-color: var(--navy);
}

.form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
    padding: 13px;
    font-size: 15px;
}

.form-foot-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.form-success.show {
    display: block;
}

.form-success .seal {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
}

.form-success h4 {
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.form-success p {
    font-size: 13.5px;
    color: var(--muted);
}

.form-success .track-no {
    font-family: var(--font-mono);
    background: #F0F4F8;
    border: 1px dashed var(--line);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 12px;
    display: inline-block;
    color: var(--navy-dark);
    font-weight: 700;
}

/* ---------- Section headers ---------- */
.sec-head {
    max-width: 640px;
    margin-bottom: 34px;
}

.sec-head h2 {
    font-size: 29px;
    margin: 8px 0 10px;
}

.sec-head p {
    color: var(--muted);
    font-size: 15.5px;
}

/* ---------- Alert / penalty box ---------- */
.alert-box {
    background: var(--alert-bg);
    border: 1px solid #F1C2C0;
    border-left: 5px solid var(--alert);
    border-radius: 4px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 8px 0 36px;
}

.alert-box .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--alert);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
}

.alert-box h4 {
    color: var(--alert);
    font-size: 15.5px;
    margin-bottom: 4px;
}

.alert-box p {
    font-size: 13.8px;
    color: #6E2622;
}

/* ---------- Types & Fees table (gazette style) ---------- */
.gazette {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.gazette-head {
    background: var(--navy);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gazette-head .eyebrow {
    color: #FFD9A0;
}

.gazette-head .updated-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    background: rgba(255, 255, 255, .14);
    padding: 4px 10px;
    border-radius: 20px;
}

table.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.fee-table th {
    text-align: left;
    background: #F0F3F8;
    color: var(--navy-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 12px 18px;
    border-bottom: 2px solid var(--line);
}

table.fee-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    vertical-align: top;
}

table.fee-table tr:last-child td {
    border-bottom: none;
}

table.fee-table .cat {
    font-weight: 700;
    color: var(--navy-dark);
    font-family: var(--font-display);
    font-size: 15px;
}

table.fee-table .fee {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--green);
}

.gazette-foot {
    padding: 12px 20px;
    font-size: 12px;
    color: var(--muted);
    border-top: 1px dashed var(--line);
    background: #FAFBFD;
}

/* ---------- Documents tabs ---------- */
.doc-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.doc-tab-btn {
    background: var(--white);
    border: 1.5px solid var(--line);
    padding: 9px 18px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
}

.doc-tab-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.doc-panel {
    display: none;
}

.doc-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}

.doc-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 13.8px;
}

.doc-item .num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--saffron-dark);
    background: #FFF3E2;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Process steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.step {
    position: relative;
    padding: 0 14px;
    text-align: left;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: -14px;
    width: calc(100% - 24px);
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.step .num-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.step h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.step p {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Why us grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 22px 18px;
    text-align: center;
}

.why-card .big-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
}

.why-card .label {
    font-size: 12.8px;
    color: var(--muted);
    margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 18px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
}

.faq-q .plus {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--saffron-dark);
    flex-shrink: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    font-size: 13.8px;
    color: var(--muted);
    padding: 0 18px;
}

.faq-item.open .faq-a {
    max-height: 220px;
    padding: 0 18px 16px;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

/* ---------- Bottom CTA / form section ---------- */
.bottom-cta {
    background: var(--navy-dark);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(115deg, rgba(255, 153, 51, .05) 0 2px, transparent 2px 40px);
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 44px;
    align-items: center;
    position: relative;
}

.bottom-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
}

.bottom-cta p {
    color: #B9C6DA;
    font-size: 15px;
    max-width: 460px;
    margin-bottom: 18px;
}

.bottom-cta .checklist li {
    color: #DCE4EF;
}

.bottom-form-card {
    background: var(--paper);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.bottom-form-card h3 {
    color: var(--navy-dark);
    font-size: 19px;
    margin-bottom: 4px;
}

.bottom-form-card>p {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 16px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--navy-dark);
    color: #B9C6DA;
    padding-top: 40px;
    font-size: 13.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 30px;
}

footer h5 {
    color: #fff;
    font-size: 13.5px;
    margin-bottom: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 9px;
}

footer ul li a {
    text-decoration: none;
    color: #B9C6DA;
}

footer ul li a:hover {
    color: var(--saffron);
}

.footer-brand .brand {
    margin-bottom: 12px;
}

.footer-brand .chakra {
    border-color: #fff;
}

.footer-brand .chakra::before {
    background: repeating-conic-gradient(#fff 0deg 3deg, transparent 3deg 15deg);
}

.footer-brand .chakra::after {
    background: var(--navy-dark);
    border-color: #fff;
}

.footer-brand .name {
    color: #fff;
}

.footer-legal-note {
    background: #051730;
    padding: 16px 0;
    font-size: 11.8px;
    color: #7E8DA4;
    text-align: center;
    border-top: 1px solid #1B3457;
}

.footer-legal-note b {
    color: #B9C6DA;
}

.footer-bottom {
    border-top: 1px solid #1B3457;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #7E8DA4;
    flex-wrap: wrap;
    gap: 8px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    z-index: 150;
    cursor: pointer;
}

/* ---------- Popup modal form ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 15, 30, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    background: var(--paper);
    width: 100%;
    max-width: 440px;
    border-radius: 6px;
    border-top: 5px solid var(--saffron);
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
    animation: popIn .25s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
}

.modal-top {
    padding: 20px 24px 14px;
    border-bottom: 1px dashed var(--line);
    display: flex;
    gap: 12px;
    align-items: center;
}

.modal-top .flag-strip {
    width: 5px;
    height: 36px;
    background: linear-gradient(180deg, var(--saffron), #fff 45%, var(--green));
    border-radius: 2px;
}

.modal-top h3 {
    font-size: 17.5px;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.modal-top p {
    font-size: 12px;
    color: var(--alert);
    font-weight: 700;
}

.modal-body {
    padding: 18px 24px 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {

    .hero-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .gov-form-card {
        position: static;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doc-panel.active {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 26px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    nav.main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 300px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 26px;
        gap: 22px;
        transform: translateX(100%);
        transition: transform .25s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
        z-index: 250;
    }

    nav.main-nav.open {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .header-cta .btn-outline {
        display: none;
    }

    .hero h1 {
        font-size: 29px;
    }

    .form-two-col {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 0;
    }

    .util-bar .container {
        justify-content: center;
        text-align: center;
    }

    .phone-pill{
        display: none;
    }

    .gov-form-head .ref{
        display: none;
    }
}