	body {
	background-color: white;
	}
	
        /* Base padding for larger screens */
        .responsive-container {
                padding-left: 110px;
                padding-right: 110px;
				padding-top:100px;
        }

        /* Media query for screens less than 768 pixels wide */
        @media (max-width: 767.98px) {
            .responsive-container {
                padding-left: 10px;
                padding-right: 10px;
				padding-top:100px;
            }
        }

        .logo-container {
            display: flex;        /* Enables flexbox */
            align-items: center;  /* Align items vertically in the center */
            justify-content: center; /* Center horizontally */
            height: 100px; /* Set a minimum height for demonstration purposes */
        }

        .logo {
            width: 100%; /* Adjusts the width of the logo to fit the column */
            max-width: 120px; /* Maximum logo width */
            filter: grayscale(100%); /* Start with grayscale */
            transition: filter 0.5s ease; /* Smooth transition for the filter effect */
        }

        .logo:hover {
            filter: none; /* Full color on hover */
        }

		
        /* Timeline CSS */
        .timeline {
            position: relative;
            padding: 0;
            list-style: none;
        }

        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 40px;
            width: 2px;
            margin-left: -1.5px;
            background-color: #e9ecef;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 20px;
            padding-left: 60px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 28px;
            height: 15px;
            width: 15px;
            border-radius: 50%;
            background-color: #0b0b0c;
        }

        .timeline-item h5 {
            margin-top: 0;
        }

        .timeline-item p {
            margin-bottom: 0;
        }