:root {
    --bg: #eef3f8;
    --bg-deep: #dbe6f2;
    --surface: #ffffff;
    --ink: #122031;
    --muted: #4b6177;
    --brand: #0f6cbd;
    --brand-dark: #094f8b;
    --accent: #1f8a70;
    --line: #d6e1ec;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow-sm: 0 10px 24px rgba(18, 32, 49, 0.08);
    --shadow-lg: 0 30px 70px rgba(18, 32, 49, 0.14);
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

img, svg {
    pointer-events: none;
    -webkit-user-drag: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background:
        linear-gradient(160deg, rgba(15, 108, 189, 0.08), transparent 30%),
        linear-gradient(340deg, rgba(31, 138, 112, 0.1), transparent 36%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 32, 49, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 32, 49, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(15, 108, 189, 0.45);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 100;
    padding: 0.55rem 0.85rem;
    border-radius: 0.55rem;
    background: #0f6cbd;
    color: #ffffff;
    font-weight: 700;
}

.skip-link:focus-visible {
    top: 1rem;
}

button,
input,
textarea {
    font: inherit;
}

.hero,
.section,
.site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.hero {
    padding: 0.9rem 0 2rem;
    display: grid;
    gap: 1.35rem;
}

.site-nav {
    position: sticky;
    top: 1rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.brand,
h1,
h2,
h3,
.footer-brand h3 {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18rem;
    min-height: 2.3rem;
    gap: 0.55rem;
    padding: 0.2rem 1rem 0.2rem 0.45rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(120deg, var(--brand) 0%, #3296de 100%);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
}

.brand-logo {
    width: 12rem;
    height: auto;
    flex: 0 0 auto;
}

.brand-text {
    display: none;
}

.menu {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.menu a {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
    color: var(--ink);
    background: #e9f3fe;
}

.menu a[aria-current="page"] {
    color: #ffffff;
    background: linear-gradient(120deg, var(--brand) 0%, #3296de 100%);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.05rem;
    align-items: stretch;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 0.9rem;
    align-content: center;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #ffffff 0%, #edf4fb 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.home-hero-title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    max-width: 19ch;
}

.page-hero-title {
    font-size: clamp(1.75rem, 2.9vw, 2.7rem);
    max-width: 20ch;
}

.hero-content::after {
    content: "";
    position: absolute;
    width: 10rem;
    height: 10rem;
    right: -2rem;
    top: -2.1rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 108, 189, 0.18), transparent 70%);
    pointer-events: none;
}

.eyebrow,
.section-tag {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand);
}

h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
    line-height: 1.06;
    max-width: 16ch;
}

h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.1;
}

.hero-copy,
.section-copy,
.contact-card p,
.career-copy p,
.content-card p,
.split-panel p,
.career-points p {
    margin: 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.68;
}

/* Legal pages (Privacy Policy, Terms of Use) */
.legal-body {
    max-width: 780px;
    margin: 0 auto;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-body h2 {
    margin: 2rem 0 0.5rem;
    font-size: 1.15rem;
    color: var(--ink);
}

.legal-body p,
.legal-body ul {
    margin: 0 0 1rem;
    color: var(--muted);
}

.legal-body ul {
    padding-left: 1.4rem;
}

.legal-body a {
    color: var(--brand);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.35rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.78rem 1.2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.93rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(120deg, var(--brand) 0%, #338fd3 100%);
    box-shadow: 0 12px 28px rgba(15, 108, 189, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(120deg, var(--brand-dark) 0%, #1f78bf 100%);
}

.button-secondary {
    color: var(--ink);
    border-color: #bfd3e7;
    background: #f5faff;
}

.hero-visual {
    display: grid;
    gap: 0.9rem;
}

.illustration-card,
.stat-card,
.content-card,
.split-panel,
.career-points article,
.contact-card,
.about-chip {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.illustration-card {
    position: relative;
    padding: 1.15rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ecf4fd 100%);
    overflow: hidden;
}

.illustration-card::before {
    content: "";
    position: absolute;
    inset: auto auto -3.6rem -3.6rem;
    width: 8.8rem;
    height: 8.8rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 138, 112, 0.16), transparent 65%);
}

.hero-bg-art {
    min-height: 21rem;
    background-image:
        radial-gradient(circle at 20% 22%, rgba(15, 108, 189, 0.22) 0 16%, transparent 17%),
        radial-gradient(circle at 76% 18%, rgba(31, 138, 112, 0.22) 0 14%, transparent 15%),
        linear-gradient(130deg, rgba(15, 108, 189, 0.86) 0 42%, rgba(31, 138, 112, 0.86) 43% 100%),
        linear-gradient(180deg, #f8fbff 0%, #ecf4fd 100%);
    background-blend-mode: normal, normal, screen, normal;
}

.hero-bg-art::after {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px);
}

.home-art-shell {
    min-height: 21rem;
    display: grid;
    align-items: center;
}

.home-art {
    width: 100%;
    height: auto;
    display: block;
}

.page-art-shell {
    min-height: 21rem;
    display: grid;
    align-items: center;
}

.page-art {
    width: 100%;
    height: auto;
    display: block;
}

.section-illustration {
    width: 100%;
    height: auto;
    display: block;
}

.hero-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.9rem;
}

.stat-card {
    position: relative;
    display: grid;
    gap: 0.4rem;
    padding: 1.1rem 1.15rem;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    right: -1.3rem;
    bottom: -1.6rem;
    background: radial-gradient(circle, rgba(15, 108, 189, 0.22), transparent 68%);
}

.hero-panel .stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(15, 108, 189, 0.08), rgba(31, 138, 112, 0.05));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.hero-panel .stat-card:hover,
.hero-panel .stat-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(18, 32, 49, 0.16);
}

.hero-panel .stat-card:hover::before,
.hero-panel .stat-card:focus-within::before {
    opacity: 1;
}

.content-card,
.about-chip,
.career-points article,
.split-panel {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.content-card:hover,
.about-chip:hover,
.career-points article:hover,
.split-panel:hover,
.content-card:focus-within,
.about-chip:focus-within,
.career-points article:focus-within,
.split-panel:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(18, 32, 49, 0.14);
}

.stat-card strong {
    font-size: 1.03rem;
}

.stat-card span {
    color: var(--muted);
    line-height: 1.56;
}

.accent {
    background: linear-gradient(120deg, #f6fbff 0%, #eef8f4 100%);
}

.section {
    padding: 2.9rem 0;
}

.intro-grid,
.section-heading,
.contact-layout,
.career-layout,
.split-section {
    display: grid;
    gap: 1.3rem;
}

.intro-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

.about-copy-block {
    display: grid;
    gap: 1rem;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.7rem;
}

.about-chip {
    padding: 0.95rem;
    gap: 0.3rem;
}

.chip-number {
    color: var(--brand);
    font-size: 1.25rem;
    font-weight: 900;
}

.section-heading h2 {
    max-width: 17ch;
}

.card-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0.9rem;
}

.content-card,
.career-points article,
.contact-card,
.split-panel {
    position: relative;
    overflow: hidden;
    padding: 1.3rem;
}

.content-card::before,
.career-points article::before,
.contact-card::before,
.split-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.card-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--brand), #3ea0e3);
    font-size: 0.92rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 108, 189, 0.26);
}

.content-card h3,
.career-points h3,
.contact-card h3,
.split-panel h3 {
    margin: 0;
    font-size: 1.1rem;
}

.split-section {
    grid-template-columns: 1.1fr 0.9fr;
}

.primary-panel {
    background: linear-gradient(180deg, #0f3e69 0%, #0d5c77 100%);
    color: #f3f9ff;
}

.primary-panel::before {
    background: linear-gradient(90deg, #66b5ff, #8de0c9);
}

.primary-panel p {
    color: rgba(235, 246, 255, 0.9);
}

.primary-panel .section-tag {
    color: #8de0c9;
}

.checklist-panel {
    background: linear-gradient(180deg, #fbfdff 0%, #f2f8fe 100%);
}

.checklist {
    list-style: none;
    margin: 0.95rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.checklist li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted);
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--accent);
}

.career-layout,
.contact-layout {
    margin-top: 1.2rem;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.contact-layout-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-media {
    padding: 1.3rem;
    min-height: 100%;
    display: grid;
    align-content: center;
}

.career-copy,
.contact-card {
    display: grid;
    gap: 0.9rem;
}

.career-illustration,
.contact-illustration {
    margin: 0.15rem 0 0.2rem;
}

.career-points {
    display: grid;
    grid-auto-rows: 1fr;
    gap: 0.8rem;
}

.stat-card,
.about-chip,
.content-card,
.career-points article,
.split-panel {
    height: 100%;
}

.site-footer {
    margin-top: 0.5rem;
    padding: 0 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, #f8fbff 0%, #edf5fd 100%);
    box-shadow: var(--shadow-sm);
}

.footer-brand h3 {
    margin: 0 0 0.6rem;
    font-size: 1.12rem;
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.footer-column h4 {
    margin: 0 0 0.25rem;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
}

.footer-column a,
.footer-column span {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--ink);
}

.footer-bottom {
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom a {
    font-weight: 800;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-legal-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: var(--brand);
    text-decoration: underline;
}

.chatbot-widget {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 90;
    display: grid;
    justify-items: end;
    gap: 0.6rem;
}

.chatbot-toggle {
    border: 0;
    border-radius: 999px;
    width: 3.3rem;
    height: 3.3rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(120deg, var(--brand) 0%, #3296de 100%);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.chatbot-panel {
    width: min(24rem, calc(100vw - 1.6rem));
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 0.8rem;
    display: grid;
    gap: 0.75rem;
}

.chatbot-panel[hidden] {
    display: none;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.chatbot-close {
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 9px;
    padding: 0.25rem 0.55rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.chatbot-messages {
    max-height: 16.5rem;
    overflow-y: auto;
    display: grid;
    gap: 0.45rem;
    padding: 0.2rem 0.05rem;
}

.chatbot-bubble {
    max-width: 92%;
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    font-size: 0.86rem;
    line-height: 1.45;
}

.chatbot-bubble.bot {
    justify-self: start;
    background: #eff7ff;
    border: 1px solid #d4e8fa;
    color: var(--ink);
}

.chatbot-bubble.user {
    justify-self: end;
    background: #0f6cbd;
    border: 1px solid #0f6cbd;
    color: #ffffff;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.chatbot-chip {
    border: 1px solid var(--line);
    background: #f7fbff;
    border-radius: 999px;
    padding: 0.4rem 0.58rem;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.chatbot-chip:hover,
.chatbot-chip:focus-visible,
.chatbot-close:hover,
.chatbot-close:focus-visible {
    border-color: #b7d7f1;
    background: #edf6ff;
}

@media (max-width: 980px) {
    .hero-shell,
    .hero-panel,
    .card-grid,
    .intro-grid,
    .split-section,
    .career-layout,
    .contact-layout,
    .about-points,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.95);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-lg);
    }

    .menu.is-open {
        display: flex;
    }

    .site-nav {
        position: relative;
        align-items: flex-start;
        border-radius: 28px;
    }

    .hero-content {
        padding: 1.6rem;
    }

    .hero {
        gap: 1rem;
        padding-bottom: 1.2rem;
    }

    .hero-content {
        padding: 1.25rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .stat-card {
        padding: 0.95rem 1rem;
    }

    .contact-layout-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .contact-layout-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .hero,
    .section,
    .site-footer {
        width: min(calc(100% - 1.2rem), var(--max-width));
    }

    .hero {
        padding-top: 0.75rem;
        padding-bottom: 1.8rem;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    h2 {
        font-size: clamp(1.6rem, 8vw, 2.35rem);
    }

    .section {
        padding: 2.35rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-title {
        font-size: clamp(1.65rem, 8vw, 2.4rem);
    }

    .page-hero-title {
        font-size: clamp(1.55rem, 7.4vw, 2.15rem);
    }

    .hero-actions .button,
    .career-copy .button,
    .content-card .button {
        width: 100%;
    }

    .content-card,
    .career-points article,
    .contact-card,
    .split-panel,
    .stat-card,
    .about-chip,
    .illustration-card,
    .footer-main,
    .footer-bottom {
        padding: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding: 0.7rem 0.9rem;
    }

    .footer-main {
        gap: 0.75rem;
        padding: 0.95rem;
    }

    .footer-column {
        gap: 0.3rem;
    }

    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }

    .footer-column a,
    .footer-column span {
        font-size: 0.87rem;
        line-height: 1.4;
    }

    .footer-brand h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .footer-brand p,
    .footer-bottom p {
        line-height: 1.45;
    }

    .chatbot-widget {
        right: 0.6rem;
        bottom: 0.6rem;
    }

    .chatbot-toggle {
        width: 3rem;
        height: 3rem;
        font-size: 0.75rem;
    }

    .chatbot-panel {
        width: min(21rem, calc(100vw - 1.2rem));
    }
}

@media (max-width: 430px) {
    .hero,
    .section,
    .site-footer {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .brand {
        min-width: 12.6rem;
        min-height: 2.15rem;
        font-size: 0.74rem;
        gap: 0.35rem;
        padding: 0.2rem 0.7rem 0.2rem 0.35rem;
    }

    .brand-logo {
        width: 9rem;
        height: auto;
    }

    .menu-label {
        font-size: 0.93rem;
    }

    .hero-copy,
    .section-copy,
    .contact-card p,
    .career-copy p,
    .content-card p,
    .split-panel p,
    .career-points p,
    .footer-brand p {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .footer-main,
    .footer-bottom {
        padding: 0.8rem;
    }

    .footer-column a,
    .footer-column span,
    .footer-bottom p {
        font-size: 0.84rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
