.first-page-section {
	position: relative;
	width: 100%;
	height: calc(100vh - 200px);
	min-height: 600px;
	background-image: url('../images/backgrounds/background-first.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.first-page-container {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.first-page-car {
	flex: 0 0 auto;
	width: 50%;
	max-width: 700px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
}

.first-page-car img {
	width: 100%;
	height: auto;
	max-height: 90%;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.first-page-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 0;
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.first-page-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 30px 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: 1px;
}

.first-page-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333333;
	margin: 0 0 40px 0;
	max-width: 550px;
}

.first-page-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #2d5a4f;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(45, 90, 79, 0.3);
	letter-spacing: 1px;
}

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

.first-page-button:active {
	transform: translateY(0);
}

@media (max-width: 1200px) {
	.first-page-title {
		font-size: 38px;
	}
	
	.first-page-text {
		font-size: 16px;
	}
	
	.first-page-container {
		gap: 40px;
		padding: 0 30px;
	}
}

@media (max-width: 968px) {
	.first-page-section {
		height: calc(100vh - 150px);
		min-height: 500px;
	}
	
	.first-page-container {
		flex-direction: column;
		justify-content: center;
		gap: 30px;
		padding: 20px;
	}
	
	.first-page-car {
		width: 100%;
		max-width: 500px;
		height: auto;
		justify-content: center;
	}
	
	.first-page-car img {
		max-height: 300px;
		object-position: center;
	}
	
	.first-page-content {
		align-items: center;
		text-align: center;
		max-width: 100%;
	}
	
	.first-page-title {
		font-size: 32px;
		text-align: center;
	}
	
	.first-page-text {
		text-align: center;
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.first-page-section {
		height: calc(100vh - 120px);
		min-height: 450px;
	}
	
	.first-page-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.first-page-text {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	.first-page-button {
		padding: 14px 35px;
		font-size: 16px;
	}
	
	.first-page-car img {
		max-height: 200px;
	}
}

