.service-card p {
	padding: 10px 0px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
	margin-top: 50px;
}

.hero-eyebrow {
	font-weight: bold;
}

.why-header.our-expertise {
	max-width: 100%;
}

.our-expertise-grid ul {
	padding: 5px 20px;
}

.journey-vertical {
	padding: 60px 0;
	background: #f8fafc;
}

.timeline {
	max-width: 800px;
	margin: 40px auto 0;
	position: relative;
	padding-left: 40px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #cbd5e1;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
	/* less gap */
	background: white;
	padding: 22px 26px;
	border-radius: 10px;
	gap: 20px;
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.timeline-item {
	background: white;
	padding: 22px 26px;
	border-radius: 10px;
	display: flex;
	gap: 20px;
	align-items: center;
}

.timeline-item.show {
	opacity: 1;
	transform: translateY(0);
}

.timeline-item.alt .card {
	background: #f1f5f9;
	width: 100%;
}

.year {
	text-align: right;
	font-weight: 600;
	color: #2563eb;
	margin-right: 20px;
}

.card {
	background: #ffffff;
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.card h4 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.card p {
	margin: 0;
	font-size: 0.9rem;
	color: #475569;
}

.journey-vertical h2,
.journey-intro {
	text-align: center;
}

@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 26px;
	}

	p {
		font-size: 16px;
	}
}