:root {
    --fs-blue: rgb(13, 148, 220);
    --fs-green: rgb(134, 196, 29);
    --fs-white: rgb(255, 255, 255);
    --fs-grey: rgb(209, 209, 209);
    --fs-dark-grey: rgba(0, 0, 0, 0.5);
    --fs-text: rgb(25, 25, 25);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--fs-white);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--fs-text);
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 24px;
}

.legal-shell {
    width: 100%;
    max-width: 900px;
}

.logo-wrap {
    margin: 0 auto 30px;
    max-width: 220px;
}

.logo {
    width: 100%;
}

.card {
    background: var(--fs-white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nav {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--fs-dark-grey);
}

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

.nav a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.stand {
    font-size: 14px;
    color: var(--fs-dark-grey);
    margin-bottom: 24px;
}

h2 {
    margin-top: 24px;
    font-size: 20px;
}

p,
li {
    line-height: 1.6;
    font-size: 16px;
}

ul {
    padding-left: 18px;
}

.footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

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

.footer a:hover {
    text-decoration: underline;
}