* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f8fc;
    color: #172338;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.65;
}

.legal-header {
    background: #fff;
    border-bottom: 1px solid #dce4ee;
}

.legal-header-inner {
    width: min(1000px, calc(100% - 32px));
    margin: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #172338;
    text-decoration: none;
}

.legal-logo {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #1769e0;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.legal-brand strong {
    font-size: 17px;
}

.back {
    color: #1769e0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.legal-wrap {
    width: min(900px, calc(100% - 32px));
    margin: 42px auto 60px;
}

.legal-card {
    padding: 42px 46px;
    background: #fff;
    border: 1px solid #dce4ee;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(37, 64, 97, .06);
}

.eyebrow {
    color: #1769e0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1 {
    margin: 5px 0 8px;
    font-size: clamp(29px, 4vw, 40px);
    line-height: 1.15;
}

.lead {
    margin: 0 0 34px;
    color: #69798d;
    font-size: 15px;
}

h2 {
    margin: 34px 0 10px;
    font-size: 20px;
}

h3 {
    margin: 22px 0 8px;
    font-size: 16px;
}

p,
li {
    font-size: 14px;
}

ul {
    padding-left: 22px;
}

.info-box {
    margin: 22px 0;
    padding: 17px 19px;
    background: #f3f7ff;
    border-radius: 12px;
}

.company {
    padding: 17px 19px;
    background: #f7f9fc;
    border: 1px solid #e4eaf1;
    border-radius: 12px;
    line-height: 1.7;
}

a {
    color: #1769e0;
}

.legal-footer {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid #e4eaf1;
    color: #8592a3;
    font-size: 12px;
}

.legal-footer a {
    margin-right: 15px;
    font-weight: 650;
}

@media (max-width: 650px) {
    .legal-card {
        padding: 28px 22px;
    }

    .legal-header-inner {
        min-height: 64px;
    }
}
