.usa-auto-banner {
	background: linear-gradient(135deg, #2661c5 0%, #357abd 50%, #1a4a8a 100%);
	border-radius: 20px;
	padding: 60px 80px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
	min-height: 300px;
}

.usa-auto-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.usa-auto-banner-text {
	flex: 1;
	max-width: 100%;
	color: #fff;
}

.usa-auto-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
	letter-spacing: 2px;
}

.usa-auto-banner-desc {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 0;
	color: #fff;
}

.usa-auto-info {
	margin-bottom: 60px;
}

.usa-auto-info-content {
	padding: 40px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 15px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.usa-auto-info-content:hover {
	border-color: #2661c5;
	box-shadow: 0 10px 30px rgba(38, 97, 197, 0.15);
}

.usa-auto-info-text {
	font-size: 18px;
	line-height: 1.7;
	color: #333333;
	margin: 0;
	text-align: center;
}

.usa-auto-benefits-section {
	margin-bottom: 60px;
}

.usa-auto-benefits-title {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	text-align: center;
	margin-bottom: 50px;
}

.usa-auto-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.usa-auto-benefit-card {
	padding: 30px 20px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border: 2px solid transparent;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
}

.usa-auto-benefit-card:hover {
	border-color: #2661c5;
	box-shadow: 0 10px 30px rgba(38, 97, 197, 0.15);
	transform: translateY(-5px);
}

.usa-auto-benefit-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.usa-icon-budget,
.usa-icon-analysis,
.usa-icon-auction,
.usa-icon-delivery,
.usa-icon-customs,
.usa-icon-service {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2661c5 0%, #357abd 100%);
	border-radius: 12px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.usa-icon-budget::before {
	content: "💰";
	font-size: 40px;
}

.usa-icon-analysis::before {
	content: "📊";
	font-size: 40px;
}

.usa-icon-auction::before {
	content: "🔨";
	font-size: 40px;
}

.usa-icon-delivery::before {
	content: "🚢";
	font-size: 40px;
}

.usa-icon-customs::before {
	content: "📋";
	font-size: 40px;
}

.usa-icon-service::before {
	content: "🔧";
	font-size: 40px;
}

.usa-auto-benefit-title {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 15px;
	line-height: 1.4;
}

.usa-auto-benefit-text {
	font-size: 16px;
	line-height: 1.6;
	color: #666666;
	margin: 0;
}

.usa-auto-separator {
	text-align: center;
	padding: 40px 20px;
	margin: 60px 0;
	border-top: 2px solid #e8e8e8;
	border-bottom: 2px solid #e8e8e8;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
}

.usa-auto-separator p {
	font-size: 24px;
	font-weight: 600;
	color: #333333;
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.usa-auto-banner {
		padding: 40px 50px;
		min-height: 280px;
	}
	
	.usa-auto-banner-content {
		flex-direction: column;
		text-align: center;
	}
	
	.usa-auto-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.usa-auto-banner {
		padding: 30px 25px;
		min-height: 250px;
	}
	
	.usa-auto-title {
		font-size: 36px;
	}
	
	.usa-auto-banner-desc {
		font-size: 16px;
	}
	
	.usa-auto-info-content {
		padding: 30px 20px;
	}
	
	.usa-auto-info-text {
		font-size: 16px;
	}
	
	.usa-auto-benefits-title {
		font-size: 28px;
		margin-bottom: 40px;
	}
	
	.usa-auto-benefits {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.usa-auto-separator p {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.usa-auto-title {
		font-size: 28px;
	}
	
	.usa-auto-banner-desc {
		font-size: 14px;
	}
	
	.usa-auto-benefits-title {
		font-size: 24px;
	}
	
	.usa-auto-benefit-title {
		font-size: 18px;
	}
	
	.usa-auto-benefit-text {
		font-size: 14px;
	}
	
	.usa-auto-separator p {
		font-size: 18px;
	}
}

