        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f5f7fb;
            color: #1f2937;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;

        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-header h1 {
            margin: 0 0 10px;
            font-size: 34px;
            font-weight: 700;
        }

        .page-header p {
            margin: 0;
            color: #6b7280;
            font-size: 15px;
        }

        .location-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .location-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            text-decoration: none;
            color: inherit;
            transition: 0.25s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
            border-color: #2563eb;
        }

        .location-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .location-id {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 35px;
            height: 35px;
            padding: 0 10px;
            border-radius: 8px;
            background: #eff6ff;
            color: #2563eb;
            font-size: 13px;
            font-weight: 700;
        }

        .location-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #eef2ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .location-title {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            color: #1f2937;
        }

        .location-readmore {
            margin-top: auto;
            font-size: 14px;
            font-weight: 600;
            color: #2563eb;
        }

        .empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px;
            background: #ffffff;
            border-radius: 14px;
            color: #6b7280;
        }

        @media (max-width: 900px) {
            .location-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .location-list {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 30px 15px;
            }

            .page-header h1 {
                font-size: 26px;
            }
        }

        /*content compression table css */

        .location-table-wrapper {
            width: 100%;
            margin: -10px 0;
            border: 1px solid #d4cec1;
        }

        .location-table-wrapper .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        .location-comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .location-comparison-table thead {
            background: #273750;
        }

        .location-comparison-table thead th {
            padding: 16px 18px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            text-align: left;
            border-right: 1px solid rgba(255, 255, 255, 0.25);
        }

        .location-comparison-table thead th:last-child {
            border-right: none;
        }

        /* First column like reference */
        .location-comparison-table th:first-child,
        .location-comparison-table td:first-child {
            width: 13%;
        }

        .location-comparison-table tbody td {
            padding: 16px 18px;
            font-size: 13px;
            line-height: 1.65;
            color: #4b5969;
            vertical-align: top;
            border-right: 1px solid #d8d2c6;
            border-bottom: 1px solid #d8d2c6;
        }

        .location-comparison-table tbody td:last-child {
            border-right: none;
        }

        .location-comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Feature column */
        .location-comparison-table tbody td:first-child {
            font-weight: 600;
            color: #334155;
        }

        @media (max-width: 767px) {

            .location-comparison-table {
                min-width: 700px;
            }

            .location-comparison-table thead th,
            .location-comparison-table tbody td {
                padding: 14px 16px;
                font-size: 13px;
            }

        }

                .feature-tags {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    margin-top: 18px;
                }
        
                .feature-tag {
                    display: inline-block;
                    padding: 10px 16px;
                    background: #f1f3ef;
                    border: 1px solid #d2d8d1;
                    color: #3d4b52;
                    font-size: 16px;
                    line-height: 1.5;
                }
        
                @media (max-width: 768px) {
                    .feature-tag {
                        font-size: 14px;
                        padding: 8px 12px;
                    }
                }