.work-process {
    background-color: var(--light-bg-alt);
    position: relative;
}

.dark-mode .work-process {
    background-color: var(--dark-bg-alt);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), #00a1ff);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.step-content {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-light);
    flex-grow: 1;
    transition: var(--transition);
}

.dark-mode .step-content {
    background-color: var(--dark-bg-alt);
    box-shadow: var(--shadow-dark);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dark-mode .step-content:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.dark-mode .step-content h3 {
    color: var(--dark-text);
}

.step-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--primary-color), rgba(0, 136, 204, 0.2));
    z-index: 0;
}

.process-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.process-illustration img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.dark-mode .process-illustration img {
    box-shadow: var(--shadow-dark);
}

.process-illustration img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .process-illustration img:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}