.content-with-image {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 40px;
}

.content-text h2 {
	font-size: 36px;
	color: #0066cc;
	margin-bottom: 20px;
	font-weight: 700;
}

.content-text p {
	font-size: 17px;
	line-height: 1.8;
	color: #333;
}

.content-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.content-image:hover img {
	transform: scale(1.05);
}

@media (max-width: 968px) {
	.content-with-image {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
