    /* ========== BLACK FRIDAY THEME - COMPREHENSIVE CSS ========== */
    :root {
        --bf-dark: #0F0F0F;
        --bf-darker: #000000;
        --bf-accent: #FF2D2D;
        --bf-gold: #FFD700;
        --bf-white: #FFFFFF;
        --bf-gray-light: #F5F5F5;
        --bf-gray-dark: #1A1A1A;
        --bf-text-primary: #FFFFFF;
        --bf-text-secondary: #E0E0E0;
    }

    /* Black Friday Premium Banner - Creative Redesign */
    .bf-premium-banner {
        position: relative;
        background: linear-gradient(135deg, #000000 0%, #1a0a0a 25%, #0a0a1a 50%, #1a0a0a 75%, #000000 100%);
        padding: 80px 20px 60px;
        overflow: hidden;
        margin-bottom: 50px;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(255, 45, 45, 0.3), inset 0 0 100px rgba(255, 45, 45, 0.05);
        border: 2px solid rgba(255, 45, 45, 0.2);
    }

    /* Animated Background Particles */
    .bf-bg-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .bf-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--bf-accent);
        border-radius: 50%;
        opacity: 0.6;
        animation: bf-particle-float 15s infinite ease-in-out;
    }

    .bf-particle:nth-child(1) {
        left: 10%;
        top: 20%;
        animation-delay: 0s;
        animation-duration: 12s;
    }

    .bf-particle:nth-child(2) {
        left: 80%;
        top: 60%;
        animation-delay: 2s;
        animation-duration: 18s;
    }

    .bf-particle:nth-child(3) {
        left: 50%;
        top: 80%;
        animation-delay: 4s;
        animation-duration: 15s;
    }

    .bf-particle:nth-child(4) {
        left: 30%;
        top: 40%;
        animation-delay: 1s;
        animation-duration: 20s;
    }

    .bf-particle:nth-child(5) {
        left: 70%;
        top: 10%;
        animation-delay: 3s;
        animation-duration: 14s;
    }

    @keyframes bf-particle-float {
        0%, 100% {
            transform: translateY(0) translateX(0) scale(1);
            opacity: 0.3;
        }
        25% {
            transform: translateY(-30px) translateX(20px) scale(1.2);
            opacity: 0.8;
        }
        50% {
            transform: translateY(-60px) translateX(-15px) scale(0.8);
            opacity: 0.5;
        }
        75% {
            transform: translateY(-30px) translateX(10px) scale(1.1);
            opacity: 0.7;
        }
    }

    .bf-premium-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            repeating-linear-gradient(90deg, rgba(255, 45, 45, 0.05) 0px, rgba(255, 45, 45, 0.05) 1px, transparent 1px, transparent 20px),
            repeating-linear-gradient(0deg, rgba(255, 215, 0, 0.03) 0px, rgba(255, 215, 0, 0.03) 1px, transparent 1px, transparent 20px);
        pointer-events: none;
        animation: bf-pattern-move 20s linear infinite;
    }

    @keyframes bf-pattern-move {
        0% { transform: translate(0, 0); }
        100% { transform: translate(20px, 20px); }
    }

    .bf-banner-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .bf-banner-left {
        display: flex;
        flex-direction: column;
    }

    .bf-badge-container {
        margin-bottom: 30px;
    }

    .bf-countdown-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, var(--bf-accent) 0%, #FF1A1A 50%, var(--bf-accent) 100%);
        background-size: 200% 200%;
        color: var(--bf-white);
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        width: fit-content;
        box-shadow: 0 8px 30px rgba(255, 45, 45, 0.5), 0 0 20px rgba(255, 45, 45, 0.3);
        animation: bf-badge-shimmer 3s ease-in-out infinite, bf-pulse 2s ease-in-out infinite;
        position: relative;
        overflow: hidden;
    }

    .bf-badge-icon {
        font-size: 20px;
        animation: bf-icon-spin 2s linear infinite;
    }

    .bf-badge-text {
        position: relative;
        z-index: 1;
    }

    .bf-badge-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        animation: bf-pulse-ring 2s ease-out infinite;
        border-radius: 50px;
    }

    @keyframes bf-badge-shimmer {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes bf-icon-spin {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(-15deg); }
        75% { transform: rotate(15deg); }
    }

    @keyframes bf-pulse-ring {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 1;
        }
        100% {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

    @keyframes bf-pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 45, 45, 0.3); }
        50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 45, 45, 0.5); }
    }

    .bf-title-wrapper {
        margin-bottom: 25px;
    }

    .bf-banner-title {
        margin: 0;
        line-height: 1.1;
        font-weight: 900;
    }

    .bf-title-line1 {
        display: block;
        font-size: 42px;
        color: var(--bf-white);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 8px;
        text-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
        animation: bf-title-glow 3s ease-in-out infinite;
    }

    .bf-title-line2 {
        display: block;
        margin: 12px 0;
    }

    .bf-title-gradient {
        display: inline-block;
        font-size: 72px;
        background: linear-gradient(135deg, var(--bf-accent) 0%, var(--bf-gold) 50%, var(--bf-accent) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: bf-gradient-shift 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(255, 45, 45, 0.8);
        filter: drop-shadow(0 0 10px rgba(255, 45, 45, 0.5));
    }

    .bf-title-off {
        display: inline-block;
        font-size: 48px;
        color: var(--bf-white);
        margin-left: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .bf-title-line3 {
        display: block;
        font-size: 24px;
        color: var(--bf-text-secondary);
        font-weight: 500;
        margin-top: 12px;
        letter-spacing: 0.5px;
    }

    @keyframes bf-title-glow {
        0%, 100% { text-shadow: 0 0 20px rgba(255, 45, 45, 0.5); }
        50% { text-shadow: 0 0 30px rgba(255, 45, 45, 0.8), 0 0 40px rgba(255, 45, 45, 0.4); }
    }

    @keyframes bf-gradient-shift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .bf-banner-subtitle {
        font-size: 18px;
        color: var(--bf-text-secondary);
        margin: 0 0 35px 0;
        line-height: 1.7;
        font-weight: 400;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .bf-subtitle-icon {
        font-size: 24px;
        flex-shrink: 0;
        animation: bf-icon-bounce 2s ease-in-out infinite;
    }

    @keyframes bf-icon-bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }


    /* Stats Container - New Design */
    .bf-stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .bf-stat-card {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 14px 16px;
        border-radius: 16px;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        min-width: 0;
    }

    .bf-stat-content {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .bf-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .bf-stat-card:hover::before {
        left: 100%;
    }

    .bf-stat-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--bf-accent);
        box-shadow: 0 10px 30px rgba(255, 45, 45, 0.3);
    }

    .bf-stat-primary {
        border-color: rgba(255, 45, 45, 0.3);
    }

    .bf-stat-secondary {
        border-color: rgba(255, 215, 0, 0.3);
    }

    .bf-stat-tertiary {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .bf-stat-icon {
        font-size: 32px;
        width: 38px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
        animation: bf-stat-icon-float 3s ease-in-out infinite;
        overflow: hidden;
    }

    .bf-stat-car-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .bf-stat-primary .bf-stat-icon {
        background: linear-gradient(135deg, var(--bf-accent), #FF1A1A);
        box-shadow: 0 8px 20px rgba(255, 45, 45, 0.4);
    }

    .bf-stat-secondary .bf-stat-icon {
        background: linear-gradient(135deg, var(--bf-gold), #FFA500);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }

    .bf-stat-tertiary .bf-stat-icon {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }


    .bf-stat-number {
        font-size: 28px;
        font-weight: 900;
        color: var(--bf-white);
        margin-bottom: 3px;
        line-height: 1.1;
        text-shadow: 0 0 10px rgba(255, 45, 45, 0.5);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .bf-stat-card.bf-stat-tertiary .bf-stat-number {
        font-size: 18px;
        line-height: 1.2;
    }

    .bf-stat-label {
        font-size: 11px;
        color: var(--bf-text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-weight: 600;
    }

    @keyframes bf-stat-icon-float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(5deg); }
    }

    .bf-banner-right {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    /* Mega Discount Badge - Creative Design */
    .bf-mega-discount {
        position: relative;
        width: 280px;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bf-discount-ring {
        position: absolute;
        border-radius: 50%;
        border: 3px solid;
        animation: bf-ring-pulse 2s ease-in-out infinite;
    }

    .bf-ring-1 {
        width: 280px;
        height: 280px;
        border-color: var(--bf-accent);
        opacity: 0.6;
        animation-delay: 0s;
    }

    .bf-ring-2 {
        width: 240px;
        height: 240px;
        border-color: var(--bf-gold);
        opacity: 0.4;
        animation-delay: 0.3s;
    }

    .bf-ring-3 {
        width: 200px;
        height: 200px;
        border-color: var(--bf-accent);
        opacity: 0.3;
        animation-delay: 0.6s;
    }

    .bf-discount-center {
        position: relative;
        z-index: 10;
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, var(--bf-darker) 0%, #1a0a0a 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 4px solid var(--bf-accent);
        box-shadow: 0 0 40px rgba(255, 45, 45, 0.6), inset 0 0 30px rgba(255, 45, 45, 0.1);
    }

    .bf-discount-main {
        font-size: 64px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--bf-accent) 0%, var(--bf-gold) 50%, var(--bf-accent) 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 4px;
        animation: bf-gradient-shift 3s ease-in-out infinite;
    }

    .bf-discount-label {
        font-size: 14px;
        color: var(--bf-gold);
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .bf-discount-sub {
        font-size: 10px;
        color: var(--bf-text-secondary);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

    @keyframes bf-ring-pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.6;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.3;
        }
    }

    /* Car Illustration */
    .bf-car-illustration {
        position: relative;
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bf-car-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 45, 45, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        animation: bf-glow-pulse 3s ease-in-out infinite;
    }

    .bf-car-icon {
        position: relative;
        z-index: 2;
        width: 380px;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: bf-car-bounce 2s ease-in-out infinite;
    }

    .bf-car-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.5)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
        animation: bf-car-shine 3s ease-in-out infinite;
    }

    @keyframes bf-car-shine {
        0%, 100% {
            filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.5)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
        }
        50% {
            filter: drop-shadow(0 0 30px rgba(255, 45, 45, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
        }
    }

    .bf-sparkles {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

    .bf-sparkle {
        position: absolute;
        font-size: 24px;
        animation: bf-sparkle-float 3s ease-in-out infinite;
    }

    .bf-sparkle:nth-child(1) {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
    }

    .bf-sparkle:nth-child(2) {
        top: 60%;
        right: 15%;
        animation-delay: 1s;
    }

    .bf-sparkle:nth-child(3) {
        bottom: 15%;
        left: 30%;
        animation-delay: 2s;
    }

    @keyframes bf-glow-pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.2); opacity: 0.8; }
    }

    @keyframes bf-car-bounce {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(5deg); }
    }

    @keyframes bf-sparkle-float {
        0%, 100% {
            transform: translateY(0) scale(1);
            opacity: 0.7;
        }
        50% {
            transform: translateY(-20px) scale(1.3);
            opacity: 1;
        }
    }

    /* Wave Decoration */
    .bf-wave-decoration {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        overflow: hidden;
        z-index: 1;
    }

    .bf-wave-decoration svg {
        width: 100%;
        height: 100%;
    }

    /* Hide original certified banner */
    .certified-banner {
        display: none;
    }

    /* Page Content Styling */
    .explore__wrapper .top {
        margin-top: 0;
    }

    .explore__wrapper .top h1 {
        color: var(--bf-white);
        font-size: 32px;
        font-weight: 700;
    }

    .explore__wrapper .top p {
        color: var(--bf-text-secondary);
    }

    /* Quick Filter Section - Black Friday Theme with Animated Background */
    .quick-filter-section {
        position: relative;
        background: transparent;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 30px;
        border: none;
        overflow: visible;
        box-shadow: 0 4px 15px rgba(255, 45, 45, 0.3), 0 2px 8px rgba(255, 45, 45, 0.2);
    }

    .searchable-input {
        background: white !important;
        border: 2px solid #E5E5E5 !important;
        color: var(--bf-dark) !important;
    }

    .searchable-input:focus {
        border-color: #E5E5E5 !important;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
    }

    .searchable-input::placeholder {
        color: rgba(0, 0, 0, 0.5) !important;
    }

    .dropdown-options {
        background: white !important;
        border-color: var(--bf-accent) !important;
    }

    .option {
        color: var(--bf-dark) !important;
    }

    .option:hover {
        background-color: rgba(255, 45, 45, 0.1) !important;
    }

    .option.selected {
        background: rgba(255, 45, 45, 0.2) !important;
        color: var(--bf-accent) !important;
    }

    /* Car Cards - Black Friday Theme with Red Shadow */
    .car__element {
        position: relative;
        box-shadow: 0 4px 15px rgba(255, 45, 45, 0.3), 0 2px 8px rgba(255, 45, 45, 0.2);
        transition: all 0.3s ease;
    }

    .car__element:hover {
        box-shadow: 0 8px 25px rgba(255, 45, 45, 0.4), 0 4px 12px rgba(255, 45, 45, 0.3);
        transform: translateY(-4px);
    }

    .bf-promo-tag {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, var(--bf-accent), #FF1A1A);
        color: var(--bf-white);
        padding: 8px 16px;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
        box-shadow: 0 8px 20px rgba(255, 45, 45, 0.3);
    }

    .bf-discount-label {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: var(--bf-gold);
        color: var(--bf-darker);
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
    }

    /* Load More Button - Black Friday Theme */
    .loadmore {
        background: linear-gradient(135deg, var(--bf-accent), #FF1A1A) !important;
        color: var(--bf-white) !important;
        box-shadow: 0 8px 25px rgba(255, 45, 45, 0.3);
        transition: all 0.3s ease;
    }

    .loadmore:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 45, 45, 0.5);
    }



    /* Responsive */
    @media (max-width: 1024px) {


        .bf-premium-banner {
            padding: 60px 20px 50px;
        }

        .bf-banner-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .bf-title-line1 {
            font-size: 36px;
        }

        .bf-title-gradient {
            font-size: 56px;
        }

        .bf-title-off {
            font-size: 38px;
        }

        .bf-title-line3 {
            font-size: 20px;
        }

        .bf-stats-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .bf-mega-discount {
            width: 240px;
            height: 240px;
        }

        .bf-ring-1 {
            width: 240px;
            height: 240px;
        }

        .bf-ring-2 {
            width: 200px;
            height: 200px;
        }

        .bf-ring-3 {
            width: 160px;
            height: 160px;
        }

        .bf-discount-center {
            width: 150px;
            height: 150px;
        }

        .bf-discount-main {
            font-size: 52px;
        }

        .bf-car-illustration {
            width: 320px;
            height: 320px;
        }

        .bf-car-icon {
            width: 300px;
            height: 180px;
        }
    }

    @media (max-width: 768px) {


        .bf-premium-banner {
            padding: 30px 15px 30px;
            margin-bottom: 30px;
        }

        .bf-banner-content {
            gap: 25px;
        }

        .bf-badge-container {
            margin-bottom: 20px;
        }

        .bf-countdown-badge {
            padding: 12px 20px;
            font-size: 13px;
        }

        .bf-title-line1 {
            font-size: 24px;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .bf-title-gradient {
            font-size: 36px;
            display: block;
            margin-bottom: 6px;
        }

        .bf-title-off {
            font-size: 24px;
            margin-left: 0;
            display: block;
        }

        .bf-title-line3 {
            font-size: 14px;
            margin-top: 8px;
        }

        .bf-banner-subtitle {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .bf-stats-container {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .bf-stat-card {
            padding: 10px 12px;
            gap: 10px;
        }

        .bf-stat-icon {
            width: 40px;
            height: 40px;
            font-size: 20px;
            flex-shrink: 0;
        }

        .bf-stat-number {
            font-size: 20px;
        }

        .bf-stat-card.bf-stat-tertiary .bf-stat-number {
            font-size: 14px;
        }

        .bf-stat-label {
            font-size: 10px;
        }

        .bf-mega-discount {
            display: none;
        }

        .bf-car-illustration {
            width: 280px;
            height: 280px;
            margin: 0 auto;
        }

        .bf-car-icon {
            width: 260px;
            height: 150px;
        }

        .bf-sparkle {
            font-size: 20px;
        }
    }

    /* Original Certified Banner Styles (Hidden) */
    .certified-banner {
        display: none;
    }

    .certified-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .certified-banner-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 30px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .certified-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .certified-badge img {
        width: 60px;
        height: 60px;
        filter: brightness(0) invert(1);
    }

    .certified-badge span {
        color: white;
        font-weight: 700;
        font-size: 14px;
        text-align: center;
        line-height: 1.2;
    }

    .certified-info h2 {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }

    .certified-info > p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        margin: 0 0 20px 0;
    }

    .certified-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .certified-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        font-size: 14px;
        font-weight: 500;
    }

    .certified-features svg {
        flex-shrink: 0;
        color: #4ade80;
    }

    .certified-stats {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .stat-number {
        color: white;
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        font-weight: 500;
    }

    @media (max-width: 1024px) {
        .certified-banner-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .certified-badge {
            flex-direction: row;
            justify-content: center;
        }

        .certified-badge img {
            width: 50px;
            height: 50px;
        }

        .certified-stats {
            flex-direction: row;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .certified-banner {
            padding: 20px;
        }

        .certified-info h2 {
            font-size: 22px;
        }

        .certified-info > p {
            font-size: 14px;
        }

        .certified-features {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .certified-features li {
            font-size: 13px;
        }

        .stat-number {
            font-size: 24px;
        }

        .stat-label {
            font-size: 12px;
        }
    }
