.rr-0e1af5e4-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    position: relative;
    width: 100%;
}

.rr-0e1af5e4-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.rr-0e1af5e4-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    z-index: 2;
}

.rr-0e1af5e4-icon-wrap i {
    font-size: 24px;
}

.rr-0e1af5e4-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.rr-0e1af5e4-content {
    margin-top: 10px;
}

.rr-0e1af5e4-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rr-0e1af5e4-num {
    font-weight: 700;
    font-size: 16px;
}

.rr-0e1af5e4-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.rr-0e1af5e4-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Connection line */
.rr-0e1af5e4-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px + 20px);
    border-top: 2px dashed #14a8b9;
    z-index: 1;
}

/* Responsiveness */
@media (max-width: 991px) {
    .rr-0e1af5e4-container {
        flex-wrap: wrap;
        gap: 30px;
    }
    .rr-0e1af5e4-step {
        flex: 0 0 calc(50% - 15px);
    }
    .rr-0e1af5e4-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .rr-0e1af5e4-step {
        flex: 0 0 100%;
    }
}
