﻿#logo img {
    height: 45px;
}
li::marker {
    color: green;
}


.timeline {
    position: relative;
    list-style: none;
    padding-left: 20px;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 10px;
        width: 2px;
        background-color: #50d8af;
    }

    .timeline li {
        position: relative;
        padding-left: 30px; /* Adjusted padding */
        margin-bottom: 10px;
    }

        .timeline li::before {
            content: '';
            position: absolute;
            left: -14px; /* Adjusted position */
            top: 0;
            width: 10px;
            height: 10px;
            background-color: #50d8af;
            border-radius: 50%;
            z-index: 1; /* Ensure bullets are above the line */
        }
