  :root {
            --red: #d32f2f;
            --red-dark: #b71c1c;
            --red-light: #ef5350;
            --red-bg: #fff5f5;
            --red-border: #fecaca;
            --text-dark: #1a1a2e;
            --text-mid: #374151;
            --text-soft: #6b7280;
            --white: #ffffff;
            --off-white: #f9fafb;
            --border: #e5e7eb;
            --shadow-sm: 0 2px 12px rgba(211, 47, 47, 0.08);
            --shadow-md: 0 6px 28px rgba(211, 47, 47, 0.13);
            --shadow-lg: 0 20px 60px rgba(211, 47, 47, 0.18);
            --primary: #316dff;
            --blue-dark: #1a3fa3;
            --blue-bg: #eef3ff;
            --blue-border: #c3d0f8;
        }
         /* ─── STICKY SIDEBAR TOC ─── */
.tc-sidebar {
    position: sticky;
    top: 90px;
}
        /* ─── META BAR ─── */
        .tc-meta-bar {
            background: var(--off-white);
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
        }

        .tc-meta-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .tc-updated-badge {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 8px;
            font-size: 12.5px;
            color: var(--text-soft);
            line-height: 1.6;
        }
        .tc-updated-badge i { color: var(--primary); flex-shrink: 0; }
        .tc-updated-badge strong { color: var(--text-dark); }
        .tc-updated-badge .sep-pipe { color: var(--border); }

        .tc-print-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-mid);
            background: none;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 16px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .tc-print-btn:hover { background: var(--white); border-color: var(--red); color: var(--red); }

        @media (min-width: 768px) {
            .tc-meta-inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            .tc-updated-badge .sep-pipe { display: inline; }
        }

        @media (max-width: 767px) {
            .tc-updated-badge .sep-pipe { display: none; }
            .tc-print-btn { width: 100%; justify-content: center; }
        }

        /* ─── MAIN LAYOUT ─── */
        .tc-wrapper {
            padding: 60px 0 80px;
            background: #fff;
        }

        /* ─── STICKY SIDEBAR TOC ─── */
        .tc-sidebar {
            position: sticky;
            top: 90px;
        }

        .tc-toc {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .tc-toc-header {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tc-toc-header i { color: #fff; font-size: 16px; }
        .tc-toc-header h5 {
            margin: 0;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .tc-toc-list { padding: 14px 0; }
        .tc-toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }
        .tc-toc-list a .toc-num {
            min-width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--off-white);
            color: var(--red);
            font-size: 10.5px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--red-border);
            transition: all 0.2s;
        }
        .tc-toc-list a:hover {
            color: var(--red);
            background: var(--red-bg);
            border-left-color: var(--red);
        }
        .tc-toc-list a:hover .toc-num {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
        }
        .tc-toc-list a.active {
            color: var(--red);
            background: var(--red-bg);
            border-left-color: var(--red);
            font-weight: 700;
        }
        .tc-toc-list a.active .toc-num {
            background: var(--red);
            color: #fff;
        }

        /* Contact Card in Sidebar */
        .tc-contact-card {
            background: linear-gradient(135deg, #0d1b4b 0%, #1a3fa3 100%);
            border-radius: 18px;
            padding: 26px 22px;
            margin-top: 20px;
            text-align: center;
        }
        .tc-contact-card i { font-size: 28px; color: rgba(255,255,255,0.8); margin-bottom: 12px; display: block; }
        .tc-contact-card h6 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
        .tc-contact-card p { color: rgba(255,255,255,0.7); font-size: 12.5px; margin-bottom: 16px; }
        .tc-contact-card a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--red);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
        }
        .tc-contact-card a:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }

        /* ─── QUICK SUMMARY CARDS ─── */
        .cp-quick-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        .cp-quick-card {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 22px 18px;
            text-align: center;
            transition: all 0.22s;
        }
        .cp-quick-card:hover {
            border-color: var(--red-border);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .cp-quick-card .qc-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin: 0 auto 12px;
        }
        .cp-quick-card .qc-icon.red { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); }
        .cp-quick-card .qc-icon.blue { background: var(--blue-bg); color: var(--primary); border: 1px solid var(--blue-border); }
        .cp-quick-card .qc-icon.green { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
        .cp-quick-card h6 { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
        .cp-quick-card p { font-size: 12px; color: var(--text-soft); margin: 0; line-height: 1.5; }

        /* ─── CONTENT SECTIONS ─── */
        .tc-section {
            margin-bottom: 48px;
            scroll-margin-top: 100px;
        }

        .tc-section-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
            padding-bottom: 18px;
            border-bottom: 2px solid var(--border);
        }

        .tc-section-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .tc-section-icon.red { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); }
        .tc-section-icon.blue { background: var(--blue-bg); color: var(--primary); border: 1px solid var(--blue-border); }
        .tc-section-icon.green { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

        .tc-section-header-text { flex: 1; }
        .tc-section-num {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 3px;
        }
        .tc-section-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0;
        }

        .tc-prose {
            font-size: 14.5px;
            color: var(--text-mid);
            line-height: 1.85;
        }

        /* List style */
        .tc-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
        }
        .tc-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.65;
        }
        .tc-list li:last-child { border-bottom: none; }
        .tc-list li .li-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--red-bg);
            color: var(--red);
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            border: 1px solid var(--red-border);
            transition: all 0.2s;
        }
        .tc-list li .li-icon.blue { background: var(--blue-bg); color: var(--primary); border-color: var(--blue-border); }
        .tc-list li .li-icon.green { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
        .tc-list li .li-icon.orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }

        /* Highlight box */
        .tc-highlight {
            background: var(--red-bg);
            border: 1px solid var(--red-border);
            border-left: 4px solid var(--red);
            border-radius: 10px;
            padding: 16px 20px;
            margin-top: 16px;
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.75;
        }
        .tc-highlight.blue {
            background: var(--blue-bg);
            border-color: var(--blue-border);
            border-left-color: var(--primary);
        }
        .tc-highlight.green {
            background: #f0fdf4;
            border-color: #bbf7d0;
            border-left-color: #16a34a;
        }
        .tc-highlight.orange {
            background: #fff7ed;
            border-color: #fed7aa;
            border-left-color: #ea580c;
        }
        .tc-highlight strong { color: var(--text-dark); }

        /* Info grid */
        .tc-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 18px;
        }
        .tc-info-card {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .tc-info-card i {
            font-size: 18px;
            color: var(--primary);
            margin-top: 2px;
            flex-shrink: 0;
        }
        .tc-info-card i.red { color: var(--red); }
        .tc-info-card i.green { color: #16a34a; }
        .tc-info-card h6 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
        .tc-info-card p { font-size: 12.5px; color: var(--text-soft); margin: 0; line-height: 1.5; }

        /* ─── TIMELINE (Cancellation Window) ─── */
        .cp-timeline {
            position: relative;
            padding-left: 28px;
            margin-top: 20px;
        }
        .cp-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: linear-gradient(180deg, var(--red), var(--primary), #16a34a);
            border-radius: 2px;
        }
        .cp-timeline-item {
            position: relative;
            padding: 0 0 24px 24px;
        }
        .cp-timeline-item:last-child { padding-bottom: 0; }
        .cp-timeline-dot {
            position: absolute;
            left: -28px;
            top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: 700;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px currentColor;
        }
        .cp-timeline-dot.green { background: #16a34a; color: #fff; box-shadow: 0 0 0 2px #16a34a; }
        .cp-timeline-dot.orange { background: #ea580c; color: #fff; box-shadow: 0 0 0 2px #ea580c; }
        .cp-timeline-dot.red { background: var(--red); color: #fff; box-shadow: 0 0 0 2px var(--red); }
        .cp-timeline-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .cp-timeline-label.green { color: #16a34a; }
        .cp-timeline-label.orange { color: #ea580c; }
        .cp-timeline-label.red { color: var(--red); }
        .cp-timeline-text {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        /* ─── REFUND TABLE ─── */
        .cp-refund-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-top: 20px;
            font-size: 13.5px;
        }
        .cp-refund-table thead tr {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
        }
        .cp-refund-table thead th {
            padding: 14px 18px;
            color: #fff;
            font-weight: 700;
            font-size: 12.5px;
            letter-spacing: 0.4px;
            text-align: left;
        }
        .cp-refund-table tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background 0.15s;
        }
        .cp-refund-table tbody tr:last-child { border-bottom: none; }
        .cp-refund-table tbody tr:hover { background: var(--off-white); }
        .cp-refund-table td {
            padding: 13px 18px;
            color: var(--text-mid);
            vertical-align: middle;
        }
        .cp-refund-table td:first-child { font-weight: 600; color: var(--text-dark); }
        .cp-badge {
            display: inline-block;
            font-size: 11.5px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
        }
        .cp-badge.full { background: #dcfce7; color: #15803d; }
        .cp-badge.partial { background: #fef9c3; color: #a16207; }
        .cp-badge.none { background: #fee2e2; color: #b91c1c; }
        .cp-badge.na { background: var(--off-white); color: var(--text-soft); border: 1px solid var(--border); }

        /* ─── AGREEMENT FOOTER BANNER ─── */
        .tc-agreement-banner {
            background: linear-gradient(135deg, #0d1b4b 0%, #1a1a2e 50%, #7f0000 100%);
            border-radius: 20px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 16px;
        }
        .tc-agreement-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h-5V20.5h5zM15 45V20H0v5h5v5H0v5h5v5H0v5h15v-5H5v-5h5v-5H5v-5h10z'/%3E%3C/g%3E%3C/svg%3E");
        }
        .tc-agreement-banner i {
            font-size: 42px;
            color: rgba(255,255,255,0.35);
            display: block;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .tc-agreement-banner h3 {
            color: #fff;
            font-size: 1.55rem;
            font-weight: 800;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .tc-agreement-banner p {
            color: rgba(255,255,255,0.7);
            font-size: 14.5px;
            max-width: 540px;
            margin: 0 auto 26px;
            position: relative;
            z-index: 1;
        }
        .tc-agreement-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn-tc-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--red-dark), var(--red-light));
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
            box-shadow: 0 5px 20px rgba(183,28,28,0.4);
        }
        .btn-tc-primary:hover {
            background: linear-gradient(135deg, #7f0000, var(--red-dark));
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(183,28,28,0.55);
            color: #fff;
        }
        .btn-tc-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,0.35);
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
        }
        .btn-tc-outline:hover {
            border-color: #fff;
            color: #fff;
            background: rgba(255,255,255,0.08);
        }

        /* ─── GLOBAL OVERFLOW FIX ─── */
        html, body {
            overflow-x: hidden !important;
            max-width: 100vw !important;
        }
        .main-wrapper {
            overflow-x: hidden !important;
            max-width: 100vw !important;
        }

        /* ─── CP BANNER (custom prefix cp- to avoid style.css conflicts) ─── */
        .cp-hero-banner {
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-sizing: border-box;
        }
        .cp-hero-banner .cp-banner-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .cp-hero-banner .cp-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13,27,75,0.88) 0%, rgba(26,26,46,0.82) 50%, rgba(127,0,0,0.85) 100%);
            z-index: 1;
        }
        .cp-hero-banner .cp-banner-body {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 100%;
            padding: 60px 20px 60px;
            box-sizing: border-box;
        }
        .cp-banner-eyebrow {
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 100px;
            margin-bottom: 20px;
            max-width: 100%;
            word-break: break-word;
        }
        .cp-banner-eyebrow i { color: #ef5350; }
        .cp-banner-h1 {
            font-size: clamp(1.6rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin: 0 auto 14px;
            max-width: 100%;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        .cp-banner-h1 span {
            color: #ef5350;
            display: block;
            font-size: clamp(1.3rem, 4.5vw, 2.6rem);
            word-break: break-word;
        }
        .cp-banner-sub {
            color: rgba(255,255,255,0.75);
            font-size: clamp(13px, 3vw, 15.5px);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        .cp-banner-btns {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .cp-btn-red {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #b71c1c, #ef5350);
            color: #fff;
            font-size: clamp(12px, 3vw, 14px);
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
            box-shadow: 0 4px 18px rgba(183,28,28,0.4);
            white-space: nowrap;
        }
        .cp-btn-red:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 6px 24px rgba(183,28,28,0.55); }
        .cp-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,0.4);
            color: rgba(255,255,255,0.9);
            font-size: clamp(12px, 3vw, 14px);
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
            white-space: nowrap;
        }
        .cp-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

        /* Stat badges — desktop only */
        .cp-stat-badge {
            display: none;
        }
        @media (min-width: 768px) {
            .cp-stat-badge {
                display: flex;
                align-items: center;
                gap: 10px;
                position: absolute;
                z-index: 3;
                background: rgba(255,255,255,0.12);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255,255,255,0.2);
                border-radius: 14px;
                padding: 12px 18px;
            }
            .cp-stat-badge.badge-left { left: 24px; bottom: 32px; }
            .cp-stat-badge.badge-right { right: 24px; bottom: 32px; }
            .cp-stat-badge .badge-icon {
                width: 36px; height: 36px;
                background: var(--red); border-radius: 50%;
                display: flex; align-items: center; justify-content: center;
                color: #fff; font-size: 14px;
            }
            .cp-stat-badge .num { font-size: 15px; font-weight: 800; color: #fff; line-height: 1; }
            .cp-stat-badge .label { font-size: 11px; color: rgba(255,255,255,0.7); }
            .cp-hero-banner .cp-banner-body { padding: 80px 40px; }
        }

        @media (max-width: 576px) {
            .cp-btn-red, .cp-btn-outline {
                width: 100%;
                justify-content: center;
            }
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 991px) {
            .tc-sidebar { position: static; margin-bottom: 32px; }
            .tc-toc { position: static; }
            .cp-quick-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .tc-info-grid { grid-template-columns: 1fr; }
            .tc-agreement-banner { padding: 36px 24px; }
            .tc-agreement-banner h3 { font-size: 1.25rem; }
            .tc-wrapper { padding: 40px 0 60px; }
            .cp-refund-table { font-size: 12.5px; }
            .cp-refund-table td, .cp-refund-table thead th { padding: 10px 12px; }
        }
        @media (max-width: 576px) {
            .tc-section-header { flex-direction: column; gap: 12px; }
            .tc-section-title { font-size: 1.1rem; }
            .tc-prose { font-size: 14px; }
            .tc-highlight { font-size: 13px; padding: 14px 16px; }
            .tc-info-card { padding: 14px 14px; }
            .tc-agreement-banner { padding: 28px 18px; }
            .btn-tc-primary, .btn-tc-outline {
                width: 100%;
                justify-content: center;
                padding: 13px 20px;
            }
            .tc-agreement-actions { flex-direction: column; gap: 10px; }
            .tc-section { margin-bottom: 36px; }
            .cp-quick-grid { grid-template-columns: 1fr; }
            .cp-refund-table { display: block; overflow-x: auto; white-space: nowrap; }
        }