/* Timeline Roadmap CSS */
.workshop-timeline {
    position: relative;
    /* Removed padding-left from container to handle alignment in steps */
}

.workshop-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    /* Centered with 40px marker (20px center - 1px half-width) */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-step {
    position: relative;
    padding-left: 60px;
    /* Space for marker (40px) + gap (20px) */
    margin-bottom: 40px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.timeline-step:hover {
    opacity: 1;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    /* Gold for high contrast */
    color: var(--black);
    /* Black text for readability */
    border: 2px solid var(--white);
    /* White border for separation */
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
}