        /* * GLOBAL STYLES FOR THE BANNER 
         * Ensure your main site doesn't conflict with these specific class names.
         */
        
        /* Reset and Base Styles (only for this banner container) */
        .ipass-banner-wrapper {
            width: 100%;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Modern sans-serif stack */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* The main banner container - Link Wrapper */
        .ipass-banner-link {
            text-decoration: none;
            display: block; /* Makes the entire banner clickable */
            width: 100%;
            background-color: #121212; /* Dark theme background */
            position: relative;
            overflow: hidden; /* For the glow effect */
            
            /* Border and subtle top-shadow/border for separation */
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            
            transition: background-color 0.3s ease;
        }

        .ipass-banner-link:hover {
            background-color: #1a1a1a; /* Very slight highlight on hover */
        }

        /* Subtle Gradient/Glow Effect Layer */
        .ipass-banner-link::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 183, 255, 0.15) 0%, rgba(0, 183, 255, 0) 70%);
            border-radius: 50%;
            pointer-events: none; /* Let clicks pass through */
            z-index: 1;
        }

        /* Banner Content Container */
        .ipass-banner-container {
            max-width: 1200px; /* or your content max-width */
            margin: 0 auto;
            padding: 12px 20px; /* Reduced vertical padding for thin profile */
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2; /* Place content above the glow */
        }

        /* Left Side Content */
        .ipass-banner-info {
            display: flex;
            align-items: center;
            gap: 15px; /* Spacing between icon and text */
            flex-grow: 1;
        }

        /* SVG Icon (SEO & Retina friendly) */
        .ipass-banner-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0; /* Don't shrink the icon */
            fill: none;
            stroke: #00e5ff; /* Cyan/Blue accent color */
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Text Block */
        .ipass-banner-text {
            display: flex;
            flex-direction: column;
            gap: 2px; /* Small space between headline and subtext */
        }

        .ipass-banner-headline {
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
            margin: 0;
            line-height: 1.2;
        }

        .ipass-banner-subtext {
            color: rgba(255, 255, 255, 0.7); /* Muted text */
            font-size: 13px;
            margin: 0;
            line-height: 1.2;
        }

        /* CTA Button */
        .ipass-banner-cta {
            background-color: #00e5ff; /* Bright Accent */
            color: #000000; /* Dark text on bright button */
            font-weight: 700;
            font-size: 14px;
            padding: 8px 18px;
            border-radius: 20px;
            white-space: nowrap; /* Prevent wrapping */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
            margin-left: 20px;
        }

        /* Hover Effect for CTA */
        .ipass-banner-link:hover .ipass-banner-cta {
            transform: translateY(-2px); /* Pop up slightly */
            box-shadow: 0 6px 12px rgba(0, 229, 255, 0.3); /* Add colored shadow glow */
            background-color: #ffffff; /* Transition to white for more impact */
        }

        /* * MOBILE RESPONSIVENESS (Media Query)
         * Adjusts the layout for smaller screens.
         */
        @media (max-width: 768px) {
            .ipass-banner-container {
                flex-direction: column; /* Stack elements vertically */
                text-align: center;
                gap: 12px;
                padding: 15px 15px; /* Adjust padding for mobile stack */
            }

            .ipass-banner-info {
                flex-direction: column;
                gap: 8px;
            }

            .ipass-banner-icon {
                width: 28px; /* Slightly larger icon when alone */
                height: 28px;
            }

            .ipass-banner-text {
                align-items: center;
            }

            .ipass-banner-headline {
                font-size: 15px;
            }

            .ipass-banner-subtext {
                font-size: 12px;
                line-height: 1.3;
            }

            .ipass-banner-cta {
                margin-left: 0;
                width: 100%; /* Full width button on mobile */
                max-width: 280px; /* But don't let it get crazy wide */
                padding: 10px 18px;
            }
        }