/* Design tokens come from styles/theme-vars.css, linked before this file.
   Shared by terms_of_service.php and privacy_policy.php. */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--body-bg);
    background-image: var(--page-wash);
    color: var(--textCol);
    line-height: 1.6;
    transition: background-color 0.2s ease;
}

.content-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

h1 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--headers-color);
    font-family: 'Poppins';
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}

h2 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--headers-color);
    font-family: 'Poppins';
    margin: 2rem 0 0.75rem;
}

p, li {
    color: var(--textCol);
    font-size: var(--text-base);
}

.last-updated {
    color: var(--placeholder-color);
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    font-family: 'Poppins';
    font-weight: 600;
}

@media screen and (max-width: 576px) {
    .content-container {
        padding: 2rem 1.25rem 3rem;
    }
}
