
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #ffffff;
            font-family: 'Open Sans', sans-serif;
            padding: 40px 20px;
            line-height: 1.5;
            color: #222;
        }
        .fullwidth-module {
            width: 100%;
            background-color: #f9fafb;
            border-radius: 24px;
            margin: 30px 0;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 32px;
            box-sizing: border-box;
        }
        h1, h2, h3 {
            font-weight: 700;
            color: #111;
        }
        h1 {
            font-size: 36px;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 28px;
            margin: 40px 0 20px;
            border-left: 4px solid #0047AB;
            padding-left: 18px;
        }
        h3 {
            font-size: 22px;
            margin: 28px 0 16px;
            color: #0047AB;
        }
        p {
            font-size: 16px;
            line-height: 1.55;
            color: #2c3e3f;
            margin-bottom: 1.2em;
        }
        a {
            color: #0047AB;
            text-decoration: none;
            font-weight: 500;
        }
        a:hover {
            text-decoration: underline;
        }
        .brand-highlight {
            font-weight: 700;
            color: #0047AB;
        }
        ul, ol {
            margin: 1em 0 1em 2em;
        }
        li {
            margin-bottom: 0.5em;
            font-size: 16px;
            line-height: 1.5;
            color: #2c3e3f;
        }
        .product-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .product-tag {
            background: #eef2fa;
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 600;
            color: #0047AB;
            border: 1px solid #cfdfed;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 16px;
            border: 1px solid #dce5ef;
            background: #fff;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
            min-width: 500px;
        }
        th, td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e9edf2;
            vertical-align: top;
        }
        th {
            background-color: #f4f8fe;
            font-weight: 700;
            color: #0047AB;
            border-bottom: 2px solid #dce5ef;
        }
        tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .container { padding: 28px 20px; }
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
            h3 { font-size: 20px; }
            th, td { padding: 10px 12px; font-size: 14px; }
        }
        @media (max-width: 640px) {
            table, thead, tbody, tr, td, th {
                display: block;
            }
            thead {
                display: none;
            }
            tr {
                margin-bottom: 20px;
                border: 1px solid #dce5ef;
                border-radius: 16px;
                background: #fff;
            }
            td {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                padding: 10px 14px;
                border-bottom: 1px solid #e9edf2;
                gap: 12px;
                flex-wrap: wrap;
            }
            td:last-child { border-bottom: none; }
            td::before {
                content: attr(data-label);
                font-weight: 700;
                color: #0047AB;
                width: 40%;
                flex-shrink: 0;
            }
        }
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 32px 0 16px;
        }
        .btn {
            display: inline-block;
            background: transparent;
            border: 2px solid #0047AB;
            border-radius: 40px;
            padding: 8px 28px;
            font-weight: 600;
            font-size: 15px;
            color: #0047AB;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .btn:hover {
            background: #0047AB;
            color: #fff;
            text-decoration: none;
        }
        .ref-list {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            font-size: 14px;
        }
        .ref-list p {
            margin-bottom: 8px;
        }
        hr {
            margin: 32px 0;
            border: none;
            border-top: 1px solid #e2e8f0;
        }
        .note-callout {
            background: #eef4ff;
            border-left: 4px solid #0047AB;
            padding: 16px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
    