.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 2px;
        background-color: #adb5bd;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1px;
    }

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

    .timeline-item::after {
        content: attr(data-step); /* Umieszcza numer kroku wewnątrz koła */
        position: absolute;
        width: 30px;
        height: 30px;
        right: -15px;
        background-color: #0d6efd;
        border: 4px solid #fff;
        top: 20px;
        border-radius: 50%;
        z-index: 1;
        color: #fff; /* Kolor tekstu w kole */
        font-size: 1rem; /* Rozmiar tekstu */
        line-height: 20px; /* Wyśrodkowanie pionowe */
        text-align: center; /* Wyśrodkowanie poziome */
    }

.left {
    left: 0;
}

.right {
    left: 50%;
}

    .right::after {
        left: -15px;
    }

.timeline-content {
    padding: 10px 20px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 6px;
}

/* Responsywność - na małych ekranach linia po lewej, kroki po prawej */
@media (max-width: 767px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item::after {
            left: 20px;
        }

    .left,
    .right {
        left: 0%;
    }

        .left::before,
        .right::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent #f8f9fa transparent transparent;
        }

        .left::after,
        .right::after {
            left: 15px;
        }
}
