/* Start custom CSS for html, class: .elementor-element-d8f2046 */<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
    <style>
        body {
            background: linear-gradient(145deg, #f1f5f9 0%, #e6ecf4 100%);
            min-height: 100vh;
            justify-content: center;
            align-items: center;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
        }
        .card {
            max-width: 1400px;
            width: 100%;
            background: rgba(255,255,255,0.78);
            backdrop-filter: blur(3px);
            border-radius: 2.5rem;
            border: 1px solid rgba(255,255,255,0.6);
            transition: all 0.2s ease;
        }
        .header-title {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 2rem;
            justify-content: space-between;
            padding-left: 1.2rem;
        }

        .title-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .header-title h1 {
            font-weight: 700;
            font-size: 1.95rem;
            letter-spacing: -0.02em;
            color: #0b2b3c;
            line-height: 1.2;
        }

        .badge {
            background: #73BF45;
            color: white;
            padding: 0.25rem 1.1rem;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid #73BF45;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .sub-note {
            font-size: 0.8rem;
            background: #eef3f7;
            padding: 0.25rem 0.9rem;
            border-radius: 30px;
            color: #1e5f74;
            font-weight: 500;
        }
        .table-wrapper {
            overflow-x: auto;
            border-radius: 1.6rem;
            background: white;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 980px; 
            font-family: 'Inter', sans-serif;
        }

        th {
            text-align: left;
            padding: 1rem 1.1rem;
            background: #f8fafd;
            font-weight: 600;
            color: #1a4a5f;
            border-bottom: 1.5px solid #e2edf3;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

        td {
            padding: 0.9rem 1.1rem;
            border-bottom: 1px solid #eff3f8;
            color: #1f3e4c;
            font-weight: 450;
        }

        tr:last-child td {
            border-bottom: none;
        }

        .model-header th {
            background: #73BF45;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.2px;
            border-bottom: none;
        }

        .model-header th:first-child {
            border-radius: 1.6rem 0 0 0;
        }

        .model-header th:last-child {
            border-radius: 0 1.6rem 0 0;
        }

        tbody tr td:first-child {
            font-weight: 600;
            color: #0b4155;
            background-color: #fefefe;
            border-right: 1px solid #ecf3f8;
        }

        td strong, .bold-spec {
            font-weight: 700;
            color: #135f74;
        }

        .standards-footnote {
            margin-top: 1.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 1.5rem;
            background: #e2eef6;
            border-radius: 5px;
            color: #103e50;
            font-size: 0.88rem;
            font-weight: 500;
        }

        .conform-badge {
            background: #73BF45;
            color: white;
            padding: 0.25rem 1.1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .spec-icon {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        @media screen and (max-width: 700px) {
            body {

            }

            .card {
                padding: 1.4rem 1rem 1.8rem 1rem;
                border-radius: 1.8rem;
            }

            .header-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.7rem;
                margin-bottom: 1.4rem;
                padding-left: 0.9rem;
                border-left-width: 4px;
            }

            .title-group {
                width: 100%;
                justify-content: space-between;
            }

            .header-title h1 {
                font-size: 1.6rem;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.2rem 0.9rem;
            }

            .sub-note {
                font-size: 0.7rem;
            }

            .standards-footnote {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
                padding: 1rem 1.2rem;
                border-radius: 5px;
            }

            .conform-badge {
                align-self: flex-start;
            }
        }

        @media screen and (max-width: 480px) {
            .header-title h1 {
                font-size: 1.45rem;
            }

            td, th {
                padding: 0.7rem 0.9rem;
            }

            .standards-footnote {
                font-size: 0.8rem;
            }
        }

        td[colspan] {
            text-align: center;
        }

        tbody tr:hover td {
            background-color: #fafeff;
            transition: 0.1s;
        }
    </style>
</head>/* End custom CSS */