.process-steps-container {
    width: 100%;
}

.process-steps-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.process-step-item {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 0 15px;
}

/* The connecting line for desktop */
.process-step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px; /* Default based on 80px circle */
    left: 50%;
    width: 100%;
    height: 1px; /* very thin line like screenshot */
    background-color: #666;
    z-index: 1;
}

.process-step-icon-wrapper {
    position: relative;
    z-index: 2; /* keep above the line */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #666;
    background-color: #f4f3ef; /* Important to hide the line behind it */
    margin-bottom: 20px;
}

.process-step-icon i {
    font-size: 32px;
    color: #333;
}
.process-step-icon svg {
    width: 32px;
    fill: #333;
}

.process-step-number {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.process-step-title {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.process-step-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    max-width: 90%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .process-steps-items {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step-item {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .process-step-item:not(:last-child)::after {
        display: none; /* Hide horizontal line */
    }
}
