    .k19-specialist-hero {
        position: relative;
        width: 100%;
        min-height: 500px;
        display: flex;
        overflow: hidden;
        background: #f5f5f7;
    }
    
    .k19-specialist-hero__left {
        position: relative;
        width: 50%;
        min-height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px;
        z-index: 2;
        
    }
    
    .k19-specialist-hero__left::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    
    .k19-specialist-hero__accent {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 80px;
        background: #c41e3a;
        z-index: 3;
    }
    
    .k19-specialist-hero__content {
        position: relative;
        z-index: 2;
        color: #fff;
    }
    
    .k19-specialist-hero__name {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    
    .k19-specialist-hero__description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
        opacity: 0.95;
        max-width: 500px;
    }
    
    .k19-specialist-hero__button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #c41e3a;
        color: #fff;
        padding: 16px 32px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    
    .k19-specialist-hero__button:hover {
        background: #a01830;
        transform: translateX(5px);
    }
    
    .k19-specialist-hero__button svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }
    
    .k19-specialist-hero__button:hover svg {
        transform: translateX(3px);
    }
    
    .k19-specialist-hero__right {
        width: 50%;
        background: #f5f5f7;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .k19-specialist-hero__portrait {
        max-width: 100%;
        max-height: 500px;
        object-fit: contain;
        object-position: center top;
    }
    
    .k19-specialist-hero__bottom-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 6px;
        background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    }
    
    @media (max-width: 992px) {
        .k19-specialist-hero {
            flex-direction: column;
        }
        
        .k19-specialist-hero__left,
        .k19-specialist-hero__right {
            width: 100%;
        }
        
        .k19-specialist-hero__left {
            min-height: 500px;
            padding: 40px 30px;
        }
        
        .k19-specialist-hero__name {
            font-size: 32px;
        }
        
        .k19-specialist-hero__description {
            font-size: 16px;
        }
        

        
        .k19-specialist-hero__portrait {
            max-height: 500px;
        }
        
        .k19-specialist-hero__bottom-line {
            width: 100%;
        }
    }
    
    @media (max-width: 576px) {
        .k19-specialist-hero__left {
            padding: 30px 20px;
            min-height: 400px;
        }
        
        .k19-specialist-hero__name {
            font-size: 26px;
        }
        
        .k19-specialist-hero__description {
            font-size: 14px;
            margin-bottom: 30px;
        }
        
        .k19-specialist-hero__button {
            padding: 14px 24px;
            font-size: 13px;
        }
    }