    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');
    .nazsell-wrap { font-family: 'Poppins', sans-serif !important; color: #111; max-width:100%; overflow-x:hidden; }
    
    .nazsell-hero {
        display: flex; align-items: center; justify-content: space-between;
        padding: 100px 5%; max-width: 1300px; margin: 0 auto; gap: 50px;
    }
    .nazsell-hero-text { flex: 1 1 50%; }
    .nazsell-hero-text h1 { font-size: 52px; font-weight: 800; line-height: 1.2; color: #111; margin:0; }
    .nazsell-hero-text h1 span { color: #E63946; }
    .nazsell-hero-text p { font-size: 18px; color: #666; margin: 25px 0 35px; max-width: 480px; line-height: 1.6; }
    
    .nazsell-btn-group {
        display: flex;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
    }
    .nazsell-btn {
        background: #E63946; color: #fff !important; padding: 16px 32px; border-radius: 8px;
        text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; border:none;
        text-align: center;
    }
    .nazsell-btn:hover { background: #d62839; }

    .nazsell-btn-outline {
        background: transparent; color: #111 !important; padding: 16px 32px; border-radius: 8px;
        text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; 
        border: 2px solid #ddd; text-align: center;
    }
    .nazsell-btn-outline:hover { border-color: #111; background: #f9f9f9; }

    .nazsell-hero-img { flex: 1 1 50%; position: relative; min-height: 450px; }
    .nazsell-red-bg {
        position: absolute; top: 0; right: -5%; width: 500px; height: 450px;
        background: #E63946; clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%); z-index: 1;
    }
    .nazsell-avatars { position: absolute; z-index: 2; width: 100%; height: 100%; top:0; right:0; }
    .nazsell-avatars img {
        width: 75px; height: 75px; border-radius: 50%; border: 4px solid #fff; object-fit: cover;
        position: absolute; box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .avatar1 { top: 15%; right: 55%; } 
    .avatar2 { top: 8%; right: 20%; }
    .avatar3 { top: 45%; right: 8%; }
    .avatar4 { top: 35%; right: 38%; }
    .avatar5 { top: 68%; right: 25%; }
    .avatar6 { top: 60%; right: 50%; }

    .nazsell-logos { text-align: center; padding: 60px 5%; border-top: 1px solid #eee; max-width:1300px; margin:0 auto; }
    .nazsell-logos p { color: #999; font-size: 14px; margin-bottom: 25px; }
    .nazsell-logos .logo-row { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; font-weight:600; color:#aaa; }

    @media(max-width: 992px){
        .nazsell-hero { flex-direction: column; text-align: center; padding: 60px 5%; }
        .nazsell-hero-text h1 { font-size: 38px; }
        .nazsell-hero-text p { margin: 25px auto 35px; }
        .nazsell-btn-group { justify-content: center; }
        .nazsell-hero-img { display:none; } /* Mobile pe image hide */
    }

   