.second-page-section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.region-section {
	width: 100%;
	min-height: 600px;
	display: flex;
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	margin: 0;
	border: none;
	outline: none;
}

.region-section + .region-section {
	margin-top: -2px;
}

.region-section-usa {
	background-image: url('../images/backgrounds/background-second.png');
	background-attachment: scroll;
}

.region-section-europe {
	background-image: url('../images/backgrounds/background-third.png');
	background-attachment: scroll;
}

.region-section-asia {
	background-image: url('../images/backgrounds/background-fourth.png');
	background-attachment: scroll;
}

.region-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 110px;
	position: relative;
	z-index: 2;
}

.region-section-usa .region-container {
	flex-direction: row;
}

.region-section-europe .region-container {
	flex-direction: row-reverse;
}

.region-section-asia .region-container {
	flex-direction: row;
}

.region-content {
	flex: 1;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.region-section-europe .region-content {
	align-items: flex-end;
	text-align: right;
}

.region-subtitle {
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.region-title {
	font-size: 56px;
	font-weight: 700;
	color: #333333;
	margin: 0 0 40px 0;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.region-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.region-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	letter-spacing: 1px;
	cursor: pointer;
}

.region-btn-catalog {
	background-color: transparent;
	color: #333333;
	border: 2px solid #cccccc;
}

.region-btn-catalog:hover {
	border-color: #999999;
	background-color: #f5f5f5;
	transform: translateY(-2px);
}

.region-btn-order {
	background-color: #2d5a4f;
	color: #ffffff;
	border: 2px solid #2d5a4f;
	box-shadow: 0 4px 15px rgba(45, 90, 79, 0.3);
}

.region-btn-order:hover {
	background-color: #1e3d35;
	border-color: #1e3d35;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 90, 79, 0.4);
}

.region-btn:active {
	transform: translateY(0);
}

.region-car {
	flex: 0 0 auto;
	width: 50%;
	max-width: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.region-car img {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1200px) {
	.region-title {
		font-size: 48px;
	}
	
	.region-container {
		gap: 40px;
		padding: 0 30px;
	}
}

@media (max-width: 968px) {
	.region-section {
		min-height: 500px;
		padding: 60px 0;
	}
	
	.region-container {
		flex-direction: column !important;
		gap: 30px;
		padding: 0 20px;
	}
	
	.region-content {
		max-width: 100%;
		align-items: center !important;
		text-align: center !important;
		display: contents;
	}
	
	.region-section-europe .region-content {
		text-align: center;
	}
	
	.region-subtitle {
		order: 1;
		margin-bottom: 10px;
		width: 100%;
		text-align: center;
	}
	
	.region-title {
		font-size: 40px;
		text-align: center;
		order: 1;
		margin-bottom: 0;
		width: 100%;
	}
	
	.region-buttons {
		justify-content: center;
		width: 100%;
		order: 3;
		margin-top: 0;
	}
	
	.region-car {
		width: 100%;
		max-width: 500px;
		order: 2;
	}
	
	.region-car img {
		max-height: 350px;
	}
}

@media (max-width: 640px) {
	.region-section {
		min-height: 450px;
		padding: 40px 0;
	}
	
	.region-container {
		gap: 25px;
	}
	
	.region-title {
		font-size: 32px;
		margin-bottom: 0;
	}
	
	.region-subtitle {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.region-buttons {
		width: 100%;
		gap: 15px;
		margin-top: 0;
		order: 3;
	}
	
	.region-btn {
		padding: 14px 30px;
		font-size: 14px;
		flex: 1;
		min-width: 140px;
	}
	
	.region-car {
		order: 2;
	}
	
	.region-car img {
		max-height: 250px;
	}
}

