.timeline-container-cd74cd77 {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 120px 0 160px; /* Increased bottom padding to clear scrollbar */
    scrollbar-width: thin;
}

.timeline-wrapper-cd74cd77 {
    display: flex;
    position: relative;
    min-width: max-content;
    align-items: center; 
}

.timeline-wrapper-cd74cd77::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-item-cd74cd77 {
    flex: 0 0 auto;
    width: 320px; 
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Even items */
.timeline-item-even-cd74cd77 {
    transform: translateY(-50%);
    flex-direction: column-reverse; 
}

.timeline-item-even-cd74cd77 .timeline-content-cd74cd77 {
    flex-direction: column; 
    margin-bottom: 40px; 
}

.timeline-item-even-cd74cd77 .timeline-point-cd74cd77 {
    margin-bottom: 0;
}

/* Odd items */
.timeline-item-odd-cd74cd77 {
    transform: translateY(50%);
}

.timeline-item-odd-cd74cd77 .timeline-content-cd74cd77 {
    margin-top: 40px; 
}

.timeline-point-cd74cd77 {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; 
    border: 2px solid #e5e7eb;
    z-index: 3;
    position: relative;
}

.timeline-dot-cd74cd77 {
    width: 10px;
    height: 10px;
    background-color: #3b82f6;
    border-radius: 50%;
}

.timeline-content-cd74cd77 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%; 
    position: relative;
}

.timeline-icon-box-cd74cd77 {
    margin-bottom: 10px;
}

.timeline-icon-cd74cd77 {
    color: #3b82f6;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon-cd74cd77 svg {
    width: 24px;
    height: 24px;
    fill: #3b82f6;
}


/* Triangle pointing to the dot */
.timeline-item-even-cd74cd77 .timeline-content-cd74cd77::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    filter: drop-shadow(0 2px 1px rgba(0,0,0,0.1));
}

.timeline-item-odd-cd74cd77 .timeline-content-cd74cd77::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.1));
}


.timeline-title-cd74cd77 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.timeline-desc-cd74cd77 {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.timeline-btn-cd74cd77 {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.timeline-btn-cd74cd77:hover {
    background-color: #2563eb;
    color: #fff;
}
