/* Demo content to enable scrolling */
        .content {
            height: 200vh;
            padding: 40px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .content h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .content p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
            text-align: center;
        }

               /* Enhanced bottom popup banner styles */
        .insurance-popup-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #E8E5FF 0%, #F8FAFC 25%, #F1F5F9 50%, #E8E5FF 100%);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1000;
            height: 170px;
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12), 0 -2px 8px rgba(0, 0, 0, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .insurance-popup-banner.popup-visible {
            transform: translateY(0);
        }

        .insurance-popup-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 30px;
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            position: relative;
        }

        .popup-disclaimer-text {
            position: absolute;
            top: 8px;
            right: 30px;
            font-size: 10px;
            color: #64748B;
            font-weight: 400;
            max-width: 320px;
            text-align: right;
            line-height: 1.3;
            opacity: 0.8;
        }

        .lowest-price-guarantee-badge {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #2563EB 100%);
            border: 6px solid #DC2626;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            text-align: center;
            line-height: 1.1;
            flex-shrink: 0;
            font-family: 'Arial', sans-serif;
            position: relative;
            box-shadow: 
                0 8px 25px rgba(30, 64, 175, 0.4),
                0 0 0 2px rgba(220, 38, 38, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
            animation: subtle-pulse 3s ease-in-out infinite;
        }

        @keyframes subtle-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(220, 38, 38, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.2); }
            50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 3px rgba(220, 38, 38, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.3); }
        }

        .lowest-price-guarantee-badge::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: conic-gradient(from 0deg, #DC2626, #EF4444, #F87171, #DC2626);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.9;
        }

        .lowest-price-guarantee-badge::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #2563EB 100%);
            border-radius: 50%;
            z-index: -1;
        }

        .guarantee-primary-text {
            font-size: 13px;
            letter-spacing: 0.8px;
            font-weight: 800;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .guarantee-secondary-text {
            font-size: 13px;
            letter-spacing: 0.8px;
            margin: 1px 0 2px 0;
            font-weight: 800;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .guarantee-tertiary-text {
            font-size: 11px;
            letter-spacing: 0.5px;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .guarantee-stars-rating {
            color: #FBBF24;
            font-size: 12px;
            margin-top: 4px;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .popup-main-content-area {
            flex: 1;
            margin: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .insurance-plan-title {
            font-size: 34px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.2;
        }

        .insurance-company-branding {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .company-logo-container {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-logo-placeholder {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-logo-placeholder img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .company-brand-text {
            color: #DC2626;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
        }

        .company-insurance-label {
            font-size: 12px;
            color: #6B7280;
            font-weight: 500;
            margin-left: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .insurance-features-container {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 70px;
        }

        .insurance-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 500;
            color: #374151;
        }

        .feature-check-icon {
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
        }

        .check-premium-button {
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            color: white;
            border: none;
            padding: 18px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            height: fit-content;
            letter-spacing: 0.4px;
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .check-premium-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .check-premium-button:hover::before {
            left: 100%;
        }

        .check-premium-button:hover {
            background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
        }

        .check-premium-button:active {
            transform: translateY(0);
        }

        /* Tablet responsiveness */
        @media (max-width: 1024px) {
            .insurance-popup-wrapper {
                padding: 15px 20px;
            }

            .popup-main-content-area {
                margin: 0 25px;
            }

            .insurance-plan-title {
                font-size: 30px;
            }

            .insurance-features-container {
                gap: 35px;
            }

            .insurance-feature-item {
                font-size: 15px;
            }

            .lowest-price-guarantee-badge {
                width: 110px;
                height: 110px;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .insurance-popup-banner {
                height: auto;
                min-height: 200px;
            }

            .insurance-popup-wrapper {
                flex-direction: column;
                text-align: center;
                padding: 20px 15px;
                gap: 18px;
                align-items: center;
            }

            .popup-disclaimer-text {
                position: static;
                text-align: center;
                margin-bottom: 12px;
                max-width: 100%;
                order: -1;
            }

            .lowest-price-guarantee-badge {
                width: 95px;
                height: 95px;
                order: 2;
            }

            .guarantee-primary-text, .guarantee-secondary-text {
                font-size: 11px;
            }

            .guarantee-tertiary-text {
                font-size: 9px;
            }

            .guarantee-stars-rating {
                font-size: 10px;
            }

            .popup-main-content-area {
                margin: 0;
                width: 100%;
                align-items: center;
                order: 1;
            }

            .insurance-plan-title {
                font-size: 24px;
                margin-bottom: 14px;
                text-align: center;
            }

            .insurance-company-branding {
                justify-content: center;
                margin-bottom: 14px;
            }

            .company-brand-text {
                font-size: 20px;
            }

            .company-logo-container {
                width: 40px;
                height: 40px;
            }

            .company-logo-placeholder {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }

            .insurance-features-container {
                flex-direction: column;
                gap: 14px;
                align-items: center;
                width: 100%;
            }

            .insurance-feature-item {
                font-size: 14px;
                justify-content: center;
            }

            .feature-check-icon {
                width: 22px;
                height: 22px;
                font-size: 12px;
            }

            .check-premium-button {
                order: 3;
                padding: 16px 28px;
                font-size: 15px;
                margin-top: 12px;
            }

            .plan-logo {
                margin: 4px 0;
                height: 35px;
                min-height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
            }

            .plan-logo img {
                max-height: 30px;
                max-width: 100px;
                width: auto;
                object-fit: contain;
            }

            .plan-details {
                padding: 4px 0;
                text-align: center;
                min-width: unset;
                width: 100%;
            }

            .plan-details h2 {
                font-size: 1.5rem;
                margin-bottom: 4px;
            }

            .plan-details .tagline {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }

            .plan-features {
                gap: 4px;
                justify-content: center;
            }

            .plan-features li {
                font-size: 0.85rem;
                margin-bottom: 3px;
                justify-content: center;
            }

            .plan-score {
                margin: 8px 0;
                padding: 6px;
                min-width: unset;
            }

            .plan-ctas {
                width: 100%;
                align-items: center;
            }

            .view-btn {
                padding: 10px 24px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 220px;
                margin-top: 4px;
            }

            .plans-section {
                padding: 6px 10px;
                margin-top: 12px;
            }

            div[style*="margin: 32px 0 0 0"] {
                margin: 12px 0 8px 0 !important;
            }

            div[style*="margin: 32px 0 0 0"] img {
                width: 160px !important;
                height: 38px !important;
            }
        }

        @media (max-width: 480px) {
            .insurance-popup-banner {
                min-height: 220px;
            }

            .insurance-popup-wrapper {
                padding: 15px 10px;
            }

            .insurance-plan-title {
                font-size: 22px;
            }

            .insurance-feature-item {
                font-size: 13px;
            }

            .feature-check-icon {
                width: 20px;
                height: 20px;
                font-size: 11px;
            }

            .check-premium-button {
                padding: 14px 24px;
                font-size: 14px;
            }

            .lowest-price-guarantee-badge {
                width: 85px;
                height: 85px;
            }

            .guarantee-primary-text, .guarantee-secondary-text {
                font-size: 10px;
            }

            .guarantee-tertiary-text {
                font-size: 8px;
            }

            .company-logo-container {
                width: 35px;
                height: 35px;
            }

            .company-logo-placeholder {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }

            .company-brand-text {
                font-size: 18px;
            }

            .plan-logo img {
                max-width: 100px;
                height: 30px;
            }

            div[style*="margin: 32px 0 0 0"] {
                margin: 12px 0 8px 0 !important;
            }

            div[style*="margin: 32px 0 0 0"] img {
                width: 160px !important;
                height: 38px !important;
            }
        }
      :root {
        --primary: #1769aa;
        --secondary: #1b5e20;
        --accent: #00897b;
        --bg: #f8fafc;
        --card-bg: #fff;
        --border: #e0e0e0;
        --star: #ffc107;
        --grey: #f1f3f6;
        --text: #222;
        --muted: #6b7280;
        --success: #388e3c; /* Popup Variables */
        --axis-red: #d32c2c;
        --axis-blue: #183472;
        --axis-purple: #9c27b0;
        --light-purple: #f3e5f5;
        --button-red: #c41e3a;
        --guarantee-blue: #183472;
        --popup-height: 33vh;
      }
      html,
      body {
        margin: 0;
        padding: 0;
        font-family: "Inter", Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        scroll-behavior: smooth;
      }

      /* Popup Styles */
      .slide-popup {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        width: 100%;
        height: var(--popup-height);
        background: white;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        padding: 15px 25px;
        transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
      }

      .slide-popup.show {
        bottom: 0;
      }

      .popup-content {
        height: 100%;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 20px;
      }

      .popup-header {
        position: relative;
        text-align: center;
      }

      .win-badge {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #ffd700;
        color: #000;
        padding: 4px 12px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.8rem;
        white-space: nowrap;
        animation: pulse 2s infinite;
      }

      .popup-logo {
        width: 120px;
        margin: 0 auto;
        display: block;
      }

      .popup-details {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .popup-info {
        text-align: left;
      }

      .popup-details h3 {
        color: var(--primary);
        font-size: 1.2rem;
        margin: 0 0 5px 0;
      }

      .popup-price {
        color: var(--text);
        font-size: 1.1rem;
        margin-bottom: 5px;
      }

      .popup-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 15px;
      }

      .popup-features li {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text);
        font-size: 0.9rem;
      }

      .popup-rating {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .popup-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1rem;
        white-space: nowrap;
        transition: transform 0.3s, background 0.3s;
      }

      .popup-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      @media (max-width: 768px) {
        .popup-content {
          grid-template-columns: 1fr;
          gap: 10px;
          text-align: center;
        }

        .popup-details {
          flex-direction: column;
        }

        .popup-features {
          justify-content: center;
        }

        .popup-info {
          text-align: center;
        }
      }

      /* Sticky Notification Bar */
      .notif-bar {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--grey);
        color: var(--muted);
        font-size: 0.95rem;
        padding: 7px 0;
        text-align: center;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
      }
      .notif-bar i {
        color: #fbc02d;
        font-size: 1.1em;
      }
      /* Header */
      .header {
        max-width: 900px;
        margin: 32px auto 0;
        padding: 0 16px;
        text-align: center;
      }
      .header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--primary);
      }
      .header p {
        font-size: 1.15rem;
        color: var(--muted);
        margin-bottom: 20px;
      }
      .cta-btn {
        background: #058b22;
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        padding: 13px 36px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-bottom: 18px;
        transition: background 0.2s;
      }
      .cta-btn:hover {
        background: #145a1e;
      }
      .trust-badges {
        margin-top: 12px;
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .trust-badge {
        background: #e3f2fd;
        color: var(--primary);
        font-size: 0.98rem;
        padding: 6px 14px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
      }
      /* Comparison Cards */      .plans-section {
        max-width: 950px;
        margin: 24px auto 0;
        padding: 0 12px;
      }
      .plan-card {
        display: flex;
        align-items: center;
        background: var(--card-bg);
        border: 2px solid var(--primary); /* Thicker border for each card */
        border-radius: 8px;
        margin-bottom: 28px;
        padding: 28px 32px;
        gap: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
        position: relative;
        animation: fadeInUp 0.7s;
      }
      .plan-card:hover {
        box-shadow: 0 6px 24px rgba(23, 105, 170, 0.13);
        border-color: var(--accent);
        transform: translateY(-4px) scale(1.01);
      }
      .plan-rank {
        position: absolute;
        left: -18px;
        top: 18px;
        background: #111;
        color: #fff;
        font-weight: 700;
        font-size: 1.25rem;
        border-radius: 3px;
        padding: 3px 16px 3px 10px;
        z-index: 2;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
      }
      .plan-logo {
        flex: 0 0 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 110px;
        min-height: 70px;
        padding: 8px;
        /* Add border for logo area */
        margin-right: 10px;
      }
      .plan-logo img {
        max-width: 90px;
        max-height: 60px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
      }
      .plan-details {
        flex: 1 1 0;
        min-width: 220px;
      }
      .plan-details h2 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 6px 0;
        color: var(--text);
      }
      .plan-details .tagline {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 10px;
      }
      .plan-features {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 6px;
      }
      .plan-features li {
        font-size: 1rem;
        color: var(--muted);
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .plan-features li i {
        color: var(--success);
        font-size: 1.1em;
      }
      .plan-score {
        text-align: center;
        min-width: 90px;
        margin-right: 18px;
      }
      .plan-score .score {
        font-size: 2.1rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0;
        line-height: 1;
      }
      .plan-score .stars {
        color: var(--star);
        font-size: 1.1rem;
        margin-bottom: 2px;
      }
      .plan-score .score-label {
        font-size: 0.92rem;
        color: var(--muted);
        font-weight: 600;
      }
      .plan-ctas {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 7px;
        min-width: 170px;
      }
      .view-btn {
        background: rgb(0, 134, 27);
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        padding: 12px 32px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 2px;
        transition: background 0.2s;
        letter-spacing: 0.5px;
      }
      .view-btn:hover {
        background: #145a1e;
      }
      /* Why Choose Us */
      .why-section {
        max-width: 900px;
        margin: 48px auto 0;
        padding: 0 16px;
        background: #e3f2fd;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        padding-bottom: 24px;
        animation: fadeIn 1s;
      }
      .why-section h3 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--primary);
        margin: 0 0 12px 0;
        padding-top: 24px;
        text-align: center;
      }
      .why-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px;
      }
      .why-list li {
        font-size: 1.07rem;
        color: var(--text);
        background: #fff;
        border-radius: 7px;
        padding: 12px 18px;
        margin: 0 0 10px 0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 220px;
      }
      .why-list li i {
        color: var(--success);
        font-size: 1.1em;
      }
      /* Enhanced FAQ Styles */
      .faq-section {
        max-width: 900px;
        margin: 48px auto;
        padding: 0 16px;
      }

      .faq-section h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary);
        text-align: center;
        margin-bottom: 32px;
      }

      .faq-list-modern {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .faq-item-modern {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .faq-item-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      .faq-q-modern {
        width: 100%;
        text-align: left;
        padding: 20px 24px;
        background: none;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        transition: background 0.3s;
      }

      .faq-q-modern .arrow {
        color: var(--primary);
        transition: transform 0.3s;
      }

      .faq-q-modern[aria-expanded="true"] {
        background: var(--primary);
        color: #fff;
        border-radius: 12px 12px 0 0;
      }

      .faq-q-modern[aria-expanded="true"] .arrow {
        color: #fff;
        transform: rotate(-180deg);
      }
      .faq-a-modern {
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
        color: var(--text);
        font-size: 1.05rem;
        line-height: 1.6;
        background: #f8fafc;
        border-radius: 0 0 12px 12px;
        transition: all 0.3s ease-out;
        opacity: 0;
      }

      .faq-item-modern.open .faq-a-modern {
        max-height: 500px;
        padding: 20px 24px;
        opacity: 1;
        border-top: 2px solid var(--primary);
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @media (max-width: 480px) {
        .slide-popup {
          width: 100%;
          max-width: none;
          border-radius: 20px 20px 0 0;
          padding: 24px 16px;
        }

        .popup-best-plan {
          padding: 20px 16px;
          margin-bottom: 16px;
        }

        .popup-plan-logo {
          width: 150px;
          margin-bottom: 16px;
        }

        .popup-plan-logo img {
          max-width: 100%;
          height: auto;
        }

        .popup-plan-title {
          font-size: 1.2rem;
          margin-bottom: 8px;
        }

        .popup-plan-tagline {
          font-size: 0.95rem;
        }

        .popup-cta-btn {
          font-size: 1rem;
          padding: 14px 20px;
          margin-top: 16px;
        }

        .bonus-features {
          margin: 12px 0;
        }

        .bonus-features li {
          font-size: 0.92rem;
          margin-bottom: 6px;
        }

        .secure-badge {
          font-size: 0.85rem;
          margin-top: 10px;
        }
      }

      @media (max-height: 700px) {
        .slide-popup {
          max-height: 85vh;
          overflow-y: auto;
        }

        .popup-best-plan {
          margin-bottom: 12px;
        }
      }
      /* Footer */
      .enhanced-footer {
        background: linear-gradient(90deg, #e3f2fd 60%, #fff 100%);
        color: var(--muted);
        text-align: center;
        font-size: 1rem;
        padding: 32px 8px 18px 8px;
        margin-top: 48px;
        border-top: 2px solid var(--primary);
        box-shadow: 0 -2px 12px rgba(23, 105, 170, 0.06);
      }
      .footer-main {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
        margin-bottom: 10px;
      }
      .footer-logo img {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(23, 105, 170, 0.09);
      }
      .footer-links {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        font-size: 1.05rem;
      }
      .footer-links a {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--accent);
        text-decoration: underline;
      }
      .footer-social {
        display: flex;
        gap: 14px;
      }
      .footer-social a {
        color: var(--primary);
        font-size: 1.25rem;
        background: #fff;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 4px rgba(23, 105, 170, 0.09);
        transition: background 0.2s, color 0.2s;
      }
      .footer-social a:hover {
        background: var(--primary);
        color: #fff;
      }
      .footer-compliance {
        margin-top: 10px;
        font-size: 0.98rem;
        color: var(--muted);
      }
      .footer-copy {
        margin-top: 10px;
        font-size: 0.97rem;
        color: #b0b8c1;
      }
      @media (max-width: 700px) {
        .footer-main {
          flex-direction: column;
          gap: 12px;
        }
        .footer-logo img {
          width: 38px;
          height: 38px;
        }
        .footer-links {
          font-size: 0.98rem;
        }
        .footer-social a {
          font-size: 1.1rem;
          width: 28px;
          height: 28px;
        }
      }

      /* Responsive Styles */
      @media (max-width: 1024px) {
        .header {
          padding: 0 20px;
        }

        .header h1 {
          font-size: 2rem;
          line-height: 1.3;
        }

        .header p {
          font-size: 1.1rem;
        }

        .trust-badges {
          gap: 14px;
        }

        .plans-section {
          padding: 0 20px;
        }

        .plan-card {
          padding: 24px 20px;
          gap: 20px;
        }

        .plan-logo {
          min-width: 100px;
          min-height: 65px;
        }
      }

      @media (max-width: 768px) {
        .header h1 {
          font-size: 1.8rem;
        }

        .header p {
          font-size: 1rem;
        }

        .cta-btn {
          width: 100%;
          max-width: 300px;
          font-size: 1rem;
          padding: 12px 28px;
        }

        .trust-badges {
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
        }

        .trust-badge {
          font-size: 0.9rem;
          padding: 5px 12px;
        }        .plan-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 20px 12px;
          margin-bottom: 12px;
          gap: 8px;
          border-width: 1px;
        }

        .plan-logo {
          margin: 4px 0;
          height: 35px;
          min-height: 35px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
        }

        .plan-logo img {
          max-height: 30px;
          max-width: 100px;
          width: auto;
          object-fit: contain;
        }

        .plan-details {
          padding: 4px 0;
          text-align: center;
          min-width: unset;
          width: 100%;
        }

        .plan-details h2 {
          font-size: 1.2rem;
          margin-bottom: 4px;
        }

        .plan-details .tagline {
          font-size: 0.9rem;
          margin-bottom: 6px;
        }

        .plan-features {
          gap: 4px;
          justify-content: center;
        }

        .plan-features li {
          font-size: 0.85rem;
          margin-bottom: 3px;
          justify-content: center;
        }

        .plan-score {
          margin: 8px 0;
          padding: 6px;
          min-width: unset;
        }

        .plan-ctas {
          width: 100%;
          align-items: center;
        }

        .view-btn {
          padding: 10px 24px;
          font-size: 0.95rem;
          width: 100%;
          max-width: 220px;
          margin-top: 4px;
        }

        .plans-section {
          padding: 6px 10px;
          margin-top: 12px;
        }

        div[style*="margin: 32px 0 0 0"] {
          margin: 12px 0 8px 0 !important;
        }

        div[style*="margin: 32px 0 0 0"] img {
          width: 160px !important;
          height: 38px !important;
        }
      }

      @media (max-width: 480px) {
        .header {
          margin-top: 24px;
          padding: 0 16px;
        }

        .header h1 {
          font-size: 1.5rem;
        }

        .header p {
          font-size: 0.95rem;
          line-height: 1.5;
        }

        .trust-badge {
          width: 100%;
          justify-content: center;
        }

        .plan-card {
          margin-bottom: 32px;
          padding: 32px 12px 16px;
        }

        .plan-logo {
          width: 85px;
          min-height: 55px;
        }

        .plan-logo img {
          max-width: 80px;
          max-height: 50px;
        }

        .plan-details h2 {
          font-size: 1.15rem;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            /* Logo spacing optimizations */
            .plan-card {
                padding: 20px 12px;
                margin-bottom: 12px;
                gap: 8px;
                border-width: 1px;
            }
            
            .plan-logo {
                margin: 4px 0;
                height: 35px;
                min-height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0;
            }
            
            .plan-logo img {
                max-height: 30px;
                max-width: 100px;
                width: auto;
                object-fit: contain;
            }

            .plan-details {
                padding: 4px 0;
                text-align: center;
            }
            
            .plan-details h2 {
                font-size: 1.2rem;
                margin-bottom: 4px;
            }
            
            .tagline {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }
            
            .plan-features {
                gap: 4px;
            }
            
            .plan-features li {
                font-size: 0.85rem;
                margin-bottom: 3px;
                justify-content: center;
            }

            .plan-score {
                margin: 8px 0;
                padding: 6px;
            }

            .plans-section {
                padding: 6px 10px;
                margin-top: 12px;
            }

            .view-btn {
                padding: 10px 24px;
                font-size: 0.95rem;
                width: 100%;
                max-width: 220px;
                margin-top: 4px;
            }

            div[style*="margin: 32px 0 0 0"] {
                margin: 12px 0 8px 0 !important;
            }

            div[style*="margin: 32px 0 0 0"] img {
                width: 160px !important;
                height: 38px !important;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .plan-logo {
                height: 30px;
                min-height: 30px;
            }
            
            .plan-logo img {
                max-height: 25px;
                max-width: 90px;
            }

            .plan-card {
                padding: 16px 10px;
                margin-bottom: 10px;
            }

            .plan-details h2 {
                font-size: 1.1rem;
            }

            .tagline {
                font-size: 0.85rem;
            }

            .plan-features li {
                font-size: 0.8rem;
            }

            .view-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
                max-width: 200px;
            }
        }
      @keyframes highlightPulse {
        0% {
          background: var(--card-bg);
          box-shadow: 0 2px 8px rgba(201, 177, 81, 0.03);
        }
        33% {
          background: rgba(255, 236, 179, 0.3);
          box-shadow: 0 6px 24px rgba(255, 193, 7, 0.15);
        }
        66% {
          background: #e3f2fd;
          box-shadow: 0 6px 24px rgba(23, 105, 170, 0.18);
        }
        100% {
          background: var(--card-bg);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
      }

      .plan-card:first-of-type {
        animation: fadeInUp 0.7s, highlightPulse 2s ease-in-out infinite;
        border-color: var(--primary);
        position: relative;
      }

      .plan-card:first-of-type::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border: 2px solid var(--primary);
        border-radius: 8px;
        opacity: 0.5;
        animation: highlightPulse 3s ease-in-out infinite;
        z-index: -1;

        display: flex;
        align-items: center;
        justify-content: center;
      }

      .popup-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .popup-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.15);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
      }

      .popup-content h3 {
        margin: 0 0 8px 0;
        font-size: 20px;
        font-weight: 700;
      }

      .popup-price {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 16px;
      }

      .popup-stats {
        margin-bottom: 20px;
      }

      .stat-item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 14px;
      }

      .check-icon {
        width: 18px;
        height: 18px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #4caf50;
      }

      .popup-rating {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      .rating-score {
        font-size: 24px;
        font-weight: 700;
      }

      .rating-stars {
        color: #ffc107;
        letter-spacing: 2px;
      }

      .popup-cta {
        width: 100%;
        background: #4caf50;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 12px;
        transition: transform 0.2s, background-color 0.2s;
      }

      .popup-cta:hover {
        background: #45a049;
        transform: translateY(-2px);
      }

      .popup-discount {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
      }

      .discount-badge {
        background: #ff4d4d;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: 600;
      }

      .discount-text {
        opacity: 0.8;
      }

      .close-button {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.2s, transform 0.2s;
      }

      .close-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
      }

      /* Popup Styles */
      .slide-popup {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        height: var(--popup-height);
        background: white;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
        border-radius: 24px 24px 0 0;
        padding: 24px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
      }

      .slide-popup.show {
        transform: translateY(0);
      }

      .popup-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--muted);
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
      }

      .popup-close:hover {
        color: var(--text);
      }

      .popup-content {
        height: 100%;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      .popup-logo {
        background: var(--grey);
        padding: 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .popup-logo img {
        width: 110px;
        height: 70px;
        object-fit: contain;
      }

      .popup-details {
        text-align: left;
      }

      .popup-details h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--axis-blue);
        margin: 0 0 8px;
      }

      .popup-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 12px;
      }

      .stars {
        color: var(--star);
        font-size: 1.1rem;
        letter-spacing: 1px;
      }

      .rating-text {
        color: var(--muted);
        font-weight: 600;
      }

      .offer-text {
        font-size: 1.15rem;
        color: var(--axis-red);
        font-weight: 600;
        margin: 0;
      }

      .popup-cta {
        background: var(--button-red);
        color: white;
        text-decoration: none;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: background-color 0.2s;
        white-space: nowrap;
      }
      .popup-cta:hover {
        background: #b01b34;
      }

      .popup-benefits {
        list-style: none;
        padding: 0;
        margin: 16px 0;
      }

      .popup-benefits li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text);
        font-size: 1.05rem;
        margin-bottom: 8px;
      }

      .popup-benefits li i {
        color: var(--success);
        font-size: 1.1rem;
      }

      .popup-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }

      .popup-dismiss {
        background: none;
        border: none;
        color: var(--muted);
        font-size: 0.95rem;
        padding: 8px;
        cursor: pointer;
        transition: color 0.2s;
      }

      .popup-dismiss:hover {
        color: var(--text);
        text-decoration: underline;
      }

      @media (max-width: 768px) {
        .popup-content {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 16px;
          padding: 0;
        }

        .popup-logo {
          margin: 0 auto;
        }

        .popup-details {
          text-align: center;
        }

        .popup-rating {
          justify-content: center;
        }

        .popup-cta {
          display: block;
          text-align: center;
        }
      }
         .notif-bar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--grey);
      color: var(--muted);
      font-size: 0.95rem;
      padding: 7px 0;
      text-align: center;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative;
    }

    .notif-bar i.tooltip-icon {
      color: #fbc02d;
      font-size: 1.1em;
      position: relative;
      cursor: pointer;
    }

    .tooltip-text {
      display: none;
      position: absolute;
      top: 110%;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 700px;
      background: #fff;
      color: #333;
      font-size: 0.85rem;
      padding: 12px;
      border: 1px solid #ccc;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      z-index: 1001;
      text-align: left;
      line-height: 1.5;
    }

    .tooltip-icon:hover + .tooltip-text {
      display: block;
    }