.process {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 20px;
}

.process-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-image.lang-ru img {
    object-fit: cover;
}

.process-image.lang-eng img {
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-title {
    font-size: 2.5rem;
    color: #0761b0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.process-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
}

.results-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.results-title {
    font-size: 1.8rem;
    color: #0761b0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.results-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3498db;
}

.results-list {
    list-style: none;
    padding: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.result-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.result-bullet {
    min-width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 15px;
}

.result-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
}

@media (max-width: 768px) {
    .process-image {
        height: 300px;
    }

    .process-title {
        font-size: 2rem;
    }

    .results-section {
        padding: 25px;
    }
}