.timeline-section {
    background: var(--bg-cream);
    padding: 80px 20px;
}

.timeline-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 26px;
    color: var(--text-dark);
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background: var(--primary-light);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    padding-bottom: 35px;
}

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

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 2px solid var(--primary-color);
}

.timeline-item:first-child .timeline-dot {
    background: var(--primary-color);
}

.timeline-time {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.timeline-event {
    font-size: 15px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.timeline-desc {
    font-size: 12px;
    color: var(--text-lighter);
    margin-top: 4px;
}
