    /* Scoped Styles with 3 Parent Levels to avoid conflicts */
    .main-page .hero-container {
        --brand-red: #f50000;
        /* Vibrant Red from image */
        --navy-dark: #002d51;
        /* Deep Navy Blue */
        --border-color: #dce4eb;
        /* Light Blue-Grey border */
        --text-grey: #5e6c7a;

        /* Background Configuration */
        /* Replace the URL with your actual image path */
        background: linear-gradient(105deg, rgba(255, 245, 245, 0.5) 0%, rgba(241, 244, 248, 0.5) 100%), 
            url("{{ asset('frontend/assets/img/marketing-imgs/hero-bg.png') }}");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        padding: 120px 0 60px;
        font-family: 'Inter', sans-serif;
        position: relative;
        overflow: hidden;
        min-height: 80vh;
        /* display: flex;
        align-items: center; */
    }

    /* AI Badge Styling */
    .main-page .hero-container .ai-badge {
        display: inline-flex;
        align-items: center;
        background: #FFFFFF;
        padding: 8px 22px;
        border-radius: 50px;
        border: 1px solid #E2E8F0;
        font-size: 14px;
        font-weight: 500;
        color: var(--navy-dark);
        margin-bottom: 40px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .main-page .hero-container .ai-badge .dot {
        height: 8px;
        width: 8px;
        background-color: #FF8F92;
        border-radius: 50%;
        margin-right: 12px;
    }

    /* Main Title: Playfair Display Font */
    .main-page .hero-container .hero-title {
        font-family: 'Playfair Display', serif !important;
        font-weight: 700;
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        color: var(--navy-dark);
        line-height: 1.1;
        letter-spacing: -1.5px;
        /* Tight letter spacing for premium look */
        margin-bottom: 25px;
    }

    /* Italic Red styling for "minutes" */
    .main-page .hero-container .hero-title .italic-red {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--brand-red);
        font-weight: 700;
    }

    /* Description text */
    .main-page .hero-container .hero-desc {
        font-size: 22px;
        color: var(--text-grey);
        max-width: 780px;
        margin: 30px auto 50px auto;
        line-height: 1.6;
    }

    /* Button Group Container */
    .main-page .hero-container .hero-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Base Button Styling */
    .main-page .hero-container .btn-base,
    .main-page .showcase-section .btn-base,
    .main-page .cta-final-section .btn-base,
    .main-page .training-needs-section .btn-base,
    .main-page .how-it-works-section .btn-base {
        padding: 18px 45px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
    }

    /* Red Button Hover UI */
    .main-page .hero-container .btn-red-exact,
    .main-page .showcase-section .btn-red-exact,
    .main-page .training-needs-section .btn-red-exact,
    .main-page .cta-final-section .btn-red-exact,
    .main-page .how-it-works-section .btn-red-exact {
        background-color: #f50000;
        color: #ffffff !important;
        box-shadow: 0 10px 20px rgba(245, 0, 0, 0.15);
    }

    .main-page .hero-container .btn-red-exact:hover,
    .main-page .how-it-works-section .btn-red-exact:hover,
    .main-page .cta-final-section .btn-red-exact:hover,
    .main-page .training-needs-section .btn-red-exact:hover,
    .main-page .showcase-section .btn-red-exact:hover {
        background-color: #d60000;
        transform: translateY(-5px);
        /* Lift-up Effect */
        box-shadow: 0 15px 35px rgba(245, 0, 0, 0.35);
        /* Shadow Glow */
    }

    /* White Button Hover UI */
    .main-page .hero-container .btn-white-exact {
        background-color: #ffffff;
        color: var(--navy-dark) !important;
        border: 1.5px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .main-page .hero-container .btn-white-exact:hover {
        background-color: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-5px);
        /* Lift-up Effect */
        box-shadow: 0 12px 25px rgba(0, 45, 81, 0.08);
    }

    /* Icon Animation on Hover */
    .main-page .hero-container .btn-base i,
    .main-page .showcase-section .btn-base i,
    .main-page .cta-final-section .btn-base i,
    .main-page .training-needs-section .btn-base i,
    .main-page .how-it-works-section .btn-base i {
        font-family: "Font Awesome 6 Free", sans-serif !important;
        font-weight: 900;
        margin-left: 15px;
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .main-page .hero-container .btn-base:hover i,
    .main-page .showcase-section .btn-base:hover i,
    .main-page .cta-final-section .btn-base:hover i,
    .main-page .training-needs-section .btn-base:hover i,
    .main-page .how-it-works-section .btn-base:hover i {
        transform: translateX(6px);
        /* Arrow moves right on hover */
    }

    /* Footer Note Text */
    .main-page .hero-container .hero-small-text {
        font-size: 15px;
        color: #94A3B8;
        margin-top: 25px;
    }

    /* Responsive Design for Mobile */
    @media (max-width: 768px) {
        .main-page .hero-container {
            padding: 115px 0 50px;
        }

        .main-page .hero-container .hero-title {
            font-size: 38px;
        }

        .main-page .hero-container .hero-desc {
            font-size: 18px;
        }

        .main-page .hero-container .hero-btn-group {
            flex-direction: column;
            padding: 0 25px;
        }

        .main-page .hero-container .btn-base,
        .main-page .showcase-section .btn-base i {
            /* width: 100%; */
        }
    }

    /* 1. Wrapper for spacing */
    .main-page .hero-container .video-mockup-wrapper {
        margin-top: 30px;
        /* Space between text and video */
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 10;
    }

    /* 2. The Window/Frame effect */
    .main-page .hero-container .video-window {
        background: #ffffff;
        padding: 8px;
        /* White border effect around the video */
        border-radius: 20px;
        box-shadow: 0 30px 80px rgba(0, 45, 81, 0.15);
        /* Soft deep shadow */
        max-width: 950px;
        /* Adjust size as needed */
        width: 100%;
        overflow: hidden;
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    /* 3. The Video itself */
    .main-page .hero-container .hero-dashboard-video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        /* Inner rounding for the video */
    }

    /* Responsive adjustment for Mobile */
    @media (max-width: 768px) {
        .main-page .hero-container .video-mockup-wrapper {
            margin-top: 40px;
            padding: 0 15px;
        }

        .main-page .hero-container .video-window {
            padding: 5px;
            border-radius: 12px;
        }
    }

    /* Features Bar Container */
    .main-page .features-bar {
        background-color: #ffffff;
        padding: 30px 0;
        border-top: 1px solid #f1f5f9;
        /* Subtle separator from Hero */
        font-family: 'Inter', sans-serif;
    }

    /* Feature Item Wrapper */
    .main-page .features-bar .feature-item {
        gap: 15px;
        /* Space between icon and text */
    }

    /* Icon Styling */
    .main-page .features-bar .feature-icon i {
        color: #f50000;
        /* Exact vibrant red */
        font-size: 22px;
    }

    /* Text Styling */
    .main-page .features-bar .feature-text {
        color: #002d51;
        /* Exact Navy dark */
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        line-height: 1.4;
    }

    /* Responsive adjustments for Mobile */
    @media (max-width: 768px) {
        .main-page .features-bar {
            padding: 40px 0;
        }

        .main-page .features-bar .feature-item {
            flex-direction: column;
            /* Stack icon on top of text on small screens */
            text-align: center;
            gap: 10px;
        }

        .main-page .features-bar .feature-text {
            font-size: 15px;
            max-width: 250px;
            /* Prevents text from stretching too wide on mobile */
            margin: 0 auto;
        }
    }

    /* Problem Section Styling */
    .main-page .problem-section {
        padding: 30px 0;
        background-color: #f8fafc;
        /* Light grey background as seen in image */
        font-family: 'Inter', sans-serif;
    }

    /* Title Match: Playfair Display */
    .main-page .problem-section .problem-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 42px;
        font-weight: 700;
        color: #002d51;
        margin-bottom: 60px;
    }

    .main-page .problem-section .problem-title .italic-red {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #f50000;
    }

    /* Card Styling */
    .main-page .problem-section .problem-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        text-align: left;
        /* Left aligned content in cards */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .main-page .problem-section .problem-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 45, 81, 0.05);
    }

    /* Icon Box: Light pink background with red icon */
    .main-page .problem-section .card-icon-box {
        width: 45px;
        height: 45px;
        background-color: rgba(245, 0, 0, 0.05);
        /* Very light red tint */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .main-page .problem-section .card-icon-box i {
        color: #f50000;
        font-size: 20px;
    }

    /* Card Heading & Text */
    .main-page .problem-section .problem-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #002d51;
        margin-bottom: 15px;
    }

    .main-page .problem-section .problem-card p {
        font-size: 16px;
        color: #5e6c7a;
        line-height: 1.6;
        margin: 0;
    }

    /* Bottom Pill Styling */
    .main-page .problem-section .problem-pill {
        display: inline-flex;
        align-items: center;
        background-color: #f1f5f9;
        padding: 15px 35px;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        margin-top: 60px;
        font-size: 16px;
        font-weight: 500;
        color: #002d51;
    }

    /* Responsive adjustment */
    @media (max-width: 768px) {
        .main-page .problem-section .problem-title {
            font-size: 32px;
        }

        .main-page .problem-section .problem-pill {
            font-size: 14px;
            padding: 12px 20px;
            margin-top: 40px;
        }
    }

    /* Showcase Section Styling */
    .main-page .showcase-section {
        padding: 30px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
        overflow: hidden;
    }

    /* Header Text */
    .main-page .showcase-section .showcase-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 48px;
        font-weight: 700;
        color: #002d51;
    }

    .main-page .showcase-section .showcase-title .italic-red {
        font-style: italic;
        color: #f50000;
    }

    .main-page .showcase-section .tm {
        font-size: 12px;
        top: -33px;
        font-family: 'Inter';
        color: #f50000;
        left: 4px;
    }

    .main-page .showcase-section .showcase-subtitle {
        font-size: 18px;
        color: #5e6c7a;
        max-width: 800px;
        margin: 20px auto 60px auto;
        line-height: 1.6;
    }

    /* Feature Cards on the Left */
    .main-page .showcase-section .showcase-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.6);
        border-radius: 20px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0, 45, 81, 0.02);
        transition: all 0.3s ease;
    }

    .main-page .showcase-section .showcase-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 45, 81, 0.05);
        border-color: #e2e8f0;
    }

    /* Icon Styles */
    .main-page .showcase-section .card-icon {
        min-width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #ffffff;
    }

    .main-page .showcase-section .icon-navy {
        background-color: #002d51;
    }

    .main-page .showcase-section .icon-blue {
        background-color: #3b82f6;
    }

    .main-page .showcase-section .icon-dark {
        background-color: #1e293b;
    }

    .main-page .showcase-section .icon-red {
        background-color: #f50000;
    }

    .main-page .showcase-section .card-content h4 {
        font-size: 18px;
        font-weight: 700;
        color: #002d51;
        margin-bottom: 8px;
    }

    .main-page .showcase-section .card-content p {
        font-size: 15px;
        color: #5e6c7a;
        line-height: 1.5;
        margin: 0;
    }

    /* Right Side: Mockup Image Container */
    .main-page .showcase-section .layered-mockup-container {
        position: relative;
        padding: 20px;
    }

    .main-page .showcase-section .mockup-frame {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #f1f5f9;
        border-radius: 40px;
        transform: rotate(2deg);
        /* Subtle tilt like image */
        z-index: 1;
    }

    .main-page .showcase-section .main-mockup-img {
        position: relative;
        z-index: 2;
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    /* Floating AI Magic Card */
    .main-page .showcase-section .floating-ai-card {
        position: absolute;
        top: 15%;
        left: -15px;
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        z-index: 5;
        min-width: 250px;
        animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .main-page .showcase-section .ai-card-icon {
        width: 40px;
        height: 40px;
        background: #e7f9f0;
        color: #22c55e;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-page .showcase-section .ai-card-text strong {
        display: block;
        font-size: 16px;
        color: #002d51;
    }

    .main-page .showcase-section .ai-card-text span {
        font-size: 13px;
        color: #94A3B8;
    }

    .main-page .showcase-section .skeleton-bars {
        margin-top: 10px;
    }

    .main-page .showcase-section .skeleton-bars span {
        display: block;
        height: 6px;
        background: #f1f5f9;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .main-page .showcase-section .skeleton-bars .bar-long {
        width: 100%;
    }

    .main-page .showcase-section .skeleton-bars .bar-short {
        width: 60%;
    }

    /* Mobile View Adjustments */
    @media (max-width: 991px) {
        .main-page .showcase-section .floating-ai-card {
            left: 0;
            top: 5%;
            transform: scale(0.8);
        }

        .main-page .showcase-section .showcase-title {
            font-size: 36px;
        }
    }

    /* --- HOW IT WORKS SECTION ONLY --- */
    .main-page .how-it-works-section {
        background-color: #002341;
        /* Dark Navy Background */
        padding: 30px 0;
        font-family: 'Inter', sans-serif;
        color: #ffffff;
        overflow: hidden;
    }

    /* Typography Matches */
    .main-page .how-it-works-section .works-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .main-page .how-it-works-section .works-title .italic-white {
        font-style: italic;
        font-weight: 400;
        /* Lighter italic feel */
    }

    .main-page .how-it-works-section .works-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        /* Muted white */
        margin-bottom: 100px;
    }

    /* Steps Layout & Line Logic */
    .main-page .how-it-works-section .steps-wrapper {
        position: relative;
        max-width: 1140px;
        margin: 0 auto;
    }

    /* THE DASHED LINE: Anchored to the row */
    .main-page .how-it-works-section .steps-row {
        position: relative;
        z-index: 1;
    }

    .main-page .how-it-works-section .steps-row::before {
        content: "";
        position: absolute;
        top: 26%;
        /* Centered: Exactly half of the 100px icon box */
        left: 50%;
        height: 1px;
        border-top: 2px dashed rgba(255, 255, 255, 0.25);
        /* Dashed Line UI */
        z-index: 0;
        width: 71%;
        margin: auto;
        /* Sits behind everything */
        transform: translate(-50%, -50%);
    }

    /* Step Card Styles */
    .main-page .how-it-works-section .step-card {
        position: relative;
        z-index: 2;
    }

    /* THE ICON BOX (Acting as a mask for the line) */
    .main-page .how-it-works-section .step-icon-box {
        width: 100px;
        height: 100px;
        background-color: #ffffff !important;
        /* Pure white hides the line behind it */
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 35px auto;
        position: relative;
        z-index: 5;
        /* Stays above the dashed line */
        /* Intense Red Glow Shadow */
        box-shadow: 0 10px 30px rgba(245, 0, 0, 0.45);
    }

    .main-page .how-it-works-section .step-icon-box i {
        color: #f50000;
        /* Brand Red Icon */
        font-size: 38px;
    }

    /* Step Badge Pill */
    .main-page .how-it-works-section .step-badge {
        display: inline-block;
        padding: 6px 18px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        /* Semi-transparent border */
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    /* Card Content */
    .main-page .how-it-works-section .step-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .main-page .how-it-works-section .step-card p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        max-width: 280px;
        margin: 0 auto;
    }

    /* RESPONSIVE FIXES */
    @media (max-width: 991px) {
        .main-page .how-it-works-section .steps-row::before {
            display: none;
            /* Hide line on mobile for clean stacking */
        }

        .main-page .how-it-works-section .step-icon-box {
            width: 85px;
            height: 85px;
        }

        .main-page .how-it-works-section .step-icon-box i {
            font-size: 30px;
        }
    }

    /* --- TRAINING NEEDS SECTION SCOPED --- */
    .main-page .training-needs-section {
        padding: 30px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    /* Typography Matches */
    .main-page .training-needs-section .needs-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 48px;
        font-weight: 700;
        color: #002d51;
        margin-bottom: 20px;
    }

    .main-page .training-needs-section .needs-title .italic-red {
        font-style: italic;
        color: #f50000;
    }

    .main-page .training-needs-section .needs-subtitle {
        font-size: 18px;
        color: #5e6c7a;
        max-width: 700px;
        margin: 0 auto 60px auto;
        line-height: 1.6;
    }

    /* Card Styling */
    .main-page .training-needs-section .use-case-card {
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.5);
        /* Very subtle border */
        border-radius: 35px;
        /* High radius as per image */
        padding: 45px 30px;
        height: 100%;
        text-align: left;
        /* Left align text inside cards */
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 45, 81, 0.04);
        /* Soft shadow */
    }

    .main-page .training-needs-section .use-case-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 45, 81, 0.08);
    }

    /* Icon Box Styling with Pastel Backgrounds */
    .main-page .training-needs-section .use-case-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 18px;
    }

    /* Exact Background Colors from Image */
    .main-page .training-needs-section .bg-soft-blue {
        background-color: #dbeafe;
        color: #2563eb;
    }

    .main-page .training-needs-section .bg-soft-green {
        background-color: #dcfce7;
        color: #16a34a;
    }

    .main-page .training-needs-section .bg-soft-purple {
        background-color: #f3e8ff;
        color: #9333ea;
    }

    .main-page .training-needs-section .bg-soft-orange {
        background-color: #ffedd5;
        color: #ea580c;
    }

    /* Text inside cards */
    .main-page .training-needs-section .use-case-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #002d51;
        margin-bottom: 15px;
    }

    .main-page .training-needs-section .use-case-card p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive Fixes */
    @media (max-width: 991px) {
        .main-page .training-needs-section .needs-title {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .main-page .training-needs-section .use-case-card {
            padding: 35px 25px;
            text-align: center;
            /* Center on mobile */
        }

        .main-page .training-needs-section .use-case-icon {
            margin: 0 auto 20px auto;
        }
    }

    /* --- QUALIFICATION SECTION SCOPED --- */
    .main-page .qualification-section {
        padding: 30px 0;
        background-color: #f8fafc;
        /* Very light background for contrast */
        font-family: 'Inter', sans-serif;
    }

    /* Typography */
    .main-page .qualification-section .qual-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 48px;
        font-weight: 700;
        color: #002d51;
    }

    .main-page .qualification-section .qual-title .italic-red {
        font-style: italic;
        color: #f50000;
    }

    /* Comparison Card Layout */
    .main-page .qualification-section .comparison-card {
        background: #ffffff;
        border-radius: 30px;
        /* High radius matching design */
        box-shadow: 0 20px 60px rgba(0, 45, 81, 0.08);
        /* Deep soft shadow */
        border: 1px solid #f1f5f9;
        overflow: hidden;
    }

    /* Vertical Divider Fix */
    .main-page .qualification-section .border-md-end {
        border-right: 1px solid #f1f5f9 !important;
    }

    /* Icons & Headers */
    .main-page .qualification-section .side-icon {
        font-size: 32px;
    }

    .main-page .qualification-section .icon-check-circle {
        color: #002d51;
        font-size: 16px;
        background-color: #E2EBF8;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #002d51;
    }

    .main-page .qualification-section .icon-cross-circle {
        color: #f50000;
        font-size: 16px;
        background-color: #EF09090F;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #f50000;
    }

    .main-page .qualification-section .side-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: #002d51;
    }

    .main-page .qualification-section .color-grey {
        color: #5e6c7a !important;
    }

    /* Qualification List Styling */
    .main-page .qualification-section .qual-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-page .qualification-section .qual-list li {
        font-size: 17px;
        color: #5e6c7a;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        line-height: 1.5;
    }

    /* Small icons inside the list */
    .main-page .qualification-section .qual-list li i.fa-check {
        color: #002d51;
        font-size: 14px;
    }

    .main-page .qualification-section .qual-list li i.fa-xmark {
        color: #f50000;
        font-size: 16px;
    }

    /* Responsive Fixes */
    @media (max-width: 991px) {
        .main-page .qualification-section .qual-title {
            font-size: 36px;
        }
    }

    @media (max-width: 767px) {

        /* Remove vertical border on mobile stack */
        .main-page .qualification-section .border-md-end {
            border-right: none !important;
            border-bottom: 1px solid #f1f5f9;
        }

        .main-page .qualification-section .comparison-side {
            padding: 40px 30px !important;
        }

        .main-page .qualification-section .qual-list li {
            font-size: 16px;
        }
    }

    /* --- WHY CHOOSE SECTION SCOPED --- */
    .main-page .why-choose-section {
        padding: 30px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    /* Title Match */
    .main-page .why-choose-section .why-title {
        font-family: 'Playfair Display', serif !important;
        font-size: 44px;
        font-weight: 700;
        color: #002d51;
        line-height: 1.2;
        margin-bottom: 35px;
    }

    .main-page .why-choose-section .why-title .italic-red {
        font-style: italic;
        color: #f50000;
    }

    /* Statistic Cards Styling */
    .main-page .why-choose-section .stat-card {
        background: #ffffff;
        border: 1.5px solid #002d51;
        /* Exact thin navy border from image */
        border-radius: 20px;
        padding: 50px 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .main-page .why-choose-section .stat-card:hover {
        background-color: #f8fafc;
        transform: translateY(-5px);
    }

    .main-page .why-choose-section .stat-number {
        font-size: 52px;
        font-weight: 700;
        color: #f50000;
        /* Bold Red Numbers */
        margin-bottom: 10px;
        line-height: 1;
    }

    .main-page .why-choose-section .stat-label {
        font-size: 16px;
        color: #5e6c7a;
        font-weight: 500;
        margin: 0;
    }

    /* Benefit List Styling */
    .main-page .why-choose-section .benefit-check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-page .why-choose-section .benefit-check-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 22px;
        font-size: 18px;
        color: #002d51;
        font-weight: 500;
    }

    /* Custom Red Check Icons */
    .main-page .why-choose-section .benefit-check-list i {
        color: #f50000;
        font-size: 22px;
        flex-shrink: 0;
    }

    /* Responsive Fixes */
    @media (max-width: 991px) {
        .main-page .why-choose-section .why-title {
            font-size: 34px;
            text-align: center;
        }

        .main-page .why-choose-section .benefit-check-list {
            margin-bottom: 40px;
        }

        .main-page .why-choose-section .ps-lg-4 {
            padding-left: 0 !important;
        }
    }

    @media (max-width: 576px) {
        .main-page .why-choose-section .stat-number {
            font-size: 36px;
        }

        .main-page .why-choose-section .stat-card {
            padding: 30px 10px;
        }

        .main-page .why-choose-section .benefit-check-list li {
            font-size: 16px;
        }
    }

    /* --- TESTIMONIAL SECTION SCOPED --- */
    .main-page .testimonial-section {
        padding: 120px 0;
        background-color: #002341;
        /* Exact Dark Navy from previous sections */
        color: #ffffff;
        font-family: 'Inter', sans-serif !important;
    }

    /* Star Rating Styling */
    .main-page .testimonial-section .star-rating i {
        color: #f50000;
        /* Exact Vibrant Red */
        font-size: 20px;
        margin: 0 2px;
    }

    /* Quote Typography */
    .main-page .testimonial-section .testimonial-quote {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        /* Responsive font size */
        font-weight: 700;
        line-height: 1.3;
        max-width: 900px;
        margin: 0 auto;
        letter-spacing: -0.5px;
    }

    /* Author Section Styling */
    .main-page .testimonial-section .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #f50000;
        /* Red ring seen in image */
        padding: 4px;
        background: #002341;
    }

    .main-page .testimonial-section .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .main-page .testimonial-section .author-name {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .main-page .testimonial-section .author-title {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        /* Muted white text */
        margin: 0;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
        .main-page .testimonial-section {
            padding: 80px 0;
        }

        .main-page .testimonial-section .testimonial-quote {
            font-size: 1.6rem;
            padding: 0 15px;
        }

        .main-page .testimonial-section .author-wrapper {
            flex-direction: column;
            text-align: center !important;
        }

        .main-page .testimonial-section .author-details {
            margin-left: 0 !important;
            margin-top: 15px;
            text-align: center !important;
        }
    }

    /* --- PRICING HEADER SECTION SCOPED --- */
    .main-page .pricing-header-section {
        padding: 30px 0;
        /* Extra top padding to separate from Testimonial */
        background-color: #f8fafc;
        font-family: 'Inter', sans-serif !important;
    }

    /* Title Styling: Playfair Display */
    .main-page .pricing-header-section .pricing-title {
        font-family: 'Playfair Display', serif !important;
        font-size: clamp(2.5rem, 5vw, 4rem);
        /* Responsive font sizing */
        font-weight: 700;
        color: #002d51;
        /* Brand Navy Blue */
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    /* Red Italic branding */
    .main-page .pricing-header-section .pricing-title .italic-red {
        font-style: italic;
        color: #f50000;
        /* Brand Vibrant Red */
    }

    /* Subtitle Styling */
    .main-page .pricing-header-section .pricing-subtitle {
        font-size: 18px;
        color: #5e6c7a;
        /* Muted Grey */
        max-width: 600px;
        margin: 0 auto;
        font-weight: 400;
        line-height: 1.6;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
        .main-page .pricing-header-section {
            padding: 60px 0 40px 0;
        }

        .main-page .pricing-header-section .pricing-title {
            font-size: 2.2rem;
        }

        .main-page .pricing-header-section .pricing-subtitle {
            font-size: 16px;
            padding: 0 15px;
        }
    }

    /* --- FINAL CTA SECTION SCOPED --- */
    .main-page .cta-final-section {
        padding: 30px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
        border-top: 1px solid #f1f5f9;
    }

    /* Title Match: Playfair Display */
    .main-page .cta-final-section .cta-title {
        font-family: 'Playfair Display', serif !important;
        font-size: clamp(2.2rem, 5vw, 4rem);
        /* Responsive sizing */
        font-weight: 700;
        color: #002d51;
        /* Brand Navy Blue */
        margin-bottom: 25px;
        letter-spacing: -1.2px;
    }

    /* Italic Red branding */
    .main-page .cta-final-section .cta-title .italic-red {
        font-style: italic;
        color: #f50000;
        /* Brand Vibrant Red */
    }

    /* Subtitle Styling */
    .main-page .cta-final-section .cta-subtitle {
        font-size: 20px;
        color: #5e6c7a;
        /* Muted Grey */
        max-width: 700px;
        margin: 0 auto 50px auto;
        line-height: 1.6;
    }

    /* Button Wrapper & Shadow Adjustment */
    .main-page .cta-final-section .cta-btn-wrapper {
        margin-bottom: 30px;
    }

    .main-page .cta-final-section .btn-red-exact {
        /* Reusing your brand red button style */
        padding: 20px 50px;
        font-size: 19px;
        box-shadow: 0 15px 35px rgba(245, 0, 0, 0.25);
        /* Deep vibrant shadow */
    }

    /* Small note below button */
    .main-page .cta-final-section .cta-footer-note {
        font-size: 15px;
        color: #94a3b8;
        /* Soft blue-grey */
        font-weight: 400;
    }

    /* Responsive Fixes */
    @media (max-width: 768px) {
        .main-page .cta-final-section {
            padding: 80px 0;
        }

        .main-page .cta-final-section .cta-title {
            font-size: 2.2rem;
            padding: 0 10px;
        }

        .main-page .cta-final-section .cta-subtitle {
            font-size: 18px;
            padding: 0 20px;
        }

        .main-page .cta-final-section .btn-red-exact {
            width: 100%;
            /* Full width on small phones */
            padding: 18px 20px;
        }
    }

    .pricing-header-section .pricingcard-container{
        top: 0px;
        margin-top: 2rem;
    }