/* Process Section - specyficzne style */
.process {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, white, var(--medical-50));
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
}

.process-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 16rem;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    display: flex;
    gap: 1rem;
}

.step-number {
    background-color: var(--medical-100);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--medical-700);
}

.check-feature {
    display: flex;
    align-items: center;
    color: var(--accent-600);
    font-weight: 500;
    margin-top: 1.5rem;
}

.check-feature svg {
    margin-right: 0.5rem;
}

@media (min-width: 1024px) {
    .process-step {
        flex-direction: row;
        align-items: center;
    }

    .process-step.reverse {
        flex-direction: row-reverse;
    }

    .process-image,
    .process-content {
        width: 50%;
    }
}