 /* Global Styles */
* {
	margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Timeline Styles */
.timeline {
	position: relative;
    padding: 50px 0;
}

.timeline::before {
	content: '';
	position: absolute;
    width: 4px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
	transform: translateX(-50%);
}

.timeline-item {
	padding: 20px 40px;
    position: relative;
    width: 50%;
    /* margin-bottom: 30px; */
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
	to {
		opacity: 1;
        }
}

.timeline-item:nth-child(odd) {
	left: 0;
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
	left: 50%;
    animation-delay: 0.4s;
}

.timeline-content {
	padding: 20px;
    background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
}

.timeline-content::before {
	content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    top: 30px;
    transform: rotate(45deg);
    box-shadow: 5px -5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content::before {
	right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
	left: -10px;
}

.timeline-date {
	display: inline-block;
	padding: 8px 15px;
    background-color: #1253BE;
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.timeline-item h2 {
	font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1253BE;
}

.timeline-item p {
	margin-bottom: 10px;
    color: #555;
}

.timeline-icon {
	position: absolute;
    width: 50px;
    height: 50px;
    background-color: #1253BE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px white, 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.timeline-icon:hover {
	transform: scale(1.1);
}

.timeline-item:nth-child(odd) .timeline-icon {
	right: -25px;
    top: 30px;
}

.timeline-item:nth-child(even) .timeline-icon {
	left: -25px;
    top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2.2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .timeline::before {
        left: 40px;
    }
	.timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
	.timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
	.timeline-item:nth-child(even) .timeline-icon {
        left: 15px;
        right: auto;
    }
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
		left: 30px;
        right: auto;
        top: -10px;
        transform: rotate(-45deg);
    }
    .timeline-content {
        padding: 20px;
    }
    .timeline-item h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
	.page-header {
		padding: 40px 0 30px;
	}
    .page-header h1 {
		font-size: 1.8rem;
    }
	.timeline-item {
		padding-left: 60px;
    }
	.timeline-icon {
		width: 40px;
        height: 40px;
        font-size: 1rem;
    }
	.timeline-item:nth-child(odd) .timeline-icon,
	.timeline-item:nth-child(even) .timeline-icon {
		left: 10px;
    }
}