/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.about-title, .about-subtitle, .about-heading {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}
.about-title {
	font-size: 2.25rem;
	color: #1a365d;
	margin-bottom: 0.75rem;
	margin-top: 0;
}
.about-subtitle {
	font-size: 1.5rem;
	color: #2d3748;
	margin-top: 2rem;
	margin-bottom: 1.25rem;
}
.about-heading {
	font-size: 1.25rem;
	color: #4a5568;
	font-weight: 500;
}
.about {
	padding: 4rem 0;
}
.about-section {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 6px 4px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	padding: 40px;
}
/* About Image Styles */
.about-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.effect-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.effect-wrapper:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.about-thumb {
	position: relative;
	overflow: hidden;
}
.about-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.about-thumb:hover img {
	transform: scale(1.05);
}
/* About Content Styles */
.about-content {
}
.about-content p {
	margin-bottom: 1.25rem;
	font-size: 15px;
	line-height: 1.7;
	color: #4a5568;
}
/* List Styles */
.services-list {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}
.service-item {
	position: relative;
	padding: 0.75rem 0 0.75rem 2rem;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: #4a5568;
	border-left: 3px solid #e2e8f0;
	background: #f7fafc;
	border-radius: 0 6px 6px 0;
	transition: all 0.2s ease;
}
.service-item:hover {
	border-left-color: #3182ce;
	background: #ebf8ff;
	transform: translateX(4px);
}
.service-item::before {
	content: "✓";
	position: absolute;
	left: 0.5rem;
	top: 0.75rem;
	color: #3182ce;
	font-weight: bold;
	font-size: 1rem;
}
/* Responsive Design */
@media (max-width: 768px) {
	.about {
		padding: 2rem 0;
	}
	.about-image {
		padding: 1.5rem;
	}
	.about-content {
		padding: 1.5rem;
	}
	.about-title {
		font-size: 1.875rem;
	}
	.about-subtitle {
		font-size: 1.375rem;
		margin-top: 1.5rem;
	}
	.about-heading {
		font-size: 16px;
	}
	.service-item {
		padding: 0.625rem 0 0.625rem 1.75rem;
		font-size: 15px;
	}
	.service-item::before {
		left: 0.375rem;
		top: 0.625rem;
		font-size: 0.875rem;
	}
}
@media (max-width: 480px) {
	.about-section {
		border-radius: 8px;
		margin: 0 0.5rem;
		padding: 10px;
	}
	.about-image,
	.about-content {
		padding: 1rem;
	}
	.about-title {
		font-size: 22px;
	}
	.about-subtitle {
		font-size: 18px;
	}
	.service-item {
		padding: 0.5rem 0 0.5rem 1.5rem;
		margin-bottom: 0.375rem;
	}
	.service-item::before {
		left: 0.25rem;
		top: 0.5rem;
	}
}
/* Performance Optimizations */
.about-thumb img {
	will-change: transform;
}
.effect-wrapper {
	will-change: transform, box-shadow;
}
.service-item {
	will-change: transform, background-color, border-color;
}
/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
	.effect-wrapper,
	.about-thumb img,
	.service-item {
		transition: none;
	}
	.effect-wrapper:hover {
		transform: none;
	}
	.about-thumb:hover img {
		transform: none;
	}
	.service-item:hover {
		transform: none;
	}
}