        @media print {
            body { margin: 0; padding: 15mm; }
            .no-print { display: none; }
            .page-break { page-break-before: always; }
        }
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            line-height: 1.6;
            color: #333;
        }
        .header {
            text-align: center;
            border: 4px double #4f46e5;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 15px;
        }
        .header h1 {
            color: #4f46e5;
            margin: 0 0 10px 0;
        }
        .section {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 25px;
            overflow: hidden;
        }
        .section-header {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 1.1em;
        }
        .section-body {
            padding: 20px;
        }
        .rule-line {
            display: flex;
            align-items: flex-start;
            margin: 12px 0;
            padding: 10px;
            background: #f8fafc;
            border-radius: 8px;
        }
        .checkbox {
            width: 22px;
            height: 22px;
            border: 2px solid #4f46e5;
            border-radius: 5px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .write-line {
            border-bottom: 2px dotted #94a3b8;
            min-height: 25px;
            flex-grow: 1;
            margin-left: 10px;
        }
        .write-box {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            min-height: 60px;
            padding: 10px;
            margin: 10px 0;
        }
        .signature-area {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #e2e8f0;
        }
        .signature-box {
            flex: 1;
            text-align: center;
        }
        .signature-line {
            border-bottom: 2px solid #333;
            height: 50px;
            margin-bottom: 10px;
        }
        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #e2e8f0;
            color: #64748b;
        }
        .print-btn {
            background: #4f46e5;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1em;
            border-radius: 8px;
            cursor: pointer;
            margin: 20px auto;
            display: block;
        }
        .print-btn:hover {
            background: #4338ca;
        }
        .tip-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }
        .example {
            color: #64748b;
            font-style: italic;
            font-size: 0.9em;
        }
        .time-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }
        .time-table th, .time-table td {
            border: 2px solid #e2e8f0;
            padding: 12px;
            text-align: center;
        }
        .time-table th {
            background: #f1f5f9;
        }
