
        :root {
            --primary-color: #2c3e50;
            --accent-color: #3498db;
            --bg-color: #f8f9fa;
            --text-color: #333333;
            --border-color: #e2e8f0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
            margin: 0;
            padding: 40px 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .product-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.3;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-color);
        }

        .section-title {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-color);
            margin-top: 35px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        p { margin-bottom: 15px; }
        ul { padding-left: 20px; margin-bottom: 20px; }
        li { margin-bottom: 8px; }

        .highlight {
            font-weight: 600;
            color: var(--primary-color);
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .specs-table th, .specs-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .specs-table th {
            background-color: var(--bg-color);
            font-weight: 600;
            width: 30%;
        }

        .agent-note {
            background-color: #edf2f7;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 4px;
            margin-top: 35px;
        }

        .agent-note p:last-child { margin-bottom: 0; }
    