    body, body *, h1, h2, h3, h4, h5, h6, p, span, div, li, td, th {
        user-select: text !important;
        -webkit-user-select: text !important;
        -moz-user-select: text !important;
        -ms-user-select: text !important;
    }
    
    /* Proper cursor and pointer events for interactive elements */
    a, a[href], button, .btn, [role="button"], input[type="submit"], input[type="button"],
    .accordion-button, .pricing-toggle-group .btn, .get-started-btn, .animated-button,
    .btn-group .btn, .marquee-close, .google-rating-badge {
        cursor: pointer !important;
        pointer-events: auto !important;
        user-select: none !important;
    }
    
    /* Allow pointer events on all text elements */
    h1, h2, h3, h4, h5, h6, p, span, div:not(.btn):not(.card):not(.pricing-card) {
        pointer-events: auto !important;
    }
    
    .pricing-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .pricing-card.featured {
        border-color: var(--bs-primary);
        box-shadow: 0 10px 15px -3px rgba(var(--bs-primary-rgb), 0.2), 0 4px 6px -2px rgba(var(--bs-primary-rgb), 0.1);
    }
    
    .plan-icon {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .plan-icon i {
        font-size: 2.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--bs-primary-rgb), 0.1);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }
    
    .pricing-toggle-group {
        border: 1px solid var(--bs-primary);
        border-radius: 30px;
        overflow: hidden;
    }
    
    .pricing-toggle-group .btn {
        border: none;
        border-radius: 0;
        padding: 0.5rem 1rem;
    }
    
    .pricing-toggle-group .btn.active {
        background-color: var(--bs-primary);
        color: white;
    }
    
    .pricing-toggle-group .badge {
        color: white !important;
    }
    
    /* Full-width MOST POPULAR banner – purple bar, white text, like reference */
    .pricing-card .ribbon {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        transform: none !important;
        overflow: hidden;
        background: linear-gradient(135deg, #af098b 0%, #170a66 100%) !important;
        color: #fff !important;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        padding: 6px 12px;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        z-index: 10;
        text-align: center;
    }
    
    .pricing-card .ribbon span {
        display: block !important;
        padding: 0 !important;
        text-transform: uppercase;
        transform: none !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        line-height: 1.3;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .price-wrapper {
        text-align: center;
    }
    
    .features-list ul li {
        font-size: 0.95rem;
    }
    
    /* Ensure pricing card text is visible */
    .pricing-card {
        color: #212529;
    }
    
    .pricing-card .card-body {
        color: #212529;
    }
    
    .pricing-card .features-list ul li span {
        color: #212529 !important;
    }
    
    .pricing-card .price-container h4,
    .pricing-card .price-container p {
        color: #212529 !important;
    }
    
    .pricing-card .card-body h3,
    .pricing-card .card-body p {
        color: #212529 !important;
    }
    
    /* Ensure all feature lists in white sections are visible */
    .bg-white .list-unstyled li span,
    .bg-white .features-list ul li span {
        color: #212529 !important;
    }
    
    /* Ensure benefit cards text is visible */
    .card-custom .card-body {
        color: #212529;
    }
    
    .card-custom .card-body h3,
    .card-custom .card-body p {
        color: #212529 !important;
    }
    
    /* Fix headlines and headings for proper visibility - but keep hero section white */
    .bg-white .display-5,
    .bg-white .display-6,
    .bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
        color: #212529 !important;
    }
    
    .bg-light .display-5,
    .bg-light .display-6,
    .bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6 {
        color: #212529 !important;
    }
    
    /* Keep hero section text white */
    .hero-section .display-5,
    .hero-section .display-6,
    .hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5, .hero-section h6 {
        color: white !important;
    }
    
    /* Ensure main section h2 is black */
    main.bg-white h2,
    main.bg-white .display-5 {
        color: #212529 !important;
    }
    
    /* Specific fix for the main heading */
    main.bg-white .text-center h2,
    main.bg-white .text-center .display-5 {
        color: #212529 !important;
    }
    
    /* Fix for h3 elements with h2 class in white sections */
    main.bg-white h3.h2,
    main.bg-white h3.h3,
    main.bg-white h3 {
        color: #212529 !important;
    }
    
    /* Ensure section headings are visible in white/light sections only */
    .bg-white section h2,
    .bg-white section h3,
    .bg-white section h4,
    .bg-light section h2,
    .bg-light section h3,
    .bg-light section h4 {
        color: #212529 !important;
    }
    
    /* Fix comparison section headings */
    .bg-light h2,
    .bg-light h3,
    .bg-light h4 {
        color: #212529 !important;
    }
    
    /* Fix any muted text that should be more visible */
    .text-muted {
        color: #6c757d !important;
    }
    
    /* Override text-white classes in light sections for better visibility */
    .bg-light .text-white,
    .bg-white .text-white {
        color: #212529 !important;
    }
    
    /* Keep hero section and CTA section text-white intact */
    .hero-section .text-white,
    .cta-section .text-white {
        color: white !important;
    }
    
    /* Ensure CTA section headings stay white */
    .cta-section h2,
    .cta-section h3,
    .cta-section .display-5,
    .cta-section .display-6 {
        color: white !important;
    }
    
    /* Override any conflicting rules for CTA section */
    .cta-section h2.text-white,
    .cta-section .display-5.text-white {
        color: white !important;
    }
    
    /* Ensure all text in CTA section is white */
    .cta-section p,
    .cta-section span,
    .cta-section a:not(.btn),
    .cta-section .btn-outline-light {
        color: white !important;
    }
    
    .cta-section .btn-outline-light {
        color: white !important;
        border-color: white !important;
    }
    
    .cta-section .btn-outline-light:hover {
        color: #1e3a8a !important;
        background-color: white !important;
    }
    
    .cta-section .btn-success,
    .cta-section .btn-outline-light {
        color: white !important;
    }
    
    /* Ensure call and email buttons have black text */
    .cta-section .btn-outline-primary,
    .cta-section .btn-outline-secondary {
        color: #212529 !important;
        border-color: #212529 !important;
    }
    
    .cta-section .btn-outline-primary:hover,
    .cta-section .btn-outline-secondary:hover {
        color: white !important;
        background-color: #212529 !important;
        border-color: #212529 !important;
    }
    
    /* Ensure comparison table headers are visible */
    .table-dark th.text-white {
        color: #f8f9fa !important;
    }
    
    /* Fix any remaining white text in light backgrounds */
    .bg-light h2.text-white,
    .bg-light h3.text-white,
    .bg-light h4.text-white,
    .bg-light p.text-white {
        color: #212529 !important;
    }
    
    /* Specific fix for comparison section and other light sections */
    .bg-light .display-5,
    .bg-light .display-6,
    .bg-light h2,
    .bg-light h3,
    .bg-light h4 {
        color: #212529 !important;
    }
    
    /* Ensure all text in light sections has proper contrast */
    .bg-light,
    .bg-white {
        color: #212529;
    }
    
    .bg-light *,
    .bg-white * {
        color: inherit;
    }
    
    .accordion-button {
        cursor: pointer !important;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
    }
    
    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
    }

    .bg-primary-light {
        background-color: rgba(var(--bs-primary-rgb), 0.1);
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Mobile-First Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        overflow: hidden;
        padding: 0;
        margin: 0;
        position: relative;
    }
    
    .hero-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.2;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
    }
    
    .text-gradient {
        background: linear-gradient(90deg, #ffd166, #ef476f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    
    .hero-image {
        border-radius: 12px;
    }
    
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Tablet and up */
    @media (min-width: 768px) {
        .hero-section {
            padding: 0;
        }
        
        .hero-title {
            font-size: 2.25rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .hero-stat {
            font-size: 0.9rem;
        }
    }
    
    /* Desktop and up */
    @media (min-width: 992px) {
        .hero-section {
            padding: 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.15rem;
        }
    }
    
    .rounded-lg {
        border-radius: 1rem;
    }
    
    /* Animated Button Styling with Different Background Colors */
    .animated-button {
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: none;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .animated-button:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .animated-button:active {
        transform: translateY(-1px) scale(0.98);
    }
    
    .animated-button .button-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
    }
    
    .animated-button .button-content i {
        color: white !important;
    }
    
    .animated-button .button-content span {
        color: white !important;
    }
    
    .animated-button .button-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }
    
    .animated-button:hover .button-shine {
        left: 100%;
    }
    
    /* Pulse animation for the button */
    .animated-button {
        animation: buttonPulse 2s infinite;
    }
    
    @keyframes buttonPulse {
        0% {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        50% {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(0, 123, 255, 0.1);
        }
        100% {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
    }
    
    /* Hover effect for button icon */
    .animated-button:hover .bi-rocket-takeoff {
        animation: rocketShake 0.6s ease-in-out;
    }
    
    @keyframes rocketShake {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(-5deg); }
        75% { transform: rotate(5deg); }
    }
    
    /* Different background colors for different button types */
    .animated-button.btn-success {
        background: linear-gradient(45deg, #dc3545, #c82333);
        border: none;
        color: white !important;
    }
    
    .animated-button.btn-success:hover {
        background: linear-gradient(45deg, #c82333, #dc3545);
        color: white !important;
    }
    
    .animated-button.btn-custom-primary {
        background: linear-gradient(45deg, #6f42c1, #5a32a3);
        border: none;
        color: white !important;
    }
    
    .animated-button.btn-custom-primary:hover {
        background: linear-gradient(45deg, #5a32a3, #6f42c1);
        color: white !important;
    }
    
    /* Mobile-First Responsive Design */
    
    /* Base mobile styles */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .fs-5 {
        font-size: 1rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Pricing cards mobile-first - 2 cards per row */
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: 2 cards per row - smaller text */
    @media (max-width: 767px) {
        #pricing {
            scroll-margin-top: 80px;
            padding-top: 5rem !important;
        }
        
        .pricing-card.featured {
            overflow: visible;
        }
        
        .pricing-card .ribbon {
            font-size: 9px;
            letter-spacing: 0.05em;
            padding: 5px 8px;
            z-index: 20;
        }
        
        .pricing-card .card-body {
            padding: 0.75rem !important;
        }
        
        .pricing-card h3.h4 {
            font-size: 0.85rem !important;
        }
        
        .pricing-card .text-muted {
            font-size: 0.7rem !important;
        }
        
        .pricing-card .display-6 {
            font-size: 1.25rem !important;
        }
        
        .pricing-card .features-list ul li {
            font-size: 0.7rem !important;
            margin-bottom: 0.25rem !important;
        }
        
        .pricing-card .plan-icon i {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }
        
        .pricing-card .btn {
            font-size: 0.75rem;
            padding: 0.4rem 0.5rem;
        }
    }
    
    @media (max-width: 399px) {
        #pricing {
            padding-top: 4.5rem !important;
        }
        
        .pricing-card .ribbon {
            font-size: 8px;
            padding: 4px 6px;
        }
    }
    
    .pricing-toggle-group .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Tables responsive */
    .table-responsive {
        font-size: 0.85rem;
    }
    
    /* Cards spacing */
    .card {
        margin-bottom: 1rem;
    }
    
    /* Tablet styles */
    @media (min-width: 768px) {
        .container {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .display-5 {
            font-size: 2.25rem;
        }
        
        .fs-5 {
            font-size: 1.1rem;
        }
        
        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
        
        .mb-5 {
            margin-bottom: 3rem !important;
        }
        
        .pricing-toggle-group .btn {
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
        }
    }
    
    /* Desktop styles */
    @media (min-width: 992px) {
        .display-5 {
            font-size: 2.5rem;
        }
        
        .fs-5 {
            font-size: 1.25rem;
        }
        
        .py-5 {
            padding-top: 4rem !important;
            padding-bottom: 4rem !important;
        }
        
        .mb-5 {
            margin-bottom: 4rem !important;
        }
    }
    
    /* Fix: Ensure text in feature lists is visible on white backgrounds */
    main.bg-white .list-unstyled { 
        list-style: none; 
        padding-left: 0; 
        margin-left: 0; 
    }
    main.bg-white .list-unstyled li span { 
        color: #212529 !important;
    }
    
    /* Fix trusted brands title color */
    .trusted-brands .trusted-title,
    .trusted-brands h5 {
        color: #000000 !important;
    }
    
    /* Fix footer link clickability */
    .footer {
        position: relative;
        z-index: 10;
    }
    
    .footer a {
        position: relative;
        z-index: 11;
        pointer-events: auto;
    }
    
    /* Fix banner button clickability */
    .bg-dark .btn {
        position: relative;
        z-index: 999;
        pointer-events: auto;
    }
    
    .bg-dark .container {
        position: relative;
        z-index: 998;
    }
    
    /* Compact breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
    }
    
    /* Comparison Table Styles */
    .comparison-table {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-table thead th {
        padding: 1.5rem 1rem;
        font-size: 1.1rem;
        border-bottom: 2px solid #dee2e6;
    }
    
    .comparison-table tbody td {
        padding: 1rem;
        vertical-align: middle;
    }
    
    .comparison-table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .bg-primary-light {
        background-color: rgba(var(--bs-primary-rgb), 0.05) !important;
    }
    
    @media (max-width: 768px) {
        .comparison-table {
            font-size: 0.85rem;
        }
        
        .comparison-table thead th {
            padding: 1rem 0.5rem;
            font-size: 0.9rem;
        }
        
        .comparison-table tbody td {
            padding: 0.75rem 0.5rem;
        }
    }
