.ste-timeline {
    position: relative;
    padding: 20px 0;
}

.ste-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

/* ─────────────────────────────
   NUMBER STYLE
────────────────────────────── */
.ste-number {
    width: 35px;
    height: 35px;
    background: #00b3e3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    flex-shrink: 0;
}

/* ─────────────────────────────
   CONTENT
────────────────────────────── */
.ste-content h3 {
    margin: 0;
    font-size: 20px;
    color: #0c2340;
}

.ste-content p {
    margin-top: 5px;
    color: #435066;
    font-size: 14px;
    line-height: 1.5;
}

/* ─────────────────────────────
   LEFT LAYOUT
────────────────────────────── */
.ste-left .ste-item {
    flex-direction: row;
}

/* ─────────────────────────────
   RIGHT LAYOUT
────────────────────────────── */
.ste-right .ste-item {
    flex-direction: row-reverse;
    text-align: right;
}

/* ─────────────────────────────
   ALTERNATE LAYOUT
────────────────────────────── */
.ste-alternate .ste-item.ste-left {
    flex-direction: row;
}

.ste-alternate .ste-item.ste-right {
    flex-direction: row-reverse;
    text-align: right;
}
