.hrprof-specialheading,
.hrprof-specialheading h1 {
    display: inline;
    color: #2b2b2b;
    font-size: 40px;
    font-family: 'Manrope',Arial,sans-serif;
    line-height: 1.2em;
    font-weight: 700;
}

.hrprof-specialheading h1 {
    color: rgb(193, 13, 13);
}

@media screen and (max-width: 479px) {
.hrprof-specialheading,
.hrprof-specialheading h1 {
    white-space: normal;
    font-size: 20px;
}
}


/*Стили для блока почему мы*/
    .why-tabs-block {
        font-family: 'Manrope', system-ui, -apple-system, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 20px;
        background-color: #fff;
    }

    .why-tabs-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .why-tabs-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 12px;
        color: #1d1d1f;
    }

    .why-tabs-header p {
        font-size: 16px;
        color: #666;
    }

    .tabs-navigation {
        display: flex;
        gap: 8px;
        margin-bottom: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        padding: 14px 24px;
        border: 1px solid #e0e0e0;
        background: #fff;
        border-radius: 8px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 500;
        color: #666;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .tab-button:hover {
        border-color: #c10d0d;
        color: #c10d0d;
    }

    .tab-button.active {
        background: #c10d0d;
        border-color: #c10d0d;
        color: #fff;
    }

    .tab-button svg {
        width: 20px;
        height: 20px;
    }

    .tabs-content {
        position: relative;
        min-height: 280px;
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    .tab-panel.active {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .tab-icon-large {
        flex-shrink: 0;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #e0e0e0;
    }

    .tab-icon-large svg {
        width: 56px;
        height: 56px;
        stroke: #c10d0d;
        stroke-width: 1.5;
    }

    .tab-text {
        flex: 1;
    }

    .tab-text h3 {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 16px;
        color: #1d1d1f;
        line-height: 1.2;
    }

    .tab-text p {
        font-size: 16px;
        color: #666;
        margin: 0 0 20px;
        line-height: 1.6;
    }

    .tab-features {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .tab-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: #333;
    }

    .tab-feature-item:before {
        content: "✓";
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        background: #c10d0d;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .why-tabs-header h2 {
            font-size: 28px;
        }

        .tab-button {
            padding: 12px 18px;
            font-size: 14px;
        }

        .tab-panel.active {
            flex-direction: column;
            gap: 24px;
        }

        .tab-icon-large {
            width: 100px;
            height: 100px;
        }

        .tab-icon-large svg {
            width: 48px;
            height: 48px;
        }

        .tab-text h3 {
            font-size: 22px;
        }

        .tabs-content {
            min-height: 400px;
        }
    }
/*Конец стилей для блока почему мы*/



