: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;
}


/* ─── HERO BREADCRUMB OVERRIDE ─── */
.tc-hero {
    background: linear-gradient(135deg, #0d1b4b 0%, #1a1a2e 40%, #7f0000 100%);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.tc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tc-hero .deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.tc-hero .deco-circle.c1 { width:420px; height:420px; top:-150px; right:-100px; }
.tc-hero .deco-circle.c2 { width:260px; height:260px; bottom:-100px; left:-60px; }
.tc-hero .deco-circle.c3 { width:160px; height:160px; top:40px; left:30%; background: rgba(211,47,47,0.07); border:none; }

.tc-hero-inner { position: relative; z-index: 2; text-align: center; }

.tc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.tc-hero-eyebrow i { color: var(--red-light); }

.tc-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.18;
}
.tc-hero h1 span { color: var(--red-light); }

.tc-hero p {
    color: rgba(255,255,255,0.72);
    font-size: 15.5px;
    max-width: 560px;
    margin: 0 auto 28px;
}

.tc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.tc-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.tc-breadcrumb a:hover { color: var(--red-light); }
.tc-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.tc-breadcrumb .current { color: var(--red-light); font-weight: 600; }

/* ─── 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;
}

/* ─── UPDATED BADGE ─── */
.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); }

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

/* Hide pipes on small mobile, show as new line break via flex wrap */
@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;
        overflow: hidden;
}

.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; }

/* ─── 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-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); }

/* 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 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 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; }

/* ─── 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);
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */

/* ─── TABLET (max 991px) ─── */
@media (max-width: 991px) {
    .tc-sidebar {
        position: static;
        margin-bottom: 32px;
    }
    .tc-toc {
        position: static;
    }
}

/* ─── MOBILE LARGE (max 768px) ─── */
@media (max-width: 768px) {
    .tc-hero {
        padding: 50px 0 60px;
    }
    .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;
    }
}

/* ─── MOBILE SMALL (max 576px) ─── */
@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;
    }
}
.contact-hero-banner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}