
        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #2d3748;
            line-height: 1.7;
            padding: 20px;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
        }

        /* Header Styles */
        h1 {
            color: #2c5282;
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
        }

        h2 {
            color: #2d3748;
            font-size: 22px;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e2e8f0;
        }

        h3 {
            color: #4a5568;
            font-size: 18px;
            margin: 25px 0 12px;
        }

        /* Table Styles */
        .table-wrapper {
            overflow-x: auto;
            margin: 15px 0 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }

        th {
            background-color: #2c5282;
            color: #ffffff;
            padding: 12px 10px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
        }

        td {
            padding: 10px 10px;
            font-size: 12px;
            color: #2d3748;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: top;
        }

        tr:nth-child(even) {
            background-color: #f7fafc;
        }

        tr:hover {
            background-color: #e6f7ff;
            transition: background-color 0.2s ease;
        }

        .rank-cell {
            text-align: center;
            font-weight: 600;
            color: #2c5282;
            width: 60px;
        }

        .company-cell {
            font-weight: 600;
            color: #2c5282;
        }

        .country-cell {
            color: #4299e1;
            font-weight: 500;
            width: 90px;
        }

        .shipment-cell {
            color: #38b2ac;
            font-weight: 500;
        }

        .model-cell {
            font-family: 'Courier New', monospace;
            font-size: 11px;
        }

        /* Section Styles */
        .section-description {
            margin: 10px 0 20px;
            color: #4a5568;
            font-size: 14px;
            line-height: 1.6;
        }

        .notes-section {
            background-color: #f0f8fb;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .notes-section ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        .notes-section li {
            margin-bottom: 8px;
        }

        /* Category Tag */
        .tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            margin-right: 4px;
            margin-bottom: 4px;
        }

        .tag-dtu {
            background-color: #e8f4f8;
            color: #4299e1;
        }

        .tag-ftu {
            background-color: #fdf2f8;
            color: #9f7aea;
        }

        .tag-hybrid {
            background-color: #f5fafe;
            color: #38b2ac;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 18px;
            }

            h3 {
                font-size: 16px;
            }

            th, td {
                padding: 8px 6px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 15px 10px;
            }

            h1 {
                font-size: 20px;
            }

            .tag {
                padding: 1px 6px;
                font-size: 9px;
            }
        }
    