.mobile_process_box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.mobile_process_box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mobile_steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile_step {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #484848;
}

.mobile_step span {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #ff5a5f;
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.mobile_step strong {
  font-size: 13px;
  font-weight: 600;
}

.process_vertical{
    padding: 25px 20px;
    border-radius: 12px;
    position: sticky;
    top: 90px;
}
.step_item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}
.step_item:before{
    content: "";
    position: absolute;
    left: 14px;
    top: 30px;
    width: 2px;
    height: 100%;
    background: #d0d7ff;
}
.step_item:last-child:before{
    display: none;
}
.step_circle{
    width: 32px;
    height: 32px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(13,110,253,0.3);
}
.step_content h6{
    margin-bottom: 5px;
    font-weight: 600;
}
.step_content p{
    font-size: 13px;
    color: #666;
    margin: 0;
}

.mobile_process_more {
    font-size: 13px;
    font-weight: 600;
}
.process_note{
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
    border-top: 1px solid #eee;
    padding-top: 15px;
}