* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        body {
            color: #333;
            line-height: 1.8;
            background: #fff;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img {
            height: 32px;
            width: 32px;
            object-fit: contain;
            display: block;
        }
        .logo span {
            font-size: 1.25rem;
            font-weight: 600;
            color: #165DFF;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-right {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-right a {
            text-decoration: none;
            color: #333;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-right a:hover {
            color: #165DFF;
        }
        .nav-right a.active {
            color: #165DFF;
            font-weight: 500;
        }
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .page-header {
            padding: 3.5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
        }
        .page-header h1 {
            font-size: 2.4rem;
            color: #1D2129;
            margin-bottom: 0.8rem;
        }
        .page-header p {
            font-size: 1.1rem;
            color: #4E5969;
            max-width: 750px;
            margin: 0 auto;
        }
        .policy-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 3.5rem 5%;
            font-size: 1rem;
            line-height: 1.9;
            color: #2c2c2c;
        }
        .policy-section {
            margin-bottom: 2.8rem;
        }
        .policy-section h2 {
            font-size: 1.5rem;
            color: #165DFF;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .policy-section h3 {
            font-size: 1.2rem;
            color: #1D2129;
            margin: 1.4rem 0 0.7rem;
        }
        .policy-section p {
            margin-bottom: 1rem;
        }
        .policy-section ul {
            margin-left: 1.6rem;
            margin-bottom: 1rem;
        }
        .policy-section li {
            margin-bottom: 0.5rem;
        }
        .highlight {
            color: #165DFF;
            font-weight: 600;
        }
        .last-update {
            background: #f7f9fc;
            padding: 1rem 1.2rem;
            border-left: 3px solid #165DFF;
            border-radius: 6px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #4E5969;
        }
        footer {
            padding: 2rem 5%;
            background: #1D2129;
            color: #fff;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #C9CDD4;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .copyright {
            font-size: 0.85rem;
            color: #86909C;
        }
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            .nav-right a {
                display: none;
            }
            .nav-right a.active {
                display: inline-block;
            }
        }
        [lang="en"] .zh, [lang="zh-CN"] .en {
            display: none !important;
        }
