.timeline-widget {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #1B3021;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-item.left .timeline-content {
    order: 1;
    text-align: right;
    margin-right: 55%;
}

.timeline-item.right .timeline-content {
    order: 2;
    text-align: left;
    margin-left: 55%;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #E4E0D6;
    border-radius: 50%;
    border: 2px solid #1B3021;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-content {
    width: 100%;
    padding: 20px 20px;
    background: #E4E0D6;
/*    border: 1px solid #ddd;*/
    border-radius: 6px;
/*    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}
.timeline-content h3 {
    margin: 5px 0;
    font-weight: 600!important;
}
.timeline-content {
    color: #1B3021;
    line-height: 1.5;
    font-weight: 400!important;
}