.timeline-container-2945 {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.timeline-2945 {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Vertical Line */
.timeline-2945::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 150px; /* Shifted to make room for the date on the left */
    width: 2px;
    background: #0056b3;
}

.timeline-item-2945 {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.timeline-item-2945:last-child {
    margin-bottom: 0;
}

/* Left Side: Date */
.timeline-left-2945 {
    width: 130px;
    text-align: right;
    padding-right: 30px;
    padding-top: 6px; /* Align with content slightly */
    flex-shrink: 0;
}

.timeline-date-left-2945 {
    font-size: 0.9em;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Center: Icon / Dot */
.timeline-icon-wrapper-2945 {
    position: absolute;
    left: 134px; /* Centered on the line (150px - 16px radius + 2px border offset = ~134px) */
    top: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-icon-2945 {
    color: #0056b3;
    font-size: 14px;
}
.timeline-icon-2945 svg {
    width: 14px;
    height: 14px;
    fill: #0056b3;
}

/* Right Side: Content Area */
.timeline-content-2945 {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-left: 60px; /* Space from icon */
    flex-grow: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Added shadow per request */
    transition: all 0.3s ease;
}

.timeline-content-2945:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.timeline-title-2945 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 700;
}

.timeline-desc-2945 {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline-2945::before {
        left: 20px;
    }
    .timeline-item-2945 {
        flex-direction: column;
    }
    .timeline-left-2945 {
        width: 100%;
        text-align: left;
        padding-right: 0;
        padding-left: 60px;
        margin-bottom: 10px;
        padding-top: 0;
    }
    .timeline-icon-wrapper-2945 {
        left: 4px;
        top: 30px; /* Moved down since date is above */
    }
    .timeline-content-2945 {
        margin-left: 50px;
    }
}