.dd_departments-grid {
	margin: 30px auto 50px;

	.dd_section-header {
		text-align: center;
		margin-bottom: 30px;
	}

	.dd_section-header h1 {
		font-size: 36px;
		font-weight: 700;
		margin-bottom: 12px;
	}

	.dd_section-header p {
		font-size: 16px;
		color: #6b7280;
		max-width: 600px;
		margin: 0 auto;
		line-height: 1.6;
	}

	.dd_cards {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 20px;
	}

	.dd_card {
		background: #ffffff;
		border-radius: 16px;
		padding: 28px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
		transition: transform 0.2s ease, box-shadow 0.2s ease;
		border: 1px solid #dfdfdf;
	}

	.dd_card:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	}

	.dd_icon {
		width: 56px;
		height: 56px;
		border-radius: 50%;
		background-color: #fdecec;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;

		img {
			width: 25px !important;
			height: 25px !important;
		}
	}

	.dd_icon svg {
		width: 36px;
		height: 36px;
		stroke: #e11d48;
	}

	.dd_card h3 {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 12px;
	}

	.dd_card p {
		font-size: 14px;
		color: #6b7280;
		line-height: 1.6;
		margin-bottom: 16px;
	}

	.dd_card ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.dd_card li {
		font-size: 14px;
		color: #374151;
		margin-bottom: 8px;
		position: relative;
		padding-left: 16px;
	}

	.dd_card li::before {
		content: "";
		width: 6px;
		height: 6px;
		background-color: #e11d48;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 8px;
	}
}

.dd_departments-grid .cta-btn {
	display: block;
	margin: 30px auto 0;
	max-width: 300px;
	text-align: center;
}