        .legal-page {
            padding: 9rem 0 4rem;
            min-height: 100vh;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .legal-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .legal-updated {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 3rem;
        }

        body[data-theme="light"] .legal-content {
            background: white;
        }

        .legal-section {
            margin-bottom: 3rem;
        }

        .legal-section:last-child {
            margin-bottom: 0;
        }

        .legal-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .legal-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .legal-section p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .legal-section ul {
            list-style: none;
            margin: 1rem 0;
        }

        .legal-section ul li {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .legal-section ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .highlight-box {
            background: var(--bg-tertiary);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            margin: 1.5rem 0;
        }

        body[data-theme="light"] .highlight-box {
            background: var(--bg-secondary);
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .highlight-box strong {
            color: var(--primary);
        }

        .warning-box {
            background: rgba(255, 159, 28, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            margin: 1.5rem 0;
        }

        .warning-box p {
            margin-bottom: 0;
            color: var(--text-primary);
        }

        .warning-box strong {
            color: var(--orange);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: var(--transition);
        }

        .back-link:hover {
            gap: 0.75rem;
        }

        .back-link svg {
            width: 1.25rem;
            height: 1.25rem;
        }