.about-page-section {
	width: 100%;
	padding: 80px 0;
	background-image: url('../images/backgrounds/background-fifth.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

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

.about-content {
	flex: 1;
	max-width: 600px;
}

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

.about-text {
	font-size: 18px;
	line-height: 1.8;
	color: #333333;
}

.about-text p {
	margin: 0;
}

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

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

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

@media (max-width: 968px) {
	.about-page-section {
		padding: 60px 0;
	}
	
	.about-container {
		flex-direction: column;
		gap: 40px;
		padding: 0 20px;
	}
	
	.about-content {
		max-width: 100%;
		text-align: center;
	}
	
	.about-title {
		font-size: 40px;
		margin-bottom: 20px;
	}
	
	.about-text {
		font-size: 16px;
		text-align: left;
	}
	
	.about-car {
		width: 100%;
		max-width: 500px;
	}
	
	.about-car img {
		max-height: 350px;
	}
}

@media (max-width: 640px) {
	.about-page-section {
		padding: 40px 0;
	}
	
	.about-title {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	.about-text {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.about-car img {
		max-height: 250px;
	}
}

