    .timeline-road {
        width: 100%;
        margin: 40px 0;
    }
    .year-circle {
        width: 120px;
        height: 120px;
        background: #d2edff;
        border: 8px solid #052a4f;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        font-weight: bold;
        color: #052a4f;
        margin: auto;
    }

    .timeline-item {
        text-align: center;
        margin-top: 20px;
    }

    .timeline-img {
        width: 220px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .label-text {
        font-size: 20px;
        font-weight: 500;
        margin-top: 10px;
    }
        
    @media (max-width: 576px) {
        .timeline-img {
            width: 100%;
            height: auto;
        }
        .year-circle {
            width: 90px;
            height: 90px;
            font-size: 20px;
        }
        .label-text {
            font-size: 16px;
        }
}

