/* Base styles */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    min-height: 500px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #3777BC;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    z-index: 2;

}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 53%;
    padding-left: 30px;
    width: 45%;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50%;
    padding-right: 30px;
    text-align: right;
    width: 45%;
}

.timeline-content {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    opacity: 1;
    transform: none;
    z-index: 2;
}

.timeline-date {
    font-weight: bold;
    margin-bottom: 10px;
    color: #3777BC;
    font-size: 60px;
    font-family: Queering;
    text-transform: uppercase;
}

.timeline-text {
    color: #666;
    line-height: 1.6;
    margin-top: 12px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg width='46' height='44' viewBox='0 0 46 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='23' cy='22' r='21.5' fill='white' stroke='white'/%3E%3Cpath d='M5.12134 8.84297L5.1581 8.87877L5.12134 8.84297ZM23.1324 0C30.3001 0.0358015 36.6591 3.43694 40.6289 8.62816C34.5639 9.66641 29.2341 12.0651 25.7054 17.7933C27.0287 12.2441 27.6536 6.55167 23.1324 0Z' fill='%233777BC'/%3E%3Cpath d='M40.8829 8.95056C43.4926 12.4591 45.0364 16.7911 45.0364 21.4811C39.8904 19.7626 32.6125 19.5836 27.7605 21.3379C33.4211 18.8676 37.7217 14.6788 40.8829 8.95056Z' fill='%233777BC'/%3E%3Cpath d='M45 22.1251C44.8897 26.0991 43.6767 29.7866 41.6183 32.9372L40.6626 34.226C38.8247 30.3237 36.1415 27.0657 31.7673 24.3448C36.2885 25.2399 40.6626 24.0942 45 22.1251Z' fill='%233777BC'/%3E%3Cpath d='M5.12134 8.84297L5.1581 8.91457C12.5463 9.91701 18.2069 13.712 20.5962 17.5069C17.5453 7.87633 21.6621 3.83076 22.1767 0C15.1561 0.25061 8.98086 3.68755 5.12134 8.84297Z' fill='%233777BC'/%3E%3Cpath d='M5.15618 8.91434L5.11942 8.87854C2.4729 12.3871 0.892334 16.7549 0.892334 21.4807C0.892334 21.8029 0.892334 22.1609 0.892334 22.4831C5.78106 19.8696 13.9412 19.8696 19.6018 21.0869C12.7282 18.7598 7.94974 14.6784 5.15618 8.91434Z' fill='%233777BC'/%3E%3Cpath d='M5.04515 34.0112C4.78785 33.689 4.5673 33.331 4.34676 32.973C2.39862 30.0014 1.18563 26.5287 0.965088 22.7695C6.14787 24.8102 10.7793 25.4188 14.8226 24.6312C10.5587 27.8175 8.02249 31.5051 6.0376 35.3001L5.04515 34.0112Z' fill='%233777BC'/%3E%3Cpath d='M38.4583 37.305C34.6355 41.4222 29.1587 43.9999 23.0202 43.9999C16.5877 43.9999 10.8903 41.1716 7.03076 36.7322L15.0806 30.2879L16.1098 31.2546L22.9834 24.9177L27.6516 29.5003L29.1587 28.1399L39.7815 35.7298L38.4583 37.305Z' fill='%233777BC'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 0;
}

.timeline-item:nth-child(odd)::before {
    left: 50%;
    margin-left: -23px;
}

.timeline-item:nth-child(even)::before {
    right: 50%;
    margin-right: -23px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {

    .timeline-item:nth-child(odd)::before {
        left: -1.4%;
        margin-left: 0;
  
    }
    
    .timeline-item:nth-child(even)::before {
        left: -1.4%;
        right: inherit;
     
    }
    .timeline-container {
        padding: 20px 0;
        min-height: auto;
    }

    .timeline-line {
        display: block;
        left: 0;
        margin-left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 95%;
        margin: 0 auto 30px;
        padding-left: 50px;
        position: relative;
    }

    .timeline-item::before {
        display: block;
        position: absolute;
        left: 1.4%;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        width: 30px;
        height: 29px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding: 15px;
        width: 100%;
        text-align: left;
    }

    .timeline-date {
        font-size: 40px;
        text-transform: uppercase;
    }
}

/* Tablet styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .timeline-container {
        max-width: 90%;
        padding: 30px 0;
        
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-item::before {
        width: 40px;
        height: 38px;
    }

    .timeline-item:nth-child(odd)::before {
        margin-left: -20px;
    }

    .timeline-item:nth-child(even)::before {
        margin-right: -20px;
    }
}

/* Desktop styles */
@media screen and (min-width: 1025px) {
    .timeline-container {
        max-width: 1200px;
    }
} 