.services-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-container h2 {
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	color: #111827;
}

/* Section base */
.service-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	max-width: 1200px;
	width: calc(100% - 100px);
	margin: 20px 0;
	background: #fff;
	border-radius: 24px;
	padding: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
	overflow: hidden;
	position: relative;
}

.service-section:hover {
	box-shadow: 0 0px 10px rgb(131 186 255);
}

/* Alternate directions */
.service-section:nth-child(even) {
	flex-direction: row-reverse;
}

/* Text side */
.service-content {
	flex: 1;
	z-index: 2;
	position: relative;
}

.service-content h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	margin-top: 0;
	color: #1f2937;
}

.service-content h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #374151;
	margin-top: 25px;
	margin-bottom: 10px;
}

.service-content p {
	color: #4b5563;
	line-height: 1.3;
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.service-content strong {
	color: #111827;
	font-weight: 600;
}

/* Visual side (accent area) */
.service-visual {
	flex: 1;
	min-height: 280px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

/* Gradient variations for each section */
.visual-1 {
	background: linear-gradient(135deg, #d2dbfa, #9fd8ff);
}

.visual-2 {
	background: linear-gradient(135deg, #d9ffed, #b8ffdb);
}

.visual-3 {
	background: linear-gradient(135deg, #ffe3c1, #f6b661);
}

.visual-4 {
	background: linear-gradient(135deg, #ffe3e3, #ffa3a3);
}

/* Abstract accent circles */
.service-visual::before,
.service-visual::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	opacity: 0.6;
}

.service-visual::before {
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.6);
	top: -40px;
	left: -40px;
}

.service-visual::after {
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.4);
	bottom: -50px;
	right: -50px;
}

/* Responsive layout */
@media (max-width: 900px) {
	.service-section {
		flex-direction: column;
		text-align: left;
		padding: 25px;
		width: calc(100% - 90px);
	}

	.service-section:nth-child(even) {
		flex-direction: column;
	}

	.service-content h3 {
		font-size: 1.6rem;
	}

	.services-container h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 768px) {
	.service-section {
		padding: 20px;
		width: calc(100% - 70px);
		margin-bottom: 0;
	}
	.service-section:last-child {
		margin-bottom: 20px;
	}

	.service-content h3 {
		font-size: 1.3rem;
	}
}