/* Timeline Styling */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--brand-teal);
    border-radius: 50%;
    border: 2px solid var(--brand-blue);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 5.5px;
    width: 2px;
    height: calc(100% - 2rem);
    background: var(--brand-blue);
    opacity: 0.5;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item h3 {
    font-family: "KiamboteFontRegular", sans-serif;
    font-size: 1.65rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-family: "KiamboteFontLight", sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 2.5rem;
    }
    .timeline-item::before {
        left: -2px;
        width: 10px;
        height: 10px;
    }
    .timeline-item::after {
        left: 3.5px;
    }
    .timeline-item h3 {
        font-size: 1.5rem;
    }
    .timeline-item p {
        font-size: 1rem;
    }
}