body {
    margin: 0;
    color: var(--navy);
    background:
        radial-gradient(900px 600px at 10% 10%, rgba(240, 90, 36, 0.28), transparent 60%),
        radial-gradient(900px 600px at 90% 15%, rgba(29, 141, 214, 0.26), transparent 60%),
        linear-gradient(160deg, #cfe0f0, #f2f7fc);
    padding: 24px;
    position: relative;
    min-height: 100vh;
}

.back-link {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(16, 40, 68, 0.18);
    border: 1px solid rgba(29, 141, 214, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(16, 40, 68, 0.24);
}

.back-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.legal {
    max-width: 820px;
    margin: 0 auto;
    background: var(--ice);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--slate);
}

h1 {
    margin: 0 0 8px;
    font-family: "Georgia", "Times New Roman", Times, serif;
    font-size: 32px;
}

.lead {
    margin: 0;
    color: var(--slate);
    line-height: 1.6;
}

section {
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

section h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

section p {
    margin: 0 0 6px;
    color: var(--slate);
}

.legal-footer {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 720px) {
    body {
        padding: 16px;
    }

    .legal {
        padding: 20px;
    }
}
