.ekip-left {
    position: relative;
}

.ekip-left::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 20px;
    background-color: #050131; /* Zaman çizgisinin rengi */
}

.ekip-right {
    position: relative;
}

.ekip-right::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 20px;
    background-color: #000000; /* Zaman çizgisinin rengi */
}

.bilgi-text {
    text-align: justify;
}

@media (max-width: 768px) {
    .ekip-left::before {
        width: 0;
    }
}