* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        .header {
            background: var(--primary, #7C3AED);
            color: white;
            padding: 16px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-back {
            font-size: 24px;
            cursor: pointer;
            text-decoration: none;
            color: white;
        }
        .header-title {
            font-size: 18px;
            font-weight: 600;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        .card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .card h2 {
            font-size: 18px;
            color: var(--primary, #7C3AED);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary, #7C3AED);
        }
        .card h3 {
            font-size: 15px;
            color: #333;
            margin: 16px 0 8px;
        }
        .card p, .card li {
            font-size: 14px;
            color: #555;
            margin-bottom: 8px;
        }
        .card ul, .card ol {
            padding-left: 20px;
        }
        .card table {
            width: 100%;
            border-collapse: collapse;
            margin: 12px 0;
            font-size: 13px;
        }
        .card th, .card td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        .card th {
            background: #f8f9fa;
            font-weight: 600;
        }
        .update-date {
            text-align: center;
            color: #888;
            font-size: 13px;
            margin-top: 20px;
            padding-bottom: 40px;
        }
        .highlight {
            background: #e8f5e9;
            padding: 16px;
            border-radius: 8px;
            margin: 12px 0;
            border-left: 4px solid #4caf50;
        }
        .warning {
            background: #fff3e0;
            padding: 16px;
            border-radius: 8px;
            margin: 12px 0;
            border-left: 4px solid #ff9800;
        }
        .danger {
            background: #ffebee;
            padding: 16px;
            border-radius: 8px;
            margin: 12px 0;
            border-left: 4px solid #f44336;
        }
        .price-table {
            background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
            color: white;
            border-radius: 12px;
            padding: 20px;
            margin: 16px 0;
        }
        .price-table h3 {
            color: white;
            margin-bottom: 16px;
        }
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .price-item:last-child {
            border-bottom: none;
        }
        .price-name {
            font-weight: 500;
        }
        .price-amount {
            font-weight: 700;
            font-size: 18px;
        }
        .contact-box {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
        }
        .contact-box h3 {
            color: #1976d2;
            margin-bottom: 12px;
        }
        .contact-box a {
            color: #1976d2;
            text-decoration: none;
            font-weight: 600;
        }
