        :root {
            --text: #333333;
            --light-text: #555555;
            --background: #ffffff;
            --light-bg: #f5f5f5;
            --border: #cccccc;
        }
        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700&family=Noto+Sans+SC:wght@400;700&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Noto Serif SC', '宋体', 'Times New Roman', serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--light-bg);
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--background);
            border: 1px solid var(--border);
        }
        
        header {
            background: var(--background);
            color: var(--text);
            padding: 30px 40px;
            text-align: center;
            border-bottom: 2px solid var(--border);
        }
        
        h1 {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .subtitle {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .meta-info {
            display: flex;
            justify-content: space-between;
            padding: 15px 30px;
            color: var(--light-text);
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            background-color: var(--light-bg);
        }
        
        .content {
            padding: 30px 40px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        h2 {
            color: var(--text);
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
            font-size: 22px;
            font-weight: bold;
        }
        
        h3 {
            color: var(--text);
            margin: 25px 0 15px;
            font-size: 18px;
            font-weight: bold;
        }
        
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        ul, ol {
            margin: 0 0 20px 25px;
        }
        
        li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        li:before {
            content: "";
            color: var(--text);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        th {
            background-color: var(--light-bg);
            color: var(--text);
            font-weight: bold;
            text-align: left;
        }
        
        th, td {
            padding: 12px;
            border: 1px solid var(--border);
        }
        
        tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        
        .notice-box {
            background-color: var(--light-bg);
            border-left: 5px solid #333333;
            padding: 15px;
            margin: 20px 0;
        }
        
        .legal-ref {
            font-size: 14px;
            color: var(--light-text);
            margin-top: 5px;
            font-style: italic;
        }
        
        .consent-section {
            background: var(--light-bg);
            padding: 25px;
            margin: 30px 0;
            border: 1px solid var(--border);
        }
        
        .consent-title {
            text-align: center;
            color: var(--text);
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
        }
        
        .consent-options {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .consent-option {
            flex: 1;
            min-width: 250px;
            background: var(--background);
            padding: 15px;
            border: 1px solid var(--border);
        }
        
        .consent-option h4 {
            margin-bottom: 15px;
            color: var(--text);
            font-weight: bold;
        }
        
        .toggle-container {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .toggle-label {
            margin-right: 15px;
            font-weight: bold;
        }
        
        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #666666;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }
        
        button {
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 0;
            cursor: pointer;
            border: 1px solid var(--border);
        }
        
        .btn-primary {
            background-color: #333333;
            color: white;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid #333333;
            color: #333333;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            background: var(--light-bg);
            color: var(--light-text);
            font-size: 14px;
            border-top: 1px solid var(--border);
        }
        
        @media (max-width: 768px) {
            .content {
                padding: 20px;
            }
            
            header {
                padding: 20px;
            }
            
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .consent-options {
                flex-direction: column;
            }
            
            .btn-container {
                flex-direction: column;
            }
            
            button {
                width: 100%;
            }
        }