.about-us-section {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
	overflow: hidden;
}

.about-us-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(188, 0, 0, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.about-us-section .container {
	position: relative;
	z-index: 1;
}

.about-us-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	opacity: 1;
	transform: translateY(0);
}

.about-us-subtitle {
	font-size: 24px;
	font-weight: 500;
	color: #555;
	margin-bottom: 50px;
}

.about-us-content {
	padding: 0;
	max-width: 1200px;
	margin: 0 auto;
}

.about-us-intro {
	margin-bottom: 50px;
	text-align: center;
}

.about-us-intro-text {
	font-size: 19px;
	line-height: 1.8;
	color: #2c3e50;
	max-width: 900px;
	margin: 0 auto 30px;
}

.about-us-content-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 25px;
	text-align: center;
}

.about-us-features {
	margin-top: 40px;
}

.about-us-features .row {
	margin-left: -15px;
	margin-right: -15px;
}

.about-us-features .row > [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 25px;
}

.about-us-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	padding: 35px 25px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	min-height: 280px;
}

.about-us-feature-item:hover {
	background: rgba(255, 255, 255, 1);
	border-color: #bc0000;
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(188, 0, 0, 0.2);
}

.about-us-feature-icon {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.about-us-feature-item:hover .about-us-feature-icon {
	background: linear-gradient(135deg, #bc0000 0%, #d32f2f 100%);
	transform: rotate(10deg) scale(1.1);
	box-shadow: 0 5px 15px rgba(188, 0, 0, 0.3);
}

.about-us-feature-icon i {
	font-size: 32px;
	color: #bc0000;
	transition: color 0.3s ease;
}

.about-us-feature-item:hover .about-us-feature-icon i {
	color: #ffffff;
}

.about-us-feature-text {
	flex: 1;
	width: 100%;
}

.about-us-feature-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.about-us-feature-text p {
	font-size: 17px;
	line-height: 1.7;
	color: #2c3e50;
	margin: 0;
}

@media (max-width: 991px) {
	.about-us-title {
		font-size: 36px;
	}
	
	.about-us-subtitle {
		font-size: 20px;
	}
	
	.about-us-content {
		padding: 0;
	}
	
	.about-us-content-title {
		font-size: 32px;
	}
	
	.about-us-intro-text {
		font-size: 18px;
	}
	
	.about-us-feature-item {
		padding: 30px 20px;
		min-height: 260px;
	}
	
	.about-us-feature-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}
	
	.about-us-feature-icon i {
		font-size: 28px;
	}
	
	.about-us-feature-title {
		font-size: 20px;
	}
	
	.about-us-feature-text p {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.about-us-title {
		font-size: 28px;
	}
	
	.about-us-subtitle {
		font-size: 18px;
	}
	
	.about-us-content-title {
		font-size: 28px;
	}
	
	.about-us-intro-text {
		font-size: 17px;
	}
	
	.about-us-feature-item {
		padding: 25px 20px;
		min-height: auto;
	}
	
	.about-us-feature-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 15px;
	}
	
	.about-us-feature-icon i {
		font-size: 24px;
	}
	
	.about-us-feature-title {
		font-size: 18px;
	}
	
	.about-us-feature-text p {
		font-size: 15px;
	}
}
