/* --- Service Flow Section --- */
ol.flow-list2 {
    list-style: none;
    padding-left: 0;
    position: relative;
    margin-top: 2rem;
}

.flow-list2>li {
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--bg-light);
    border: 1px solid;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.flow-list2>li>.title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.flow-list2>li strong {
    font-size: 1.2rem;
}

.flow-list2 .title .step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
}

.flow-list2>li .title+p {
    margin-top: 0.8rem;
}