#process {
    padding: 100px 0;
    background: #fff;
}

.process-row {
    position: relative;
    margin-top: 30px;
}

.process-step {
    position: relative;
    margin-top: 15px;
}

.process-icon-wrapper {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.process-icon {
    width: 4rem;
    height: 4rem;
    background: #00569e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #00569e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid #00569e;
}

/* Connecting line */
.process-step::after {
    content: "";
    position: absolute;
    top: 36px;
    width: calc(100% - 6rem);
    left: calc(50% + 2rem);
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

/* Remove line on mobile */
@media (max-width: 767px) {
    .process-step::after {
        display: none;
    }

    .process-step {
        margin-bottom: 45px;
    }
}

@media (max-width: 992px) {
    .process-step::after {
        display: none;
    }
}

#process h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

#process p {
    color: #555;
    margin: 15px 0;
}