/* БЛОК - КАК ПРОХОДИТ ОТБОР ПРОЕКТОВ */
.project-selection-block {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.project-selection-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.project-selection-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #212529;
    margin: 0 auto 15px;
    line-height: 1.2;
}

.project-selection-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.project-selection-steps {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    background: white;
    border-radius: 24px;
    padding: 25px 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    margin-bottom: 20px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #d2d8e0;
}

.step-number {
    width: 45px;
    height: 45px;
    background: #0D96F7;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

.step-users {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    flex-shrink: 0;
}

.user-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
}

.project-selection-footer {
    margin-top: 40px;
}

.selection-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.selection-button {
    background: #0D96F7;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    white-space: nowrap;
}

.selection-button:hover {
    background: #0069e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.selection-text {
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 992px) {
    .step-item {
        padding: 20px 25px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .step-text {
        font-size: 16px;
    }
    
    .user-icon {
        width: 18px;
        height: 18px;
    }
    
    .selection-container {
        gap: 10px;
    }
    
    .selection-button {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .selection-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .project-selection-content h2 {
        font-size: 32px;
    }
    
    .project-selection-subtitle {
        font-size: 16px;
    }
    
    .step-item {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        margin: 20px;
    }
    
    .step-number {
        margin: 0 0 15px 0;
    }
    
    .step-users {
        margin-left: 0;
        margin-top: 15px;
        justify-content: flex-start;
    }
    
    .selection-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .selection-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .project-selection-content h2 {
        font-size: 28px;
    }
    
    .step-text {
        font-size: 15px;
    }
    
    .user-icon {
        width: 16px;
        height: 16px;
    }
    
    .step-users {
        gap: 6px;
    }
    
    .selection-button {
        font-size: 15px;
        padding: 9px 20px;
    }
    
    .selection-text {
        font-size: 15px;
    }
}