#solutions_test_explain_2 {
}
#solutions_test_explain_2_container {
}
#solutions_test_explain_2_content {
    flex-direction: column;
}

#timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
}

#timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #185FA5, #E6F1FB);
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #185FA5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px #E6F1FB;
}

.timeline-dot svg {
    width: 20px;
    height: 20px;
}

.timeline-content {
    padding-top: 8px;}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--our-grey-color);
    line-height: 1.6;
    margin: 0;
}