  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        .mcafee-header {
            background-color: white;
            border-bottom: 1px solid #e5e5e5;
            position: relative;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .mcafee-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #d32f2f;
            text-decoration: none;
        }
        .logo-icon {
            width: 32px;
            height: 32px;
            background-color: #d32f2f;
            margin-right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        .main-navigation {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 40px;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            padding: 20px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #d32f2f;
        }
        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        .nav-item.active .dropdown-arrow {
            transform: rotate(180deg);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .support-link {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .globe-icon {
            width: 20px;
            height: 20px;
            border: 2px solid #666;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .login-button {
            background-color: #333;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .login-button:hover {
            background-color: #555;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            color: #333;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        .mobile-toggle:hover {
            background-color: #f5f5f5;
        }
        /* Desktop Dropdown Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 90vw;
            max-width: 800px;
            padding: 40px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .nav-item:hover .dropdown-menu,
        .nav-item.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .dropdown-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .dropdown-section {
            display: flex;
            flex-direction: column;
        }
        .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            text-decoration: none;
            color: #666;
            transition: color 0.3s ease;
        }
        .dropdown-item:hover {
            color: #d32f2f;
        }
        .item-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .item-content {
            flex: 1;
        }
        .item-title {
            font-weight: 500;
            margin-bottom: 4px;
        }
        .item-description {
            font-size: 14px;
            color: #999;
            line-height: 1.4;
        }
        .new-badge {
            background-color: #ff4444;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
            margin-left: 8px;
        }
        /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            .main-navigation {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 20px 0;
                border-top: 1px solid #e5e5e5;
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                width: 100%;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            .main-navigation.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-item {
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
            }
            .nav-item:last-child {
                border-bottom: none;
            }
            .nav-link {
                padding: 18px 20px;
                justify-content: flex-start;
                width: 100%;
                font-size: 18px;
                font-weight: 500;
                color: #333;
                transition: all 0.3s ease;
            }
            .nav-link:hover,
            .nav-link:active {
                background-color: #f8f9fa;
                color: #d32f2f;
            }
            /* Hide dropdown arrows in mobile */
            .dropdown-arrow {
                display: none;
            }
            /* Hide dropdown menus in mobile */
            .dropdown-menu {
                display: none;
            }
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                order: 1;
            }
            .header-actions {
                gap: 10px;
            }
            .support-link {
                display: none;
            }
            .globe-icon {
                display: none;
            }
            .login-button {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
        @media (max-width: 480px) {
            .mcafee-logo {
                font-size: 18px;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }
            .login-button {
                padding: 6px 12px;
                font-size: 12px;
            }
            .mobile-toggle {
                font-size: 20px;
                padding: 6px;
            }
            .nav-link {
                font-size: 16px;
                padding: 16px 20px;
            }
        }
        /* Fix for very small screens */
        @media (max-width: 320px) {
            .header-container {
                padding: 0 10px;
            }
            .header-actions {
                gap: 5px;
            }
            .login-button {
                padding: 4px 8px;
                font-size: 11px;
            }
        }

/* ===============================================
banner 
=============================================== */

/* Main Container */
.qx7z-primary-banner-container-wrapper {
    width: 100%;
    
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.mn4k-hero-section-display-module {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* Background Image */
.bg8r-background-image-holder-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vt5n-responsive-banner-image-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Arrows */
.lp6q-navigation-arrow-left-control,
.dw8s-navigation-arrow-right-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lp6q-navigation-arrow-left-control {
    left: 30px;
}

.dw8s-navigation-arrow-right-control {
    right: 30px;
}

.lp6q-navigation-arrow-left-control:hover,
.dw8s-navigation-arrow-right-control:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.rt4h-arrow-icon-svg-element {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #333;
}

/* Content Card Overlay */
.fx1y-content-card-overlay-wrapper {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 450px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qm7t-card-inner-content-holder {
    display: flex;
    flex-direction: column;
}

/* Introduction Header */
.wp3z-introduction-header-section {
    margin-bottom: 10px;
}

.bv6n-intro-text-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Logo */
.js8u-brand-identity-display-area {
    margin-bottom: 15px;
}

.ek9w-logo-text-combination-element {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
}

.tz2c-mcafee-brand-text-primary {
    color: #e31e24;
}

.gf5v-plus-symbol-indicator {
    color: #e31e24;
    font-size: 24px;
}

.hq1n-ultimate-product-designation {
    color: #333;
}

/* Main Headline */
.yl7k-primary-headline-text-element {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.pd8x-highlighted-text-segment {
    color: #e31e24;
}

.nw4j-responsive-line-break-control {
    display: block;
}

/* Description */
.cz6m-description-content-block {
    margin-bottom: 30px;
}

.ux5r-primary-description-paragraph,
.ak9p-secondary-feature-list-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.ak9p-secondary-feature-list-text {
    margin-bottom: 0;
    font-weight: 500;
}

/* CTA Button */
.rw2y-cta-button-container-section {
    margin-top: 10px;
}

.vh4n-primary-action-button-element {
    background: #e31e24;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.vh4n-primary-action-button-element:hover {
    background: #c41e24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.oj1x-button-text-content {
    display: inline-block;
}

/* Progress Indicators */
.kp5z-slide-indicator-navigation-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.yq6u-progress-dot-active-state,
.fn2w-progress-dot-inactive-state {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yq6u-progress-dot-active-state {
    background: #e31e24;
    transform: scale(1.2);
}

.fn2w-progress-dot-inactive-state {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.fn2w-progress-dot-inactive-state:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fx1y-content-card-overlay-wrapper {
        width: 400px;
        right: 30px;
        padding: 35px;
    }
    
    .yl7k-primary-headline-text-element {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .mn4k-hero-section-display-module {
        height: 500px;
    }
    
    .fx1y-content-card-overlay-wrapper {
        width: 350px;
        right: 20px;
        padding: 30px;
    }
    
    .yl7k-primary-headline-text-element {
        font-size: 24px;
    }
    
    .ux5r-primary-description-paragraph,
    .ak9p-secondary-feature-list-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .qx7z-primary-banner-container-wrapper {
        padding: 10px;
    }
    
    .mn4k-hero-section-display-module {
        height: auto;
        min-height: 600px;
        flex-direction: column;
    }
    
    .fx1y-content-card-overlay-wrapper {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin: 20px;
        margin-top: -100px;
        z-index: 10;
    }
    
    .lp6q-navigation-arrow-left-control,
    .dw8s-navigation-arrow-right-control {
        width: 40px;
        height: 40px;
    }
    
    .lp6q-navigation-arrow-left-control {
        left: 15px;
    }
    
    .dw8s-navigation-arrow-right-control {
        right: 15px;
    }
    
    .nw4j-responsive-line-break-control {
        display: inline;
    }
}

@media (max-width: 480px) {
    .fx1y-content-card-overlay-wrapper {
        margin: 15px;
        padding: 25px;
    }
    
    .yl7k-primary-headline-text-element {
        font-size: 22px;
    }
    
    .ek9w-logo-text-combination-element {
        font-size: 24px;
    }
    
    .vh4n-primary-action-button-element {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .kp5z-slide-indicator-navigation-bar {
        bottom: 15px;
    }
}

/* Animation Classes */
.qm7t-card-inner-content-holder > * {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.qm7t-card-inner-content-holder > *:nth-child(1) { animation-delay: 0.1s; }
.qm7t-card-inner-content-holder > *:nth-child(2) { animation-delay: 0.2s; }
.qm7t-card-inner-content-holder > *:nth-child(3) { animation-delay: 0.3s; }
.qm7t-card-inner-content-holder > *:nth-child(4) { animation-delay: 0.4s; }
.qm7t-card-inner-content-holder > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State */
.vt5n-responsive-banner-image-asset {
    transition: opacity 0.3s ease;
}

.vt5n-responsive-banner-image-asset.loading {
    opacity: 0.7;
}


/* ====================================
qr section
==================================== */

   .xz9k4m2p8q {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .w7n3j5r8t2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 100vh;
        }

        .b4h9k6m1x7 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .q8v2n5j9r3 {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .l6p3s8k4m9 {
            position: absolute;
            top: 20%;
            right: -10%;
            background: white;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            z-index: 10;
        }

        .f2h7j9n4k8 {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 16px;
            text-align: center;
        }

        .d9m3x6v2n8 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .r5t8k2j7m4 {
            width: 60px;
            height: 32px;
            background: #4CAF50;
            border-radius: 16px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .r5t8k2j7m4::after {
            content: '';
            position: absolute;
            top: 2px;
            right: 2px;
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .y3n8k5m2j9 {
            width: 40px;
            height: 40px;
            background: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .c7x4n9m6k2 {
            flex: 1;
        }

        .a8j5n2k9m7 {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .p6k3m8j5n2 {
            font-size: 18px;
            color: #5a6c7d;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .p6k3m8j5n2 strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .h9m4k7j2n6 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .s2n7k4m9j6 {
            list-style: none;
            margin-bottom: 40px;
        }

        .s2n7k4m9j6 li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            color: #5a6c7d;
            font-size: 16px;
        }

        .s2n7k4m9j6 li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 18px;
        }

        .v8k2n5j9m4 {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .t4m7k9n2j6 {
            flex-shrink: 0;
        }

        .t4m7k9n2j6 img {
            width: 120px;
            height: 120px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
        }

        .g3j8k5n2m9 {
            flex: 1;
        }

        .g3j8k5n2m9 p {
            color: #5a6c7d;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .u7n4k8m2j5 {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .u7n4k8m2j5 img {
            width: 160px;
            height: auto;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .u7n4k8m2j5 img:hover {
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .w7n3j5r8t2 {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px;
            }

            .l6p3s8k4m9 {
                position: static;
                margin-top: 20px;
                min-width: auto;
                width: 100%;
            }

            .a8j5n2k9m7 {
                font-size: 28px;
            }

            .p6k3m8j5n2 {
                font-size: 16px;
            }

            .v8k2n5j9m4 {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }

            .t4m7k9n2j6 img {
                width: 100px;
                height: 100px;
            }

            .u7n4k8m2j5 {
                align-items: center;
            }

            .u7n4k8m2j5 img {
                width: 140px;
            }
        }

        @media (max-width: 480px) {
            .w7n3j5r8t2 {
                padding: 15px;
            }

            .a8j5n2k9m7 {
                font-size: 24px;
            }

            .l6p3s8k4m9 {
                padding: 16px 20px;
            }

            .f2h7j9n4k8 {
                font-size: 14px;
            }

            .r5t8k2j7m4 {
                width: 50px;
                height: 28px;
            }

            .r5t8k2j7m4::after {
                width: 24px;
                height: 24px;
            }

            .y3n8k5m2j9 {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }

        /* =============================================
        uro section
        ============================================= */

          .zx9k4m2p8q7w {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            min-height: 100vh;
        }

        .header_container_9x7k2m4p {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px;
            text-align: center;
        }

        .main_title_8k3n5j9r2 {
            font-size: 36px;
            font-weight: 400;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .highlight_text_7m2k9n4j {
            color: #e53e3e;
            font-weight: 600;
        }

        .toggle_wrapper_5n8k2m7j4 {
            display: inline-flex;
            background: #e2e8f0;
            border-radius: 50px;
            padding: 4px;
            margin-bottom: 60px;
        }

        .toggle_btn_3k7m2n9j5 {
            padding: 12px 24px;
            border: none;
            background: transparent;
            border-radius: 46px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            color: #666;
        }

        .toggle_btn_3k7m2n9j5.active_state_9k2m7n4j {
            background: white;
            color: #e53e3e;
            border: 2px solid #e53e3e;
            box-shadow: 0 2px 8px rgba(229, 62, 62, 0.2);
        }

        .pricing_grid_4m9k7n2j5 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 300px 1fr 1fr 1fr 1fr;
            gap: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .features_column_8n3k5m2j {
            background: #f7f7f7;
            padding: 20px;
            border-right: 1px solid #e0e0e0;
        }

        .plan_column_6k2m9n7j4 {
            padding: 20px;
            border-right: 1px solid #e0e0e0;
            position: relative;
            text-align: center;
        }

        .plan_column_6k2m9n7j4:last-child {
            border-right: none;
        }

        .top_offer_badge_2m7k9n4j {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: #e53e3e;
            color: white;
            padding: 6px 16px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 0 0 8px 8px;
        }

        .exclusive_badge_5n9k2m7j {
            position: absolute;
            top: -1px;
            right: 10px;
            background: #e53e3e;
            color: white;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 0 0 8px 8px;
        }

        .plan_header_9m4k7n2j5 {
            margin-bottom: 20px;
        }

        .plan_name_3k8n5m2j9 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .mcafee_logo_7n2k9m4j5 {
            color: #e53e3e;
            font-weight: bold;
            font-size: 16px;
        }

        .price_section_4m7k2n9j5 {
            margin-bottom: 30px;
        }

        .main_price_8k3n5m2j9 {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 4px;
        }

        .price_period_2n9k5m7j4 {
            font-size: 14px;
            color: #666;
        }

        .original_price_6k2m9n4j7 {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
            margin-right: 8px;
        }

        .savings_text_9n4k7m2j5 {
            font-size: 14px;
            color: #e53e3e;
            font-weight: 600;
        }

        .buy_button_5m8k2n9j4 {
            width: 100%;
            padding: 12px 24px;
            border: 2px solid #ccc;
            background: white;
            color: #666;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .buy_button_5m8k2n9j4.featured_btn_7k3m9n2j {
            background: #e53e3e;
            color: white;
            border-color: #e53e3e;
        }

        .buy_button_5m8k2n9j4:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .feature_category_3n8k5m2j9 {
            margin-bottom: 30px;
        }

        .category_title_6k2m9n7j4 {
            font-size: 16px;
            font-weight: 600;
            color: #4a90e2;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info_icon_9m4k7n2j5 {
            width: 16px;
            height: 16px;
            background: #4a90e2;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .feature_item_8n3k5m2j9 {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
            color: #666;
            text-align: right;
        }

        .feature_item_8n3k5m2j9:last-child {
            border-bottom: none;
        }

        .feature_value_4m7k2n9j5 {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            text-align: center;
            font-size: 14px;
        }

        .feature_value_4m7k2n9j5:last-child {
            border-bottom: none;
        }

        .check_icon_2n9k5m7j4 {
            color: #4CAF50;
            font-size: 18px;
            font-weight: bold;
        }

        .cross_icon_7k3m9n2j5 {
            color: #ccc;
            font-size: 18px;
        }

        .show_all_features_5n8k2m7j {
            color: #4a90e2;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 20px;
        }

        .footer_info_9m4k7n2j5 {
            max-width: 1400px;
            margin: 40px auto 0;
            padding: 0 20px;
            font-size: 12px;
            color: #666;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .pricing_grid_4m9k7n2j5 {
                grid-template-columns: 250px 1fr 1fr 1fr 1fr;
            }
        }

        @media (max-width: 992px) {
            .pricing_grid_4m9k7n2j5 {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .features_column_8n3k5m2j {
                display: none;
            }

            .plan_column_6k2m9n7j4 {
                border: 1px solid #e0e0e0;
                border-radius: 12px;
                margin-bottom: 20px;
            }

            .main_title_8k3n5j9r2 {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .header_container_9x7k2m4p {
                padding: 40px 15px 30px;
            }

            .main_title_8k3n5j9r2 {
                font-size: 24px;
            }

            .toggle_btn_3k7m2n9j5 {
                padding: 10px 20px;
                font-size: 14px;
            }

            .pricing_grid_4m9k7n2j5 {
                padding: 0 15px;
            }

            .main_price_8k3n5m2j9 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .main_title_8k3n5j9r2 {
                font-size: 20px;
            }

            .toggle_wrapper_5n8k2m7j4 {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .toggle_btn_3k7m2n9j5 {
                width: 100%;
                margin: 2px 0;
            }
        }




        /* ============================== */



        
        .zx9k4m2p8q7w3n5j {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
            min-height: 100vh;
        }

        .header_container_8n3k5m2j9r4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px;
            text-align: center;
        }

        .main_question_7k2m9n4j5x8 {
            font-size: 32px;
            font-weight: 400;
            color: #666;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .subtitle_response_4m7k2n9j5q3 {
            font-size: 32px;
            font-weight: 600;
            color: #333;
            margin-bottom: 50px;
        }

        .content_wrapper_9m4k7n2j5w8 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: flex-start;
        }

        .features_section_6k2m9n7j4t5 {
            background: #faf5f5;
            border-radius: 12px;
            padding: 40px;
        }

        .plan_title_3n8k5m2j9p7 {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .plan_description_5n8k2m7j4r9 {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
        }

        .features_grid_8k3n5m2j9w4 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 40px;
        }

        .feature_item_2n9k5m7j4x6 {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 16px;
            color: #333;
        }

        .feature_icon_7k3m9n2j5q8 {
            color: #e53e3e;
            font-size: 18px;
            font-weight: bold;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .pricing_card_4m7k2n9j5t3 {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }

        .card_plan_title_9m4k7n2j5w6 {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .device_count_6k2m9n7j4p5 {
            font-size: 16px;
            color: #666;
            margin-bottom: 4px;
        }

        .subscription_period_3n8k5m2j9r7 {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .price_section_8k3n5m2j9t4 {
            margin-bottom: 30px;
        }

        .current_price_7k2m9n4j5x8 {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .original_price_2n9k5m7j4q6 {
            font-size: 16px;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 4px;
        }

        .savings_amount_5n8k2m7j4w9 {
            font-size: 16px;
            color: #e53e3e;
            font-weight: 600;
        }

        .buy_button_9m4k7n2j5p3 {
            width: 100%;
            padding: 15px 30px;
            background: white;
            color: #333;
            border: 2px solid #ccc;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .buy_button_9m4k7n2j5p3:hover {
            background: #f8f9fa;
            border-color: #999;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .footer_info_6k2m9n7j4t8 {
            max-width: 1200px;
            margin: 60px auto 40px;
            padding: 0 20px;
            text-align: center;
        }

        .platform_compatibility_3n8k5m2j9r4 {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .pricing_disclaimer_8k3n5m2j9w7 {
            font-size: 12px;
            color: #666;
        }

        .disclaimer_link_7k2m9n4j5q5 {
            color: #e53e3e;
            text-decoration: none;
        }

        .disclaimer_link_7k2m9n4j5q5:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content_wrapper_9m4k7n2j5w8 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features_grid_8k3n5m2j9w4 {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .main_question_7k2m9n4j5x8,
            .subtitle_response_4m7k2n9j5q3 {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .header_container_8n3k5m2j9r4 {
                padding: 40px 15px 30px;
            }

            .content_wrapper_9m4k7n2j5w8 {
                padding: 0 15px;
            }

            .features_section_6k2m9n7j4t5 {
                padding: 30px 20px;
            }

            .pricing_card_4m7k2n9j5t3 {
                padding: 25px 20px;
            }

            .main_question_7k2m9n4j5x8,
            .subtitle_response_4m7k2n9j5q3 {
                font-size: 24px;
            }

            .current_price_7k2m9n4j5x8 {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .main_question_7k2m9n4j5x8,
            .subtitle_response_4m7k2n9j5q3 {
                font-size: 20px;
            }

            .features_section_6k2m9n7j4t5 {
                padding: 25px 15px;
            }

            .pricing_card_4m7k2n9j5t3 {
                padding: 20px 15px;
            }

            .current_price_7k2m9n4j5x8 {
                font-size: 28px;
            }
        }


        /* ================================= */


        /* Reset and base styles */


/* Main wrapper */
.qx7m-data-protection-wrapper {
  background-color: #f8f9fa;
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Container */
.k9p2-container-fluid-responsive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Grid layout */
.z8n4-content-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Text content column */
.m3v7-text-content-column {
  max-width: 100%;
}

/* Heading section */
.r5t1-heading-primary-section {
  margin-bottom: 2rem;
}

.w6y9-title-main-emphasis {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 0;
}

/* Paragraph content */
.l4s8-paragraph-content-block {
  font-size: 1.1rem;
  line-height: 1.7;
}

.d2f6-text-body-primary {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.h7k1-paragraph-spacing {
  margin-top: 1.5rem;
}

/* Text styling */
.b9x3-text-weight-semibold {
  font-weight: 600;
  color: #34495e;
}

.c5n8-text-highlight-blue {
  color: #3498db;
  font-weight: 500;
}

/* McAfee link */
.a1q4-link-mcafee-primary {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.a1q4-link-mcafee-primary:hover {
  border-bottom-color: #e74c3c;
  text-decoration: none;
}

/* Image column */
.j8u2-image-content-column {
  position: relative;
}

.p6i9-image-container-responsive {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.e3o7-image-main-display {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.e3o7-image-main-display:hover {
  transform: scale(1.02);
}

/* Responsive design */
@media (max-width: 1024px) {
  .k9p2-container-fluid-responsive {
    padding: 0 1.5rem;
  }

  .z8n4-content-grid-layout {
    gap: 3rem;
  }

  .w6y9-title-main-emphasis {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .qx7m-data-protection-wrapper {
    padding: 2rem 0;
  }

  .z8n4-content-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .w6y9-title-main-emphasis {
    font-size: 1.75rem;
  }

  .l4s8-paragraph-content-block {
    font-size: 1rem;
  }

  .k9p2-container-fluid-responsive {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .qx7m-data-protection-wrapper {
    padding: 1.5rem 0;
  }

  .w6y9-title-main-emphasis {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .z8n4-content-grid-layout {
    gap: 2rem;
  }

  .r5t1-heading-primary-section {
    margin-bottom: 1.5rem;
  }
}

/* Performance optimizations */
.e3o7-image-main-display {
  will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .e3o7-image-main-display,
  .a1q4-link-mcafee-primary {
    transition: none;
  }

  .e3o7-image-main-display:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .d2f6-text-body-primary {
    color: #000;
  }

  .c5n8-text-highlight-blue {
    color: #0066cc;
  }

  .a1q4-link-mcafee-primary {
    color: #cc0000;
  }
}



/* ================================= */


.zx9k4m2p8q7w3n5j9r {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .header_section_8n3k5m2j9r4t7 {
            text-align: center;
            padding: 60px 20px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .main_headline_7k2m9n4j5x8q3 {
            font-size: 24px;
            font-weight: 400;
            color: #666;
            line-height: 1.4;
        }

        .navigation_tabs_4m7k2n9j5q3w8 {
            background: #f5f5f5;
            border-radius: 8px;
            padding: 8px;
            margin: 40px auto;
            max-width: 800px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tab_item_9m4k7n2j5w8p3 {
            flex: 1;
            text-align: center;
            padding: 15px 10px;
            font-size: 16px;
            color: #666;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .tab_item_9m4k7n2j5w8p3.active_tab_6k2m9n7j4t5x {
            color: #333;
            font-weight: 600;
        }

        .tab_item_9m4k7n2j5w8p3.active_tab_6k2m9n7j4t5x::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #e53e3e;
        }

        .content_wrapper_3n8k5m2j9r7q4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .text_content_5n8k2m7j4w9p6 {
            padding-right: 20px;
        }

        .section_title_8k3n5m2j9t4r7 {
            font-size: 36px;
            font-weight: 400;
            color: #333;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .highlight_word_2n9k5m7j4x6q8 {
            color: #e53e3e;
            font-weight: 600;
        }

        .description_text_7k2m9n4j5x8w3 {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .link_text_9m4k7n2j5p3t8 {
            color: #e53e3e;
            text-decoration: underline;
            cursor: pointer;
        }

        .link_text_9m4k7n2j5p3t8:hover {
            text-decoration: none;
        }

        .image_container_6k2m9n7j4t5w9 {
            text-align: center;
        }

        .main_image_4m7k2n9j5q3x8 {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .features_section_3n8k5m2j9r4p7 {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature_card_8k3n5m2j9w4t7 {
            text-align: center;
            padding: 30px 20px;
        }

        .feature_icon_7k2m9n4j5x8q3 {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #e53e3e;
            border-radius: 50%;
            font-size: 32px;
            font-weight: bold;
            color: #e53e3e;
        }

        .feature_title_2n9k5m7j4x6w8 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }

        .feature_description_5n8k2m7j4w9r6 {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content_wrapper_3n8k5m2j9r7q4 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .text_content_5n8k2m7j4w9p6 {
                padding-right: 0;
                text-align: center;
            }

            .section_title_8k3n5m2j9t4r7 {
                font-size: 32px;
            }

            .features_section_3n8k5m2j9r4p7 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .navigation_tabs_4m7k2n9j5q3w8 {
                flex-direction: column;
                gap: 8px;
            }

            .tab_item_9m4k7n2j5w8p3 {
                width: 100%;
                padding: 12px;
                font-size: 14px;
            }

            .tab_item_9m4k7n2j5w8p3.active_tab_6k2m9n7j4t5x::after {
                display: none;
            }

            .tab_item_9m4k7n2j5w8p3.active_tab_6k2m9n7j4t5x {
                background: #e53e3e;
                color: white;
            }

            .header_section_8n3k5m2j9r4t7 {
                padding: 40px 15px 30px;
            }

            .main_headline_7k2m9n4j5x8q3 {
                font-size: 20px;
            }

            .content_wrapper_3n8k5m2j9r7q4 {
                padding: 40px 15px;
            }

            .section_title_8k3n5m2j9t4r7 {
                font-size: 28px;
            }

            .description_text_7k2m9n4j5x8w3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .main_headline_7k2m9n4j5x8q3 {
                font-size: 18px;
            }

            .section_title_8k3n5m2j9t4r7 {
                font-size: 24px;
            }

            .feature_card_8k3n5m2j9w4t7 {
                padding: 20px 15px;
            }

            .feature_icon_7k2m9n4j5x8q3 {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .feature_title_2n9k5m7j4x6w8 {
                font-size: 18px;
            }

            .feature_description_5n8k2m7j4w9r6 {
                font-size: 14px;
            }
        }







        /* ================================ */


        /* Reset and base styles */


/* Main wrapper with gradient background */
.x9k4-cybersecurity-hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.m7p3-gradient-background-container {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 25%, #ff4081 50%, #ff6b35 75%, #ff5722 100%);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.m7p3-gradient-background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
  z-index: 1;
}

/* Content container */
.q2w8-content-max-width-limiter {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Header section */
.l5n1-header-text-alignment {
  text-align: center;
  margin-bottom: 4rem;
}

.r8t6-primary-headline-emphasis {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.d4f9-secondary-subtitle-description {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Statistics grid */
.z3v7-statistics-grid-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
}

/* Individual stat columns */
.b6y2-stat-column-wrapper {
  text-align: center;
  max-width: 280px;
  padding: 1rem;
}

/* Icon containers */
.k1s5-icon-container-shield,
.k1s5-icon-container-trophy,
.k1s5-icon-container-network {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.k1s5-icon-container-shield:hover,
.k1s5-icon-container-trophy:hover,
.k1s5-icon-container-network:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.h9m4-icon-svg-display {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Text styling */
.c7x1-stat-title-primary {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.a5q8-stat-description-text {
  font-size: 1rem;
  color: white;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Vertical dividers */
.j4u9-vertical-divider-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
  position: relative;
}

.j4u9-vertical-divider-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}

.j4u9-vertical-divider-line::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}

/* Responsive design */
@media (max-width: 1024px) {
  .q2w8-content-max-width-limiter {
    padding: 0 1.5rem;
  }

  .z3v7-statistics-grid-container {
    gap: 2rem;
  }

  .r8t6-primary-headline-emphasis {
    font-size: 2.2rem;
  }

  .d4f9-secondary-subtitle-description {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .x9k4-cybersecurity-hero-wrapper {
    padding: 2rem 0;
  }

  .z3v7-statistics-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .j4u9-vertical-divider-line {
    display: none;
  }

  .r8t6-primary-headline-emphasis {
    font-size: 1.8rem;
  }

  .d4f9-secondary-subtitle-description {
    font-size: 1.1rem;
  }

  .l5n1-header-text-alignment {
    margin-bottom: 3rem;
  }

  .b6y2-stat-column-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .q2w8-content-max-width-limiter {
    padding: 0 1rem;
  }

  .r8t6-primary-headline-emphasis {
    font-size: 1.5rem;
  }

  .d4f9-secondary-subtitle-description {
    font-size: 1rem;
  }

  .c7x1-stat-title-primary {
    font-size: 1.3rem;
  }

  .a5q8-stat-description-text {
    font-size: 0.9rem;
  }

  .k1s5-icon-container-shield,
  .k1s5-icon-container-trophy,
  .k1s5-icon-container-network {
    width: 70px;
    height: 70px;
  }

  .h9m4-icon-svg-display {
    width: 35px;
    height: 35px;
  }
}

/* Performance optimizations */
.k1s5-icon-container-shield,
.k1s5-icon-container-trophy,
.k1s5-icon-container-network {
  will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .k1s5-icon-container-shield,
  .k1s5-icon-container-trophy,
  .k1s5-icon-container-network {
    transition: none;
  }

  .k1s5-icon-container-shield:hover,
  .k1s5-icon-container-trophy:hover,
  .k1s5-icon-container-network:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .m7p3-gradient-background-container {
    background: #d81b60;
  }

  .k1s5-icon-container-shield,
  .k1s5-icon-container-trophy,
  .k1s5-icon-container-network {
    border: 3px solid white;
  }
}

/* Print styles */
@media print {
  .m7p3-gradient-background-container {
    background: #d81b60 !important;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}




/* ====================================== */



        .zx9k4m2p8q7w3n5j9r2t {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .awards_section_8n3k5m2j9r4t7w {
            text-align: center;
            padding: 80px 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .excellence_title_7k2m9n4j5x8q3p {
            font-size: 32px;
            font-weight: 400;
            color: #666;
            margin-bottom: 40px;
            position: relative;
        }

        .laurel_left_4m7k2n9j5q3w8x {
            position: absolute;
            left: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 120px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><path d="M20 20 Q40 10 60 20 Q80 30 90 50 Q85 70 70 80 Q50 90 30 80 Q10 70 5 50 Q10 30 20 20" fill="%23f4c430" opacity="0.7"/></svg>') no-repeat center;
            background-size: contain;
        }

        .laurel_right_9m4k7n2j5w8p3t {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%) scaleX(-1);
            width: 80px;
            height: 120px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 150"><path d="M20 20 Q40 10 60 20 Q80 30 90 50 Q85 70 70 80 Q50 90 30 80 Q10 70 5 50 Q10 30 20 20" fill="%23f4c430" opacity="0.7"/></svg>') no-repeat center;
            background-size: contain;
        }

        .awards_container_6k2m9n7j4t5x9 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .award_badge_3n8k5m2j9r7q4w {
            height: 60px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
        }

        .main_content_5n8k2m7j4w9p6r {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .text_content_8k3n5m2j9t4r7w {
            padding-right: 40px;
        }

        .section_title_2n9k5m7j4x6q8p {
            font-size: 36px;
            font-weight: 400;
            color: #333;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .highlight_red_7k2m9n4j5x8w3q {
            color: #e53e3e;
            font-weight: 600;
        }

        .description_paragraph_9m4k7n2j5p3t8w {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .mcafee_link_4m7k2n9j5q3x8r {
            color: #4a90e2;
            text-decoration: underline;
        }

        .mcafee_link_4m7k2n9j5q3x8r:hover {
            text-decoration: none;
        }

        .download_buttons_6k2m9n7j4t5w9p {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .app_store_btn_3n8k5m2j9r4p7w {
            height: 50px;
            width: auto;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .app_store_btn_3n8k5m2j9r4p7w:hover {
            transform: scale(1.05);
        }

        .qr_section_8k3n5m2j9w4t7r {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .qr_code_7k2m9n4j5x8q3w {
            width: 80px;
            height: 80px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .qr_description_2n9k5m7j4x6w8p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .mobile_collage_5n8k2m7j4w9r6t {
            position: relative;
            height: 500px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8px;
            transform: rotate(5deg);
        }

        .phone_image_9m4k7n2j5w8p3x {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .phone_image_9m4k7n2j5w8p3x:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .phone_image_9m4k7n2j5w8p3x img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phone_1_4m7k2n9j5q3w8r {
            grid-column: 1;
            grid-row: 1 / 3;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .phone_2_6k2m9n7j4t5x9w {
            grid-column: 2;
            grid-row: 1;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .phone_3_3n8k5m2j9r7q4p {
            grid-column: 3;
            grid-row: 1 / 2;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .phone_4_8k3n5m2j9t4r7x {
            grid-column: 2;
            grid-row: 2 / 4;
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .phone_5_7k2m9n4j5x8w3q {
            grid-column: 1;
            grid-row: 3;
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .phone_6_2n9k5m7j4x6q8w {
            grid-column: 3;
            grid-row: 2 / 4;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .main_content_5n8k2m7j4w9p6r {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .text_content_8k3n5m2j9t4r7w {
                padding-right: 0;
                text-align: center;
            }

            .mobile_collage_5n8k2m7j4w9r6t {
                height: 400px;
                transform: rotate(0deg);
                margin: 0 auto;
                max-width: 400px;
            }

            .laurel_left_4m7k2n9j5q3w8x,
            .laurel_right_9m4k7n2j5w8p3t {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .awards_section_8n3k5m2j9r4t7w {
                padding: 60px 15px 40px;
            }

            .excellence_title_7k2m9n4j5x8q3p {
                font-size: 28px;
            }

            .section_title_2n9k5m7j4x6q8p {
                font-size: 32px;
            }

            .description_paragraph_9m4k7n2j5p3t8w {
                font-size: 16px;
            }

            .download_buttons_6k2m9n7j4t5w9p {
                flex-direction: column;
                align-items: center;
            }

            .qr_section_8k3n5m2j9w4t7r {
                flex-direction: column;
                text-align: center;
            }

            .mobile_collage_5n8k2m7j4w9r6t {
                height: 300px;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }

            .phone_1_4m7k2n9j5q3w8r {
                grid-column: 1;
                grid-row: 1 / 3;
            }

            .phone_6_2n9k5m7j4x6q8w {
                grid-column: 2;
                grid-row: 1 / 3;
            }
        }

        @media (max-width: 480px) {
            .excellence_title_7k2m9n4j5x8q3p {
                font-size: 24px;
            }

            .section_title_2n9k5m7j4x6q8p {
                font-size: 28px;
            }

            .awards_container_6k2m9n7j4t5x9 {
                gap: 10px;
            }

            .award_badge_3n8k5m2j9r7q4w {
                height: 50px;
                max-width: 100px;
            }

            .mobile_collage_5n8k2m7j4w9r6t {
                height: 250px;
            }
        }




        /* ===============================
        footer
        ============================== */



         .zx9k4m2p8q7w3n5j9r2t4 {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .footer_container_8n3k5m2j9r4t7w6 {
            background-color: #f5f5f5;
            padding: 40px 0 0;
        }

        .terms_section_7k2m9n4j5x8q3p9 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
            border-bottom: 1px solid #ddd;
        }

        .terms_title_4m7k2n9j5q3w8x2 {
            font-size: 16px;
            font-weight: 600;
            color: #666;
            margin-bottom: 20px;
        }

        .expandable_item_9m4k7n2j5w8p3t7 {
            margin-bottom: 15px;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .expand_icon_6k2m9n7j4t5x9w3 {
            color: #e53e3e;
            font-size: 18px;
            font-weight: bold;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .expandable_text_3n8k5m2j9r7q4p8 {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .link_text_8k3n5m2j9t4r7x5 {
            color: #4a90e2;
            text-decoration: underline;
        }

        .link_text_8k3n5m2j9t4r7x5:hover {
            text-decoration: none;
        }

        .social_icons_7k2m9n4j5x8w3q6 {
            position: absolute;
            top: 40px;
            right: 20px;
            display: flex;
            gap: 12px;
        }

        .social_icon_2n9k5m7j4x6q8w4 {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .social_icon_2n9k5m7j4x6q8w4:hover {
            transform: scale(1.1);
        }

        .twitter_icon_5n8k2m7j4w9r6t3 {
            background-color: #000;
        }

        .facebook_icon_9m4k7n2j5p3t8w7 {
            background-color: #1877f2;
        }

        .youtube_icon_4m7k2n9j5q3x8r2 {
            background-color: #ff0000;
        }

        .linkedin_icon_6k2m9n7j4t5w9p5 {
            background-color: #0077b5;
        }

        .rss_icon_3n8k5m2j9r4p7w8 {
            background-color: #ff6600;
        }

        .main_footer_8k3n5m2j9w4t7r6 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px;
            display: grid;
            grid-template-columns: 200px 1fr 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
        }

        .logo_section_2n9k5m7j4x6w8p3 {
            display: flex;
            align-items: flex-start;
        }

        .mcafee_logo_7k2m9n4j5q5x8w4 {
            font-size: 24px;
            font-weight: bold;
            color: #e53e3e;
            text-decoration: none;
        }

        .footer_column_9m4k7n2j5w8p3x7 {
            display: flex;
            flex-direction: column;
        }

        .column_title_4m7k2n9j5q3w8r5 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .footer_link_6k2m9n7j4t5x9w2 {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.2s ease;
        }

        .footer_link_6k2m9n7j4t5x9w2:hover {
            color: #e53e3e;
        }

        .superscript_3n8k5m2j9r7q4w8 {
            font-size: 10px;
            vertical-align: super;
        }

        .bottom_footer_8k3n5m2j9t4r7w5 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #ddd;
        }

        .language_selector_7k2m9n4j5x8q3p6 {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .globe_icon_2n9k5m7j4x6w8r4 {
            font-size: 16px;
        }

        .language_link_5n8k2m7j4w9p6t3 {
            color: #4a90e2;
            text-decoration: underline;
        }

        .copyright_text_9m4k7n2j5p3t8w6 {
            font-size: 12px;
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .main_footer_8k3n5m2j9w4t7r6 {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .logo_section_2n9k5m7j4x6w8p3 {
                grid-column: 1 / -1;
                justify-content: center;
                margin-bottom: 20px;
            }

            .social_icons_7k2m9n4j5x8w3q6 {
                position: static;
                justify-content: center;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .terms_section_7k2m9n4j5x8q3p9 {
                padding: 0 15px 30px;
            }

            .main_footer_8k3n5m2j9w4t7r6 {
                grid-template-columns: 1fr;
                padding: 40px 15px 30px;
                text-align: center;
            }

            .footer_column_9m4k7n2j5w8p3x7 {
                margin-bottom: 30px;
            }

            .bottom_footer_8k3n5m2j9t4r7w5 {
                flex-direction: column;
                gap: 15px;
                padding: 20px 15px 30px;
                text-align: center;
            }

            .social_icons_7k2m9n4j5x8w3q6 {
                order: -1;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .expandable_item_9m4k7n2j5w8p3t7 {
                flex-direction: column;
                gap: 8px;
            }

            .social_icons_7k2m9n4j5x8w3q6 {
                gap: 8px;
            }

            .social_icon_2n9k5m7j4x6q8w4 {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .mcafee_logo_7k2m9n4j5q5x8w4 {
                font-size: 20px;
            }
        }
   












        