.timeline {
    position: relative;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff99cc;
}

.timeline-item {
    position: relative;
    padding-left: 15px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -12px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff99cc;
    border: 3px solid #0a0a23;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: scale(1.2);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #ff99cc;
    transition: all 0.3s ease;
    min-height: 60px;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        max-width: 100%;
        padding: 10px 0;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        padding-left: 15px;
        margin-bottom: 40px;
    }

    .timeline-dot {
        left: -8px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 15px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 12px;
        margin-bottom: 35px;
    }

    .timeline-dot {
        left: -7px;
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 12px;
        min-height: 40px;
    }
}