
		.compact-timeline .section-title {
			font-size: 26px;
			text-align: center;
			margin-bottom: 30px;
		}

		.compact-timeline .timeline {
			padding-left: 15px;
			border-left: 2px solid #ccc;
			margin-top: 20px;
		}

		.compact-timeline .timeline-item {
			position: relative;
			margin-bottom: 25px;
			padding-left: 25px;
		}

		.compact-timeline .timeline-icon {
			position: absolute;
			left: -20px;
			top: 2px;
			width: 30px;
			height: 30px;
			background: #0e9e00;
			color: #fff;
			border-radius: 50%;
			text-align: center;
			line-height: 30px;
			font-size: 14px;
		}

		.compact-timeline .timeline-content h4 {
			margin: 0 0 5px;
			font-size: 18px;
			color: #0e9e00;
		}

		.compact-timeline .timeline-content p {
			margin: 0;
			font-size: 14px;
			color: #555;
		}

		@media (max-width: 768px) {
			.compact-timeline .timeline {
				border-left: none;
				padding-left: 0;
			}

			.compact-timeline .timeline-icon {
				display: none;
			}

			.compact-timeline .timeline-item {
				padding-left: 0;
			}
		}

	/* Timeline Container */
	.timeline {
		position: relative;
		margin: 50px 0;
		padding-left: 30px;
		border-left: 4px solid #dcdcdc;
	}

	/* Timeline Items */
	.timeline-item {
		position: relative;
		margin-bottom: 50px;
		padding-left: 30px;
	}

	.timeline-item .timeline-icon {
		position: absolute;
		left: -25px;
		top: 0;
		width: 40px;
		height: 40px;
		background: #0e9e00;
		color: #fff;
		border-radius: 50%;
		text-align: center;
		line-height: 40px;
		font-size: 18px;
		box-shadow: 0 0 0 4px #fff;
	}

	.timeline-content {
		background: #fff;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 3px 15px rgba(0,0,0,0.1);
		position: relative;
	}

	.timeline-content h3 {
		margin-top: 0;
		color: #0e9e00;
	}
	.card-section {
		margin: 50px 0;
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		justify-content: space-between;
	}

	.card {
		background: #fff;
		flex: 1 1 calc(25% - 20px);
		box-shadow: 0 3px 10px rgba(0,0,0,0.1);
		border-radius: 8px;
		padding: 20px;
		text-align: center;
		transition: transform 0.3s ease;
	}

	.card:hover {
		transform: translateY(-5px);
	}

	.card i {
		font-size: 36px;
		color: #0e9e00;
		margin-bottom: 15px;
	}

	.card h4 {
		font-size: 20px;
		margin-bottom: 10px;
		color: #333;
	}

	.card p {
		font-size: 14px;
		color: #666;
	}

	@media (max-width: 767px) {
		.timeline {
			border-left: none;
			padding-left: 0;
		}

		.timeline-item {
			padding-left: 0;
		}

		.timeline-icon {
			display: none;
		}

		.card-section {
			flex-direction: column;
		}

		.card {
			flex: 1 1 100%;
		}
	}

