.open-services-section {
	padding: 90px 20px;
	background: #f5f5f3;
}

.open-services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.open-services-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 50px;
}

.open-services-kicker {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff4f93;
	margin-bottom: 12px;
}

.open-services-heading h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.1;
	font-weight: 800;
	color: #07143b;
	margin: 0 0 16px;
}

.open-services-heading p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #4c556a;
	margin: 0;
}

.open-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.open-service-card {
	background: #efefec;
	border-radius: 22px;
	padding: 32px 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	min-height: 240px;
}

.open-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(7, 20, 59, 0.08);
}

.open-service-icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	background: #ffffff;
	color: #07143b;
	margin-bottom: 22px;
	box-shadow: 0 6px 18px rgba(7, 20, 59, 0.06);
}

.open-service-card h3 {
	font-size: 1.45rem;
	line-height: 1.2;
	font-weight: 800;
	color: #07143b;
	margin: 0 0 14px;
}

.open-service-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4c556a;
	margin: 0;
}

@media (max-width: 1024px) {
	.open-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.open-services-section {
		padding: 70px 16px;
	}

	.open-services-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.open-service-card {
		padding: 24px 20px;
		min-height: auto;
	}

	.open-services-heading {
		margin-bottom: 36px;
	}
}