.avg-import-page {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #fff;
}

.avg-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: 400px;
}

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

.avg-banner-text {
	flex: 1;
	max-width: 600px;
	color: #fff;
}

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

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

.avg-btn-offers {
	background-color: rgba(255, 255, 255, 0.2);
	border: 2px solid #fff;
	color: #fff;
	padding: 15px 40px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.avg-btn-offers:hover {
	background-color: #fff;
	color: #2661c5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.avg-banner-image {
	flex: 1;
	position: relative;
	height: 400px;
}

.avg-car-placeholder {
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23FCD34D" width="400" height="300" rx="20"/><text x="50%25" y="50%25" text-anchor="middle" font-size="24" fill="%236B46C1">Автомобиль</text></svg>') no-repeat center;
	background-size: contain;
	position: absolute;
	right: -50px;
	top: 0;
}

.avg-services {
	margin-bottom: 60px;
}

.avg-services-row {
	display: flex;
	gap: 40px;
	margin-bottom: 50px;
}

.avg-services-row:last-child {
	margin-bottom: 0;
}

.avg-service-item {
	display: flex;
	gap: 30px;
	flex: 1;
	padding: 30px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 2px solid transparent;
}

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

.avg-service-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avg-icon-car,
.avg-icon-key,
.avg-icon-cart,
.avg-icon-fuel {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2661c5 0%, #357abd 100%);
	border-radius: 12px;
	position: relative;
}

.avg-icon-car::before {
	content: "🚗";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.avg-icon-key::before {
	content: "🔑";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.avg-icon-cart::before {
	content: "🛒";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.avg-icon-fuel::before {
	content: "⛽";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.avg-service-content {
	flex: 1;
}

.avg-service-title {
	font-size: 24px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 15px;
}

.avg-service-text {
	font-size: 16px;
	line-height: 1.7;
	color: #666666;
}

.avg-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;
}

.avg-separator p {
	font-size: 28px;
	font-weight: 700;
	color: #333333;
	margin: 0;
}

.avg-benefits {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.avg-benefit-card {
	flex: 1;
	min-width: 200px;
	max-width: 220px;
	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;
}

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

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

.avg-icon-shield,
.avg-icon-turnkey,
.avg-icon-percent,
.avg-icon-free,
.avg-icon-24h {
	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;
}

.avg-icon-shield::before {
	content: "🛡️";
	font-size: 40px;
}

.avg-icon-turnkey::before {
	content: "🔧";
	font-size: 40px;
}

.avg-icon-percent::before {
	content: "💰";
	font-size: 40px;
}

.avg-icon-free::before {
	content: "⭐";
	font-size: 40px;
}

.avg-icon-24h::before {
	content: "⏰";
	font-size: 40px;
}

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

.avg-benefit-text {
	font-size: 14px;
	line-height: 1.6;
	color: #666666;
	margin: 0;
}

@media (max-width: 1024px) {
	.avg-banner {
		padding: 40px 50px;
		min-height: 350px;
	}
	
	.avg-banner-content {
		flex-direction: column;
		text-align: center;
	}
	
	.avg-banner-image {
		display: none;
	}
	
	.avg-services-row {
		flex-direction: column;
	}
	
	.avg-benefits {
		justify-content: center;
	}
	
	.avg-benefit-card {
		max-width: 250px;
	}
}

@media (max-width: 768px) {
	.avg-import-page {
		padding: 20px 15px;
	}
	
	.avg-banner {
		padding: 30px 25px;
		min-height: 300px;
	}
	
	.avg-logo {
		font-size: 36px;
	}
	
	.avg-banner-desc {
		font-size: 16px;
	}
	
	.avg-service-item {
		flex-direction: column;
		text-align: center;
	}
	
	.avg-separator p {
		font-size: 20px;
	}
	
	.avg-benefits {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	
	.avg-benefit-card {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.avg-logo {
		font-size: 28px;
	}
	
	.avg-banner-desc {
		font-size: 14px;
	}
	
	.avg-btn-offers {
		padding: 12px 30px;
		font-size: 16px;
	}
	
	.avg-service-title {
		font-size: 20px;
	}
	
	.avg-separator p {
		font-size: 18px;
	}
	
	.avg-benefits {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	
	.avg-benefit-card {
		max-width: 100%;
		width: 100%;
	}
}
