/* ===== DỊCH VỤ ===== */
.dich_vu {
	border: 1px solid #dfe7df;
	border-radius: 18px;
	overflow: hidden;
	background: var(--color-white);
}

.dich_vu>.col {
	padding: 0 !important;
	margin: 0 !important;
}

.dich_vu>.col:not(:last-child) {
	border-right: 1px solid #dfe7df;
}

.icon_dv {
	height: 100%;
	padding: 20px 20px;
	background: var(--color-white);
	transition: .35s;
	cursor: pointer;
}

.icon_dv .icon-box-img {
	margin-bottom: 22px;
}

.icon_dv .icon {
	color: #2d6d3b;
}

.icon_dv img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	transition: .35s;
}

.icon_dv h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-black);
	text-transform: uppercase;
}

.icon_dv p {
	font-size: 14px;
	color: #555;
}

.icon_dv .button {
	padding: 0;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--color-main) !important;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
}

.icon_dv .button span:after {
	content: " →";
	transition: .3s;
}

.icon_dv:hover .button span:after {
	margin-left: 8px;
}

/* ===== Hover ===== */
.icon_dv:hover {
	background: var(--color-main);
}

.icon_dv:hover h3,
.icon_dv:hover p,
.icon_dv:hover .button {
	color: var(--color-white) !important;
}

.icon_dv:hover img {
	filter: brightness(0) invert(1);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
	.dich_vu>.col {
		flex: 0 0 50%;
		max-width: 50%;
		border-right: 1px solid #dfe7df !important;
		border-bottom: 1px solid #dfe7df;
		margin: 0 !important;
	}

	/* Cột thứ 2,4,6... bỏ viền phải */
	.dich_vu>.col:nth-child(even) {
		border-right: none !important;
	}

	/* Hàng cuối bỏ viền dưới (nếu có 6 ô) */
	.dich_vu>.col:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.icon_dv {
		padding: 18px 15px;
		text-align: left;
	}

	.icon_dv .icon-box-img {
		margin-bottom: 12px;
	}

	.icon_dv img {
		width: 36px;
		height: 36px;
	}

	.icon_dv h3 {
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 10px;
	}

	.icon_dv p {
		min-height: auto;
	}

	.icon_dv .button {
		font-size: 13px;
	}
}