/* === Основной стиль (десктоп) === */
.about-feedback {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	padding: 100px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	box-sizing: border-box;
	margin-top: 100px;
}

.about-form {
	width: 1200px;
	display: flex;
	border-radius: 20px;
	overflow: hidden;
}

.about-image {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-image-logo {
	width: 80px;
}

.about-contacts {
	width: 35%;
	background-color: #007bff;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 40px 30px;
	gap: 20px;
	box-sizing: border-box;
}

.contacts-title {
	display: flex;
	justify-content: center;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contacts-message {
	font-size: 13px;
	line-height: 1.6;
}

.contacts-icon {
	width: 30px;
	object-fit: contain;
	filter: brightness(100) invert(100);
}

.contacts-adres,
.contacts-phone,
.contacts-about-email,
.contacts-about-email-2 {
	font-size: 15px;
	line-height: 1.5;
}

.contacts-about-email a,
.contacts-about-email-2 a {
	color: #fff;
	text-decoration: none;
}

.contacts-about-email a:hover,
.contacts-about-email-2 a:hover {
	text-decoration: underline;
}

.feedback-form {
	width: 65%;
	background-color: #f9f9f9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	box-sizing: border-box;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	color: #333;
	padding: 30px;
}

.feedback-image {
	width: 50px;
	height: auto;
}

.feedback-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.feedback-name,
.feedback-email,
.feedback-phone,
.feedback-text {
	width: 100%;
	max-width: 400px;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s;
	box-sizing: border-box;
}

.feedback-name:focus,
.feedback-email:focus,
.feedback-phone:focus,
.feedback-text:focus {
	border-color: #007bff;
}

.feedback-text {
	height: 100px;
	resize: none;
}

.feedback-btn {
	padding: 12px 24px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.feedback-btn:hover {
	background-color: #0056b3;
}

/* === Планшеты: до 1024px === */
@media (max-width: 1024px) {
	.about-feedback {
		padding: 60px 20px;
		margin-top: 60px;
	}

	.about-form {
		flex-direction: column;
		width: 100%;
	}

	.about-contacts,
	.feedback-form {
		width: 100%;
		border-radius: 0;
	}

	.contacts-title {
		font-size: 28px;
	}

	.feedback-title {
		font-size: 20px;
	}
}

/* === Смартфоны: до 768px === */
@media (max-width: 768px) {
	.about-feedback {
		padding: 40px 15px;
	}

	.contacts-title {
		font-size: 24px;
	}

	.contacts-message,
	.contacts-adres,
	.contacts-phone,
	.contacts-about-email,
	.contacts-about-email-2 {
		font-size: 13px;
	}

	.feedback-title {
		font-size: 18px;
		text-align: center;
	}

	.feedback-name,
	.feedback-email,
	.feedback-phone,
	.feedback-text {
		max-width: 100%;
	}

	.feedback-btn {
		width: 100%;
	}
}

/* === Маленькие смартфоны: до 480px === */
@media (max-width: 480px) {
	.about-feedback {
		padding: 30px 10px;
	}

	.about-image-logo {
		width: 60px;
	}

	.contacts-title {
		font-size: 20px;
	}

	.feedback-title {
		font-size: 16px;
	}

	.feedback-btn {
		font-size: 14px;
		padding: 10px 20px;
	}
}

/* Карта */
.about-maps {
	width: 100%;
	height: 500px;
}

.maps {
	width: 100%;
	height: 100%;
}
