.legal-page {
            padding: 30px 0 60px;
        }
        .legal-header {
            margin-bottom: 30px;
        }
        .legal-header h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .last-updated {
            font-size: 14px;
            color: var(--muted-text);
        }
        .legal-content {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px 20px;
        }
        .legal-section {
            margin-bottom: 30px;
        }
        .legal-section:last-child {
            margin-bottom: 0;
        }
        .legal-section h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-decoration: underline;
        }
        .legal-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 12px;
            color: var(--primary-color);
        }
        .legal-section p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: var(--light-text);
        }
        .legal-section ul,
        .legal-section ol {
            margin: 15px 0;
            padding-left: 20px;
        }
        .legal-section li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
            font-size: 15px;
            line-height: 1.7;
            color: var(--light-text);
        }
        .legal-section ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        .legal-section ol {
            list-style: decimal;
            padding-left: 35px;
        }
        .legal-section ol li {
            padding-left: 5px;
        }
        .legal-section ol li::before {
            display: none;
        }
        .legal-section a {
            color: var(--link-color);
        }
        .legal-section a:hover {
            color: var(--link-hover);
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            color: var(--link-color);
            font-size: 14px;
            font-weight: 500;
        }
        .back-link:hover {
            color: var(--link-hover);
        }
        .back-link svg {
            width: 16px;
            height: 16px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
            color: var(--light-text);
            vertical-align: top;
        }
        .data-table th {
            background: rgba(0, 0, 0, 0.3);
            font-weight: 600;
            color: white;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table td p {
            margin-bottom: 8px;
            font-size: 14px;
        }
        .data-table td p:last-child {
            margin-bottom: 0;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
        }
        @media (min-width: 768px) {
            .legal-header h1 {
                font-size: 32px;
            }
            .legal-content {
                padding: 50px;
            }
            .legal-section h2 {
                font-size: 22px;
            }
        }
        @media (max-width: 767px) {
            .data-table th,
            .data-table td {
                padding: 10px 12px;
                font-size: 13px;
            }
        }