        /* =========================================
           GLOBAL RESETS & SHARED STYLES
           ========================================= */
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            /* Default font fallback */
            font-family: 'Poppins', sans-serif; 
        }

        /* =========================================
           1. TOP BANNER STYLES (Prefix: tp-)
           ========================================= */
        .tp-banner-container {
            display: flex;
            width: 100%;
            min-height: 50px;
            background-color: #ffde00; 
            overflow: hidden;
            font-size: 16px;
            line-height: 1.5;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .tp-left-section {
            background-color: #1268a3;
            color: #ffffff;
            flex-grow: 1; 
            display: flex;
            align-items: center;
            justify-content: center; 
            padding: 12px 60px 12px 20px; 
            position: relative;
            font-weight: 500;
            clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
            margin-right: -1px; 
        }

        .tp-right-section {
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px 12px 0px;
            white-space: nowrap;
            font-weight: 500;
        }

        .tp-icon-phone {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            fill: black;
        }

        .tp-text-highlight {
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .tp-banner-container { flex-direction: column; height: auto; }
            .tp-left-section { width: 100%; clip-path: none; padding: 15px; box-sizing: border-box; text-align: center; }
            .tp-right-section { width: 100%; padding: 15px; box-sizing: border-box; justify-content: center; background-color: #ffde00; }
        }

        /* =========================================
           2. HERO & NAVBAR STYLES (Prefix: hero-)
           ========================================= */
        :root {
            --hero-primary-blue: #0076a8; 
            --hero-brand-yellow: #ffcd00; 
            --hero-text-dark: #333333;
            --hero-bg-light: #f9fbfd;
            --hero-gray-border: #e0e0e0;
        }

        .hero-navbar {
            background-color: #fff;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1020;
            font-family: 'Poppins', sans-serif;
        }

        .hero-brand-box {
            display: flex; 
            align-items: center;
            text-decoration: none;
        }

        .hero-nav-link {
            color: #444 !important;
			font-weight: 600;
            font-size: 0.9rem;
            margin-right: 2px;
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 10px 0;
            position: relative;
        }
        
        .hero-nav-link:hover { color: var(--hero-primary-blue) !important; }
        .hero-nav-link i { font-size: 0.5rem; transition: transform 0.3s ease; }
        .hero-nav-item:hover .hero-nav-link i { transform: rotate(180deg); }

        @media (min-width: 992px) {
            .hero-navbar .offcanvas { font-size:16px; font-weight:600; position: static; z-index: auto; height: auto; width: auto; visibility: visible; background-color: transparent; border: 0; transform: none !important; transition: none; display: flex; flex-grow: 1; align-items: center; box-shadow: none; }
            .hero-navbar .offcanvas-header { display: none; }
            .hero-navbar .offcanvas-body { display: flex; flex-grow: 1; padding: 0; overflow: visible; align-items: center; justify-content: flex-end; }
            .hero-navbar .dropdown:hover .dropdown-menu { display: block; margin-top: 0; animation: heroFadeIn 0.2s ease-in-out; }
            .hero-navbar-right { display: flex; align-items: center; margin-left: 1rem; }
        }

        @media (max-width: 991px) {
            .hero-navbar .offcanvas { width: 280px; }
            .hero-navbar .offcanvas-body { display: flex; flex-direction: column; height: auto; padding-bottom: 30px; overflow-y: auto; }
            .hero-navbar-right { margin-top: 20px; width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; padding-top: 10px; border-top: 1px solid #f0f0f0; }
            .hero-nav-link { padding: 12px 0; font-size:14px; border-bottom: 1px solid #f0f0f0; width: 100%; justify-content: space-between; }
            .hero-support-wrapper { width: 100%; }
            .hero-btn-support { width: 100%; justify-content: space-between; }
            .hero-social-wrapper { margin-left: 0 !important; margin-top: 5px; width: 100%; justify-content: space-around; }
        }

        @keyframes heroFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-dropdown-menu { border: none; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); padding: 15px; min-width: 240px; border-top: 3px solid var(--hero-primary-blue); }
        .hero-dropdown-item { padding: 10px 15px; border-radius: 8px; color: #555; font-weight: 500; display: flex; align-items: center; gap: 12px; transition: all 0.2s; }
        .hero-dropdown-item:hover { background-color: #f0f8ff; color: var(--hero-primary-blue); }
        .hero-dropdown-item i { width: 20px; text-align: center; color: var(--hero-primary-blue); }

        .hero-support-wrapper { position: relative; }
        .hero-btn-support { background-color: var(--hero-primary-blue); color: white !important; border-radius: 5px; padding: 8px 20px; font-weight: 500; display: flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: background 0.3s; }
        .hero-btn-support:hover { background-color: #00608a; }
        .hero-support-dropdown { position: absolute; right: 0; top: 100%; width: 320px; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 20px; display: none; z-index: 1030; cursor: default; }
        .hero-support-wrapper:hover .hero-support-dropdown { display: block; animation: heroFadeIn 0.2s ease-in-out; }
        .hero-support-wrapper:hover .hero-btn-support .fa-chevron-down { transform: rotate(180deg); }
        .hero-support-section-title { color: var(--hero-primary-blue); font-weight: 600; font-size: 0.95rem; margin-bottom: 5px; display: flex; align-items: center; white-space: nowrap; }
        .hero-support-section-title::after { content: ''; display: block; width: 100%; height: 1px; background-color: #e5e5e5; margin-left: 10px; }
        .hero-support-list { list-style: none; padding: 0; margin: 0 0 15px 0; }
        .hero-support-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: #555; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
        .hero-support-link:hover { color: var(--hero-primary-blue); }
        .hero-support-link i { color: var(--hero-primary-blue); font-size: 0.9rem; width: 20px; }
        .hero-whatsapp-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #444; font-weight: 500; }
        .hero-app-buttons { display: flex; gap: 10px; }
        .hero-store-btn { background: #000; color: #fff; border-radius: 5px; padding: 5px 10px; display: flex; align-items: center; gap: 5px; text-decoration: none; flex: 1; justify-content: center; }
        .hero-store-btn:hover { background: #333; color: #fff; }
        .hero-store-text { display: flex; flex-direction: column; line-height: 1; font-size: 0.6rem; }
        .hero-store-text strong { font-size: 0.8rem; }
        .hero-social-wrapper { display: flex; gap: 15px; margin-left: 15px; align-items: center; }
        .hero-social-icon { color: var(--hero-primary-blue); font-size: 1.1rem; transition: color 0.3s; text-decoration: none; }
        .hero-social-icon:hover { color: #004e92; }

        .hero-section-wrapper { padding: 60px 0 80px 0; background: linear-gradient(to bottom, #ffffff, #eaf6fc); }
        .hero-main-title { font-size: 3.5rem; font-weight: 600; color: #222; margin-bottom: 20px; line-height: 1.2; }
        .hero-ribbon-wrapper { display: inline-block; position: relative; margin-bottom: 20px; filter: drop-shadow(2px 3px 2px rgba(0,0,0,0.2)); max-width: 100%; }
        .hero-ribbon { background-color: var(--hero-primary-blue); color: white; padding: 10px 20px 10px 15px; font-size: 1rem; font-weight: 500; position: relative; clip-path: polygon(0% 0%, 98% 0%, 100% 50%, 98% 100%, 0% 100%); display: inline-block; }
        .hero-sub-text { font-size: 1.35rem; color: #444; margin-bottom: 35px; line-height: 1.6; font-weight: 400; max-width: 90%; }
        .hero-btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
        .hero-action-btn { padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.1); font-size: 1.05rem; display: inline-flex; align-items: center; letter-spacing: 0.3px; }
        .hero-action-btn:active { transform: translateY(0); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .hero-btn-yellow { background: linear-gradient(135deg, #ffcd00, #ffaa00); color: #222; border: none; }
        .hero-btn-yellow:hover { transform: translateY(-3px); background: linear-gradient(135deg, #ffe066, #ffbb00); color: #000; box-shadow: 0 8px 20px rgba(255, 170, 0, 0.3); }
        .hero-btn-blue { background-color: var(--hero-primary-blue); color: #fff; border: 1px solid var(--hero-primary-blue); }
        .hero-btn-blue:hover { transform: translateY(-3px); background-color: #005a80; border-color: #005a80; color: #fff; box-shadow: 0 8px 20px rgba(0, 118, 168, 0.3); }
        .hero-slider-img { width: 100%; height: auto; max-height: 430px; object-fit: contain; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,84,166,0.15); }
        .hero-carousel-indicators { bottom: -50px; margin-bottom: 0; }
        .hero-carousel-indicators button { width: 10px !important; height: 10px !important; border-radius: 50%; background-color: #ccc !important; opacity: 1 !important; border: none; margin: 0 5px !important; }
        .hero-carousel-indicators button.active { background-color: var(--hero-primary-blue) !important; }

        @media (max-width: 991px) {
            .hero-section-wrapper { padding: 30px 0 70px 0; }
            .hero-main-title { font-size: 2.2rem; margin-top: 0; margin-bottom: 15px; }
            .hero-ribbon { font-size: 0.9rem; padding-right: 25px; clip-path: none; border-radius: 0 4px 4px 0; }
            .hero-sub-text { font-size: 1.1rem; max-width: 100%; }
            .hero-btn-group { justify-content: center; }
            .hero-action-btn { width: 100%; justify-content: center; }
            .hero-support-dropdown { position: static; width: 100%; box-shadow: none; border: 1px solid #eee; }
        }

        /* =========================================
           3. ABOUT SECTION STYLES (Prefix: abt-)
           ========================================= */
        .abt-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%); 
            overflow: hidden; 
            font-family: 'Poppins', sans-serif;
        }
        .abt-content-wrapper { padding-right: 20px; }
        .abt-heading { font-size: 2.5rem; font-weight: 700; color: #0f172a; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .abt-hr { width: 80px; height: 4px; background: linear-gradient(90deg, #007bff, #00d4ff); opacity: 1; border: none; margin-bottom: 30px; border-radius: 2px; }
        .abt-description { font-size: 1.1rem; color: #555; line-height: 1.8; margin-bottom: 25px; }
        .abt-highlight-text { background: linear-gradient(120deg, #e0f2ff 0%, #dbeafe 100%); color: #0056b3; font-weight: 600; padding: 2px 6px; border-radius: 4px; box-decoration-break: clone; -webkit-box-decoration-break: clone; border-left: 3px solid #007bff; }
        .abt-cta-sequence { margin: 30px 0; border-left: 2px solid #cbd5e1; padding-left: 20px; }
        .abt-cta-line-a { font-size: 1rem; color: #64748b; display: block; margin-bottom: 5px; }
        .abt-cta-brand { font-size: 1.5rem; font-weight: 700; background: -webkit-linear-gradient(45deg, #007bff, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 5px; font-style: italic; }
        .abt-cta-line-c { font-size: 1rem; font-weight: 600; color: #334155; display: block; }
        .abt-btn-modern { display: inline-block; padding: 15px 40px; font-size: 14px; font-weight: 700; color: #fff; background: linear-gradient(45deg, #2563eb, #0ea5e9); border: none; border-radius: 50px; text-decoration: none; box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.5); transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1.5px; position: relative; z-index: 1; overflow: hidden; }
        .abt-btn-modern::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, #0ea5e9, #2563eb); z-index: -1; transition: opacity 0.3s ease; opacity: 0; }
        .abt-btn-modern:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -10px rgba(37, 99, 235, 0.6); color: white; }
        .abt-btn-modern:hover::before { opacity: 1; }
        .abt-illustration-wrapper { position: relative; display: flex; justify-content: center; align-items: center; height: 100%; min-height: 400px; }
        .abt-circle-bg { position: absolute; width: 350px; height: 350px; background: #ffffff; border-radius: 50%; z-index: 0; box-shadow: 0 0 40px rgba(176, 196, 222, 0.2); }
        .abt-main-svg { width: 100%; max-width: 400px; position: relative; z-index: 2; }
        .abt-float-icon { position: absolute; background: white; border-radius: 50%; box-shadow: 0 8px 30px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; z-index: 3; }
        .abt-icon-1 { width: 60px; height: 60px; top: 10%; left: 10%; animation: abt-bounce 3s infinite ease-in-out; }
        .abt-icon-2 { width: 50px; height: 50px; bottom: 20%; right: 10%; animation: abt-bounce 4s infinite ease-in-out; animation-delay: 1s; }
        .abt-icon-3 { width: 40px; height: 40px; top: 20%; right: 5%; animation: abt-bounce 2.5s infinite ease-in-out; animation-delay: 0.5s; }
        @keyframes abt-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        @media (max-width: 991px) { .abt-content-wrapper { text-align: center; margin-bottom: 50px; padding-right: 0; } .abt-hr, .abt-cta-sequence { margin-left: auto; margin-right: auto; } .abt-cta-sequence { border-left: none; border-top: 2px solid #cbd5e1; padding-top: 20px; padding-left: 0; } .abt-circle-bg { width: 280px; height: 280px; } }

        /* =========================================
           4. WHY WINSURE STYLES (Prefix: why-)
           ========================================= */
        .why-section-wrapper {
            padding: 80px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }
        .why-illustration-container { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(5px); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .why-main-img { max-width: 85%; height: auto; max-height: 350px; z-index: 1; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); border-radius: 12px; }
        .why-bounce-icon { position: absolute; background: white; border-radius: 50%; padding: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); z-index: 2; display: flex; justify-content: center; align-items: center; border: 2px solid #fff; animation: why-bounce-anim 3s ease-in-out infinite; }
        .why-bounce-icon svg { width: 28px; height: 28px; }
        .why-icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
        .why-icon-2 { top: 25%; right: 12%; animation-delay: 1.5s; }
        .why-icon-3 { bottom: 15%; left: 15%; animation-delay: 0.8s; }
        @keyframes why-bounce-anim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .why-content-wrapper { padding: 20px; }
        .why-heading { font-weight: 700; color: #0d2e5c; font-size: 2.5rem; margin-bottom: 10px; }
        .why-divider { border: 0; height: 4px; width: 80px; background-color: #0d6efd; opacity: 1; margin-top: 0; margin-bottom: 30px; border-radius: 2px; }
        .why-problem-text { font-size: 1.1rem; color: #555; line-height: 1.6; margin-bottom: 40px; border-left: 4px solid #dc3545; background-color: #fff5f5; padding: 20px; border-radius: 0 8px 8px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
        .why-solution-block { background-color: #ffffff; padding: 30px; border-radius: 12px; border: 1px solid #cce5ff; box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08); }
        .why-solution-title { font-weight: 700; font-size: 1.5rem; color: #0d6efd; margin-bottom: 15px; display: flex; align-items: center; }
        .why-solution-title::before { content: '✓'; display: inline-block; background-color: #0d6efd; color: white; width: 30px; height: 30px; text-align: center; line-height: 30px; border-radius: 50%; font-size: 16px; margin-right: 10px; }
        .why-solution-desc { font-size: 1rem; color: #333; margin-bottom: 0; }
        .why-highlight { font-weight: 700; color: #198754; }
        @media (max-width: 768px) { .why-illustration-container { height: 350px; margin-bottom: 40px; } .why-heading { font-size: 2rem; } .why-main-img { max-width: 90%; } }

        /* =========================================
           5. WHAT WE DO STYLES (Prefix: what-)
           ========================================= */
        .what-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #dceef3 100%);
            overflow-x: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .what-heading { font-size: 2.5rem; font-weight: 800; color: #2c3e50; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .what-hr { width: 80px; height: 4px; background-color: #3498db; opacity: 1; margin-bottom: 30px; border-radius: 2px; }
        .what-list-container { list-style: none; padding: 0; margin-bottom: 30px; }
        .what-list-item { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); margin-bottom: 15px; padding: 15px 20px; border-radius: 12px; border-left: 5px solid #3498db; box-shadow: 0 4px 6px rgba(0,0,0,0.05); display: flex; align-items: center; transition: all 0.3s ease; font-weight: 500; color: #444; }
        .what-list-item:hover { transform: translateX(10px); background: white; box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
        .what-check-icon { color: #27ae60; font-size: 1.2rem; margin-right: 15px; flex-shrink: 0; background: #e8f8f5; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
        .what-highlight-box { background: #2c3e50; color: #fff; padding: 20px; border-radius: 0 20px 0 20px; position: relative; box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3); border-left: 6px solid #e74c3c; }
        .what-highlight-text { font-size: 1.1rem; font-weight: 700; margin: 0; line-height: 1.5; }
        .what-image-wrapper { position: relative; display: flex; justify-content: center; align-items: center; margin-top: 30px; }
        .what-main-img { width: 100%; max-width: 500px; height: auto; border-radius: 20px; z-index: 1; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); }
        .what-float-icon { position: absolute; z-index: 2; background: white; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; color: #3498db; }
        .what-icon-1 { width: 60px; height: 60px; font-size: 25px; top: 10%; right: 10%; color: #e74c3c; animation: what-bounce 3s infinite ease-in-out; }
        .what-icon-2 { width: 50px; height: 50px; font-size: 20px; bottom: 15%; left: 5%; color: #f39c12; animation: what-bounce 4s infinite ease-in-out 1s; }
        .what-icon-3 { width: 70px; height: 70px; font-size: 30px; top: 40%; left: -20px; color: #27ae60; animation: what-bounce 3.5s infinite ease-in-out 0.5s; }
        @keyframes what-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        @media (max-width: 991px) { .what-image-wrapper { margin-top: 50px; } .what-icon-3 { left: 0; } }

        /* =========================================
           6. POLICY COMPARISON STYLES (Prefix: policy-)
           ========================================= */
        :root {
            --policy-bg-light: #f1f5f9;
            --policy-bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e2e8f0 100%);
            --policy-accent: #4f46e5;
            --policy-accent-soft: rgba(79, 70, 229, 0.1);
            --policy-success: #059669;
            --policy-success-bg: rgba(16, 185, 129, 0.1);
            --policy-warning: #d97706;
            --policy-warning-bg: rgba(245, 158, 11, 0.1);
            --policy-danger: #dc2626;
            --policy-danger-bg: rgba(239, 68, 68, 0.1);
            --policy-text-main: #1e293b;
            --policy-text-muted: #64748b;
            --policy-card-glass: rgba(255, 255, 255, 0.75);
            --policy-border-light: rgba(255, 255, 255, 0.6);
        }
        .policy-section-wrapper {
            background: var(--policy-bg-gradient);
            /* min-height: 100vh; Removed to fit in flow */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
            color: var(--policy-text-main);
        }
        .policy-blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: 0.6; }
        .policy-blob-1 { width: 500px; height: 500px; background: #e0e7ff; top: -150px; left: -150px; }
        .policy-blob-2 { width: 400px; height: 400px; background: #d1fae5; bottom: -100px; right: -100px; }
        .policy-glass-container { background: var(--policy-card-glass); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid #ffffff; border-radius: 30px; padding: 0; box-shadow: 0 20px 60px -10px rgba(148, 163, 184, 0.3); overflow: hidden; z-index: 1; }
        .policy-pre-heading { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--policy-accent); margin-bottom: 1.2rem; display: inline-block; background: white; padding: 8px 16px; border-radius: 50px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }
        .policy-main-heading { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; line-height: 1.1; color: var(--policy-text-main); margin-bottom: 0.2rem; }
        .policy-highlight-text { color: var(--policy-accent); position: relative; display: inline-block; }
        .policy-highlight-text::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 100%; height: 8px; background: rgba(99, 102, 241, 0.2); z-index: -1; border-radius: 4px; }
        .policy-benefit-list { list-style: none; padding: 0; margin: 2rem 0; }
        .policy-list-item { background: #ffffff; margin-bottom: 5px; padding: 10px 20px; border-radius: 16px; color: var(--policy-text-main); font-weight: 500; display: flex; align-items: center; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.02); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .policy-list-item:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); }
        .policy-status-good .policy-icon-box { background: var(--policy-success-bg); color: var(--policy-success); }
        .policy-status-limit .policy-icon-box { background: var(--policy-warning-bg); color: var(--policy-warning); }
        .policy-status-avoid .policy-icon-box { background: var(--policy-danger-bg); color: var(--policy-danger); }
        .policy-icon-box { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-right: 18px; font-size: 1rem; flex-shrink: 0; }
        .policy-scarcity-box { font-size: 0.95rem; color: var(--policy-text-muted); border-top: 1px solid #e2e8f0; padding-top: 25px; margin-bottom: 5px; }
        .policy-cta-btn { background: var(--policy-text-main); color: white; padding: 18px 36px; border-radius: 12px; font-weight: 600; font-size: 1.1rem; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.3s ease; box-shadow: 0 10px 20px -5px rgba(30, 41, 59, 0.3); border: none; width: 100%; justify-content: center; }
        .policy-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 30px -5px rgba(30, 41, 59, 0.4); color: white; background: black; }
        .policy-cta-btn i { margin-left: 10px; }
        .policy-visual-side { position: relative; height: 100%; min-height: 450px; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=2070&auto=format&fit=crop') no-repeat center center; background-size: cover; }
        .policy-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%); }
        .policy-floating-card { position: relative; background: #ffffff; padding: 25px; border-radius: 20px; width: 280px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); animation: policyFloat 6s ease-in-out infinite; z-index: 2; border: 1px solid rgba(0,0,0,0.05); }
        .policy-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
        .policy-dummy-bar { height: 10px; border-radius: 6px; margin-bottom: 12px; background: #f1f5f9; }
        .policy-active-bar { height: 100%; border-radius: 6px; background: var(--policy-accent); }
        @keyframes policyFloat { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }
        @media (min-width: 992px) { .policy-content-padding { padding: 10px; } .policy-cta-btn { width: auto; } }
        @media (max-width: 991px) { .policy-content-padding { padding: 40px 25px; } .policy-main-heading { font-size: 2rem; } .policy-visual-side { min-height: 300px; } }

        /* =========================================
           7. CLAIM SUPPORT STYLES (Prefix: claim-)
           ========================================= */
        .claim-section-wrapper {
            position: relative;
            width: 100%;
            padding: 80px 15px; 
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            overflow: hidden;
            display: flex;
            justify-content: center;
            font-family: 'Manrope', sans-serif;
        }
        .claim-blob { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 0; opacity: 0.6; }
        .claim-blob-1 { width: 300px; height: 300px; background: #bae6fd; top: -50px; right: -50px; }
        .claim-blob-2 { width: 250px; height: 250px; background: #e9d5ff; bottom: -50px; left: -50px; }
        .claim-card { position: relative; z-index: 10; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid #ffffff; border-radius: 24px; box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.08); overflow: hidden; width: 100%; max-width: 1400px; }
        .claim-visual-side { background: linear-gradient(160deg, #eff6ff 0%, #ffffff 100%); display: flex; align-items: center; justify-content: center; position: relative; min-height: 280px; overflow: hidden; }
        .claim-icon-container { position: relative; z-index: 2; width: 130px; height: 130px; display: flex; align-items: center; justify-content: center; border-radius: 30px; background: linear-gradient(135deg, #3b82f6, #6366f1); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3); color: #fff; font-size: 4.5rem; animation: claim-bounce 2.5s infinite ease-in-out; }
        @keyframes claim-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        .claim-icon-ring { position: absolute; width: 200px; height: 200px; border: 2px dashed #cbd5e1; border-radius: 50%; z-index: 1; animation: claim-spin 25s linear infinite; }
        @keyframes claim-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .claim-content-side { padding: 40px 50px; }
        .claim-heading { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin-bottom: 20px; line-height: 1.2; }
        .claim-text { font-size: 1.05rem; line-height: 1.6; color: #64748b; margin-bottom: 30px; }
        .claim-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 35px; }
        .claim-list-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #334155; background: #f8fafc; padding: 10px 15px; border-radius: 10px; border: 1px solid #e2e8f0; transition: all 0.3s; }
        .claim-list-item:hover { background: #ffffff; border-color: #cbd5e1; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .claim-list-icon { color: #3b82f6; font-size: 1.2rem; }
        .claim-btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background-color: #0f172a; color: white; font-weight: 600; border-radius: 50px; text-decoration: none; transition: 0.3s; box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2); }
        .claim-btn-primary:hover { background-color: #334155; transform: translateY(-2px); color: #fff; }
        @media (max-width: 991px) { .claim-visual-side { padding: 40px; } .claim-content-side { padding: 30px; } .claim-heading { font-size: 2rem; } }
        @media (max-width: 576px) { .claim-list-grid { grid-template-columns: 1fr; } .claim-content-side { padding: 30px 20px; } .claim-btn-primary { display: flex; margin: 0 auto; width: fit-content; } }

        /* =========================================
           8. FOOTER STYLES (Prefix: ftr-)
           ========================================= */
        /* 
         * CUSTOM CSS - "ftr-" Prefix 
         * Style: Digital Mesh / Tech Grid
         */

        :root {
            --ftr-primary: #00f2ff; /* Cyan / Electric Blue */
            --ftr-secondary: #4361ee; /* Royal Blue */
            --ftr-bg-dark: #020b1c; /* Almost Black Blue */
            --ftr-text-muted: #a0aec0;
            --ftr-text-light: #ffffff;
        }

        /* Footer Wrapper - The New Background Style */
        .ftr-wrapper {
            position: relative;
            background-color: var(--ftr-bg-dark);
            /* Creating the 'Glowing' effects using CSS Gradients */
            background-image: 
                radial-gradient(circle at 10% 50%, rgba(67, 97, 238, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 90% 20%, rgba(0, 242, 255, 0.15) 0%, transparent 40%);
            color: var(--ftr-text-light);
            padding-top: 100px; /* Extra padding for the slant */
            overflow: hidden;
            z-index: 1;
        }

        /* The Tech Grid Pattern Overlay */
        .ftr-wrapper::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            /* Creates a subtle grid of dots */
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 40px 40px; 
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
        }

   

        /* Brand Section */
        .ftr-brand-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .ftr-brand-icon {
            color: var(--ftr-primary);
            filter: drop-shadow(0 0 5px var(--ftr-primary));
        }

        .ftr-brand-desc {
            color: var(--ftr-text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            max-width: 90%;
        }

        /* Headings with distinct left border */
        .ftr-heading {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            color: #fff;
            padding-left: 15px;
            border-left: 3px solid var(--ftr-primary);
        }

        /* Links List */
        .ftr-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ftr-list-item {
            margin-bottom: 12px;
        }

        .ftr-link {
            text-decoration: none;
            color: var(--ftr-text-muted);
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.95rem;
            position: relative;
        }

        .ftr-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--ftr-primary);
            transition: width 0.3s ease;
        }

        .ftr-link:hover {
            color: var(--ftr-primary);
            padding-left: 5px;
        }

        .ftr-link:hover::before {
            width: 100%;
        }

        /* Newsletter Box - Tech Style */
        .ftr-newsletter-box {
            background: rgba(255, 255, 255, 0.03);
            padding: 25px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }
        
        /* Decorative corner accent for tech look */
        .ftr-newsletter-box::after {
            content: '';
            position: absolute;
            top: -1px; right: -1px;
            width: 20px; height: 20px;
            border-top: 2px solid var(--ftr-primary);
            border-right: 2px solid var(--ftr-primary);
        }

        .ftr-input-group {
            display: flex;
            margin-top: 15px;
            position: relative;
        }

        .ftr-input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            outline: none;
            font-size: 0.9rem;
        }

        .ftr-input:focus {
            border-color: var(--ftr-primary);
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
        }

        .ftr-btn-sub {
            background: var(--ftr-primary);
            border: none;
            padding: 0 20px;
            color: #000;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .ftr-btn-sub:hover {
            background: #fff;
        }

        /* Contact Items */
        .ftr-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--ftr-text-muted);
            font-size: 0.9rem;
        }

        .ftr-contact-item i {
            color: var(--ftr-primary);
            width: 25px;
            margin-right: 10px;
        }

        /* Bottom Bar */
        .ftr-bottom-bar {
            margin-top: 60px;
            padding-top: 25px;
            padding-bottom: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .ftr-copyright {
            color: #64748b;
            font-size: 0.85rem;
        }

        .ftr-socials {
            display: flex;
            gap: 10px;
        }

        .ftr-social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: rgba(255,255,255,0.05);
            text-decoration: none;
            transition: all 0.3s ease;
            /* Hexagon shape roughly via clip-path for tech feel, or simple rounded square */
            border-radius: 4px; 
            border: 1px solid rgba(255,255,255,0.05);
        }

        .ftr-social-link:hover {
            background: var(--ftr-primary);
            color: #000;
            border-color: var(--ftr-primary);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .ftr-wrapper {
                padding-top: 80px; /* Adjust for slant */
            }
            .ftr-bottom-bar {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .ftr-heading {
                margin-top: 10px;
            }
        }
