.process-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: start;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.process-step-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.process-step-number {
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-bottom: -15px;
}

.process-step-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 0 10px rgba(0,0,0,0.02);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step-icon {
    font-size: 40px;
    line-height: 1;
}

.process-step-icon svg {
    width: 40px;
    height: 40px;
}

.process-step-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px; /* Increased default size */
    color: #999;
}

.process-step-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    flex-grow: 1;
}

.process-step-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.process-step-divider {
    height: 2px;
    width: 20px;
    margin: 0 auto 15px;
}

.process-step-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .process-steps-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px 15px;
    }
    .process-step-item:nth-child(3) .process-step-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-steps-wrapper {
        grid-template-columns: 1fr !important;
    }
    .process-step-arrow {
        display: none;
    }
}