
        body {
            margin: 0;
            padding: 24px;
            font-family: Arial, Helvetica, sans-serif;
            background-color: #eef2f7;
            color: #1f2937;
        }

        .page-wrap {
            max-width: 1180px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
        }

        .top-banner {
            padding: 40px 28px;
            background: linear-gradient(135deg, #0f766e, #0f172a);
            color: #ffffff;
            text-align: center;
        }

        .top-banner h1 {
            margin: 0;
            font-size: 32px;
            line-height: 1.35;
            font-weight: 800;
            letter-spacing: 0.3px;
        }

        .top-banner p {
            max-width: 860px;
            margin: 14px auto 0;
            font-size: 15px;
            line-height: 1.8;
            color: #ccfbf1;
        }

        .section-heading {
            padding: 18px 28px;
            background-color: #f8fafc;
            border-left: 8px solid #0f766e;
            border-bottom: 1px solid #e5e7eb;
            font-size: 22px;
            font-weight: 800;
            color: #0f172a;
        }

        .table-scroll {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 780px;
        }

        th {
            padding: 16px 20px;
            background-color: #0f172a;
            color: #ffffff;
            text-align: left;
            font-size: 15px;
            letter-spacing: 0.2px;
        }

        td {
            padding: 16px 20px;
            border-bottom: 1px solid #e5e7eb;
            font-size: 15px;
            line-height: 1.7;
            vertical-align: top;
        }

        tbody tr:nth-child(odd) {
            background-color: #ffffff;
        }

        tbody tr:nth-child(even) {
            background-color: #f8fafc;
        }

        tbody tr:hover {
            background-color: #ecfdf5;
        }

        .feature-title {
            width: 32%;
            font-weight: 800;
            color: #0f766e;
        }

        .feature-text {
            color: #374151;
        }

        .spec-title {
            width: 32%;
            font-weight: 800;
            color: #1e40af;
        }

        .spec-text {
            color: #111827;
            font-weight: 500;
        }

        .tag {
            display: inline-block;
            padding: 4px 10px;
            margin: 2px 4px 2px 0;
            border-radius: 999px;
            background-color: #dbeafe;
            color: #1e40af;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        .company-box {
            padding: 30px;
            background-color: #111827;
            color: #d1d5db;
            font-size: 14px;
            line-height: 1.85;
        }

        .company-box strong {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            body {
                padding: 12px;
            }

            .top-banner {
                padding: 30px 18px;
            }

            .top-banner h1 {
                font-size: 24px;
            }

            .top-banner p {
                font-size: 13px;
            }

            .section-heading {
                padding: 15px 18px;
                font-size: 19px;
            }

            table {
                min-width: 100%;
            }

            thead {
                display: none;
            }

            table,
            tbody,
            tr,
            td {
                display: block;
                width: 100%;
            }

            tbody tr {
                border-bottom: 1px solid #d1d5db;
            }

            td {
                box-sizing: border-box;
                padding: 13px 16px;
            }

            .feature-title,
            .spec-title {
                width: 100%;
                background-color: #f1f5f9;
                border-bottom: none;
            }

            .feature-text,
            .spec-text {
                width: 100%;
                background-color: #ffffff;
            }

            .company-box {
                padding: 22px 18px;
            }
        }
    