.dr1016insight {
	background: #f5fdfd;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #004d40;
}

.physiotherapy-insights-section {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.physiotherapy-insights-section h2 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #00796b;
}

.insight-subtitle {
	font-size: 1.2rem;
	color: #009688;
	margin-bottom: 40px;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.insight-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 150, 136, 0.15);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.insight-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(0, 150, 136, 0.25);
}

.insight-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.insight-content {
	padding: 20px;
	text-align: left;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.insight-content h3 {
	font-size: 1.4rem;
	color: #00695c;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.insight-content p {
	font-size: 1rem;
	color: #555;
}

.insight-icon {
	width: 36px;
	height: 36px;
	display: inline-block;
	vertical-align: middle;
}

/* Fade-in Scroll */
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Improved Responsive Layout */
@media ( max-width : 1024px) {
	.physiotherapy-insights-section h2 {
		font-size: 2.2rem;
	}
	.insight-grid {
		gap: 20px;
	}
}

@media ( max-width : 768px) {
	.physiotherapy-insights-section h2 {
		font-size: 2rem;
	}
	.insight-subtitle {
		font-size: 1rem;
	}
	.insight-content h3 {
		font-size: 1.2rem;
	}
	.insight-content p {
		font-size: 0.95rem;
	}
}

@media ( max-width : 480px) {
	.insight-card img {
		height: 160px;
	}
	.insight-content h3 {
		font-size: 1.1rem;
	}
	.insight-content p {
		font-size: 0.9rem;
	}
	.insight-icon {
		width: 28px;
		height: 28px;
	}
}