:root {
    --bg-color: #ffffff;
    --bg-alt: #f5f5f7;
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --accent: #0066cc;
    --border-color: #d2d2d7;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack), sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #424245;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-subtle {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 700px;
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .text-subtle { font-size: 19px; }
    .legal-content { padding: 20px; }
}

.animate-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
