:root {
    --bg-color: #0F0F12;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --primary: #FF2D55;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.legal-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

section {
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    color: var(--text-muted);
}