
:root {
    --brand-blue: #063966;
    --brand-red: #e3000f;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    background-color: #e9ecef;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* The "Paper" Container */
.document-container,
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

/* Terms Container Specifics */
.terms-container {
    margin-top: 30px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.terms-container h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.terms-container ol,
.terms-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.terms-container p {
    margin-bottom: 0.75rem;
    text-align: justify;
}

/* Top decorative accent */
.document-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--brand-red);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Header Styling */
.doc-header {
    border-bottom: 2px solid var(--brand-blue);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.contract-badge {
    background-color: rgba(6, 57, 102, 0.05);
    border: 1px solid rgba(6, 57, 102, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    text-align: right;
}

/* Modern Data Cards */
.info-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 15px 20px;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.info-card-header {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 8px;
}

.info-card-header i {
    color: var(--brand-red);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Data Fields */
.data-group {
    margin-bottom: 10px;
}

.data-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.data-value {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.2;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 2px;
    min-height: 20px;
}

/* Checkbox styling for print simulation */
.check-item {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.check-box {
    width: 14px;
    height: 14px;
    border: 2px solid var(--brand-blue);
    display: inline-block;
    margin-right: 5px;
    border-radius: 2px;
    position: relative;
}

.check-item.active .check-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--brand-red);
    position: absolute;
    top: -2px;
    left: 1px;
}

/* Quick Glance Highlight Bar */
.highlight-bar {
    background-color: var(--brand-blue);
    color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.highlight-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.highlight-value {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Legal & Signatures */
.legal-block {
    background-color: #fff;
    border: 1px solid var(--brand-blue);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.legal-title {
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--brand-blue);
}

.legal-text {
    font-size: 0.65rem;
    line-height: 1.4;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

.signature-line {
    border-top: 1px solid #000;
    padding-top: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-top: 40px;
}

/* Print Settings */
@media print {
    @page {
        margin: 0.4in;
        size: portrait;
    }

    body {
        background-color: #fff;
        padding: 0;
    }

    .document-container,
    .terms-container {
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
        margin: 0;
    }

    .document-container::before {
        display: none;
    }

    .info-card {
        background-color: #f8f9fa !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .highlight-bar {
        background-color: var(--brand-blue) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .contract-badge {
        background-color: #f1f5f9 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .no-print {
        display: none !important;
    }

    .row {
        page-break-inside: avoid;
    }

    .data-value {
        border-bottom: 1px solid #000;
    }

    /* Solid lines for print clarity */

    /* Start Terms on a new page */
    .terms-container {
        page-break-before: always;
        font-size: 0.7rem;
        /* Reduce font size slightly to save paper */
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    p,
    li {
        page-break-inside: avoid;
    }
}
/* Brand Colors & Base Styles */
:root {
    --apw-blue: #063966;
    /* Logo Navy */
    --apw-red: #e3000f;
    /* Logo Red */
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 80px;
    /* Offset for fixed navbar */
    color: #333;
}

/* Interactive Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 65%;
    height: auto;
    padding: 4px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: #063966 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e3000f;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-quote-nav {
    background-color: #e3000f !important;
    color: white !important;
    border-radius: 30px;
    padding: 8px 24px !important;
    box-shadow: 0 4px 6px rgba(227, 0, 15, 0.3);
    transition: all 0.3s ease;
    font-weight: 700 !important;
}

.btn-quote-nav:hover {
    background-color: white;
    color: #e3000f !important;
    transform: translateY(-2px);
    font-weight: 700 !important;
}

/* Modern Hero Header */
.hero-section {
    background: linear-gradient(to right, rgba(6, 57, 102, 0.9), rgba(6, 57, 102, 0.6)), url('/images/website/motorbike-6.jpg') center/cover no-repeat;
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80% 50%;
    padding-top: 7%;
    padding-bottom: 5%;
    font-family: "Poppins", sans-serif;
    margin-top: 0px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 4px solid #e3000f;
    padding-left: 20px;
    color: #fff;
}

.btn-hero {
    background-color: #e3000f;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 0, 15, 0.4);
    color: white;
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background-color: white;
    color: #063966;
}

/* Section Titles */
.section-title {
    color: #063966;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e3000f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.text-start::after {
    margin: 15px 0 0;
}

/* What We Cover Cards */
.coverage-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px 20px;
    height: 100%;
}

.coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.coverage-icon {
    font-size: 3rem;
    color: #e3000f;
    margin-bottom: 20px;
}

/* Why Choose APW */
.why-apw-section {
    padding: 80px 0;
    background-color: white;
}

.why-apw-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.check-list i {
    color: #e3000f;
    margin-right: 12px;
    font-size: 1.3rem;
    float: left;
    margin-top: 4px;
}

.check-list span {
    display: block;
    margin-left: 35px;
}

.advantage-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e3000f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(6, 57, 102, 0.05);
    /* Subtle brand blue background */
    color: #063966;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon-wrapper {
    background: #063966;
    color: #ffffff;
    transform: scale(1.1);
}

.advantage-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #063966;
    font-size: 1.25rem;
}

.advantage-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #063966;
    color: white;
    padding: 60px 0 30px;
    border-top: 5px solid #e3000f;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #e3000f;
}

.btn-partner-nav {
    background-color: transparent;
    color: #063966 !important;
    /* Changed to navy blue */
    border: 2px solid #063966;
    /* Changed to navy blue border */
    border-radius: 30px;
    padding: 6px 20px !important;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-weight: 700 !important;
}

.btn-partner-nav:hover {
    background-color: #063966;
    color: white !important;
    transform: translateY(-2px);
    font-weight: 700 !important;
}

.page-header {
    background: linear-gradient(to right, rgba(6, 57, 102, 0.9), rgba(6, 57, 102, 0.6)), url('/images/website/fourWheeler.jpg') center/cover no-repeat;
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
    font-family: "Poppins", sans-serif;
    color: white;
    text-align: center;
    margin-top: 50px !important;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 auto;
    border-bottom: 3px solid var(--apw-red);
    padding-bottom: 20px;
    display: inline-block;
    text-align: center !important;
}

/* Main Navigation Tabs */
.plan-main-tabs .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--apw-blue);
    border: 2px solid var(--apw-blue);
    border-radius: 50px;
    padding: 12px 35px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.plan-main-tabs .nav-link.active,
.plan-main-tabs .nav-link:hover {
    background-color: var(--apw-blue) !important;
    color: #ffffff !important;
}

/* Sub Category Tabs */
.sub-category-tabs .nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 24px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.sub-category-tabs .nav-link.active {
    background-color: var(--apw-red) !important;
    color: #ffffff !important;
    border-color: var(--apw-red) !important;
}

/* Hero Highlight Box for Complete Plan */
.complete-hero-card {
    background: #ffffff;
    border-radius: 16px;
    border-left: 6px solid var(--apw-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
}

/* Standard Coverage Item Card */
.coverage-item-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.coverage-item-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--apw-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
    font-size: 2.2rem;
    color: var(--apw-blue);
    margin-bottom: 15px;
}

.coverage-item-card h4 {
    font-weight: 700;
    color: var(--apw-blue);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.coverage-item-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Touring Bike Feature Banner */
.touring-card {
    background: linear-gradient(135deg, #063966 0%, #0a4f8a 100%);
    color: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(6, 57, 102, 0.15);
}

.touring-card h4 {
    color: #ffffff;
    font-weight: 700;
}

.touring-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Add-ons Section */
.addons-section {
    background-color: var(--apw-blue);
    color: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.addons-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 0, 15, 0.2));
    transform: skewX(-45deg);
}

.addon-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.addon-icon {
    color: var(--apw-red);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.addon-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.addon-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/*Claims*/
.page-header {
    background: linear-gradient(135deg, rgba(6, 57, 102, 0.95), rgba(6, 57, 102, 0.8)), url('/images/website/dirtBikeRepair.jpg') center/cover no-repeat;
    width: 100%;
    height: auto;
    background-position: 60% 60%;
    padding-top: 5rem;
    padding-bottom: 4rem;
    font-family: "Poppins", sans-serif;
    color: white;
    text-align: center;
    margin-top: 0;
    border-bottom: 4px solid var(--apw-red);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Claims Step Cards */
.step-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 40px 25px 25px;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    border-top: 4px solid var(--apw-blue);
    margin-top: 30px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(6, 57, 102, 0.12);
    border-top-color: var(--apw-red);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--apw-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(6, 57, 102, 0.3);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background-color: var(--apw-red);
    box-shadow: 0 4px 10px rgba(227, 0, 15, 0.3);
}

.step-card h4 {
    color: var(--apw-blue);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.15rem;
    margin-top: 10px;
}

.step-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Claims Hotline Highlight */
.claim-hotline {
    background: #fff;
    border: 1px dashed var(--apw-blue);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--apw-blue);
    display: inline-block;
    margin-top: 8px;
}

/* Direct Pay Banner */
.philosophy-banner {
    background: linear-gradient(135deg, var(--apw-blue) 0%, #031d36 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(6, 57, 102, 0.25);
    margin-top: 50px;
    border-left: 6px solid var(--claim-green);
}

.philosophy-banner::before {
    content: '\f09d';
    /* Credit card icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-10deg);
}

.philosophy-banner h3 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.philosophy-banner p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.icon-box-claim {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quick Notice Box */
.claims-notice {
    background-color: #fef3c7;
    border-left: 4px solid var(--claim-amber);
    padding: 15px 20px;
    border-radius: 6px;
    color: #92400e;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/*Exclusion*/
/* --- Page Header Banner --- */
.coverage-page .page-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #0d4b82 100%);
    color: #ffffff;
    padding: 100px 0 40px;
    border-bottom: 5px solid var(--brand-red);
    margin-bottom: 40px;
}

.coverage-page .page-header h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.coverage-page .page-header p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Scoped Cards --- */
.coverage-page .custom-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.coverage-page .custom-card-header {
    background-color: #ffffff;
    border-bottom: 2px solid var(--light-bg);
    padding: 20px 30px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.coverage-page .custom-card-body {
    padding: 30px;
}

/* --- Scoped Interactive Component Cards --- */
.coverage-page .coverage-part-card {
    background: #ffffff;
    border: 2px solid #f1f3f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.coverage-page .coverage-part-card:hover {
    border-color: var(--brand-blue);
    background-color: var(--light-bg);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(6, 57, 102, 0.1);
}

.coverage-page .coverage-part-card i {
    font-size: 2rem;
    color: var(--brand-red);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.coverage-page .coverage-part-card:hover i {
    color: var(--brand-blue);
    transform: scale(1.1);
}

.coverage-page .coverage-part-card h6 {
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.coverage-page .coverage-part-card::after {
    content: 'Click for details';
    display: block;
    font-size: 0.7rem;
    color: #adb5bd;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.coverage-page .coverage-part-card:hover::after {
    opacity: 1;
}

/* --- Scoped Buttons --- */
.coverage-page .btn-brand-red {
    background-color: var(--brand-red);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.coverage-page .btn-brand-red:hover {
    background-color: #b3000a;
    color: #ffffff;
}

/* --- Scoped Nav Pills --- */
.coverage-page .nav-pills .nav-link {
    color: var(--brand-blue);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.coverage-page .nav-pills .nav-link.active {
    background-color: var(--brand-blue);
    color: #ffffff;
}

/* --- Scoped Accordion & Exclusions List --- */
.coverage-page .accordion-button:not(.collapsed) {
    background-color: rgba(6, 57, 102, 0.05);
    color: var(--brand-blue);
    font-weight: 700;
}

.coverage-page .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(6, 57, 102, 0.25);
}

.coverage-page .exclusions-list {
    padding-left: 0;
    list-style: none;
}

.coverage-page .exclusions-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    line-height: 1.6;
    color: var(--brand-grey);
    font-size: 0.95rem;
}

.coverage-page .exclusions-list li strong.ex-num {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-red);
    font-weight: 700;
    width: 24px;
}