.timeline-section {
    color: #fff;
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-left: 3px solid #c00;
    padding-left: 40px;
}

.timeline-year {
    margin-bottom: 60px;
}

.timeline-year h1 {
    color: #ff3333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event {
    position: relative;
    padding-left: 25px;
}

.event::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
}

.event h2 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 1.3rem;
}

.event p {
    margin: 0;
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .timeline-container {
        padding-left: 25px;
    }

    .timeline-year h1 {
        font-size: 2rem;
    }
}