.body {
    overflow-x: hidden;
}

.mvh {
    position: relative;
}

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

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

.card-header {
    background-color: #050131; /* Kart başlığı için kurumsal renk */
    color: #ffffff; /* Kart başlığı metni beyaz */
    font-weight: bold;
    font-size: 1.25rem;
}
.card-body {
    background-color: #ffffff; /* Kart içeriği beyaz */
    color: #343a40; /* Koyu gri metin */
}

.timeline-container {
    position: relative;
    padding-left: 30px; /* Çizgi için boşluk */
}

.timeline-item-left {
    margin-bottom: 2rem;
    position: relative;
    max-width: 50%;
}
.timeline-item-left::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 20px;
    background-color: #050131; /* Zaman çizgisinin rengi */
}

.timeline-item-right {
    margin-bottom: 2rem;
    position: relative;
    max-width: 50%;
    margin-left: auto; /* Sağda hizalama */
}

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

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 0; /* Mobilde çizgi için boşluk kaldır */
    }
    .timeline-item-left {
        max-width: 100%; /* Kartlar tam genişlikte */
    }
    .timeline-item-right {
        max-width: 100%; /* Kartlar tam genişlikte */
    }

    .mvh::before {
        width: 0;
    }
}
