.comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .comparison-table th {
            background-color: #004d99;
            color: #fff;
            font-weight: 700;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f1f1f1;
        }
        @media (max-width: 768px) {
            .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td {
                display: block;
                width: 100%;
            }
            .comparison-table tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
                display: flex;
                flex-direction: column;
            }
            .comparison-table td {
                text-align: right;
                position: relative;
                padding-left: 50%;
            }
            .comparison-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                text-align: left;
                font-weight: bold;
                color: #555;
            }
            .comparison-table thead {
                display: none;
            }
        }