/* Стили для заголовка */
.header_tizer_info_v2 {
	margin-bottom: 60px;
}
/* Стили для заголовка */
.header {
	margin-bottom: 60px;
}
.subtitle {
	color: #E32636;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 500;
}

.title {
	font-size: 48px;
	font-weight: bold;
	line-height: 1.2;
	color: #1A1A1A;
}

/* Сетка услуг */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
}

/* Карточка услуги */
.service-card {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	border: 1px solid #E5E5E5;
	transition: all 0.3s ease;
	cursor: pointer;
}

.service-card:hover {
	border-color: #E32636;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(227, 38, 54, 0.1);
}

.service-number {
	color: #E32636;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.service-title {
	font-size: 20px;
	font-weight: 600;
	color: #1A1A1A;
	line-height: 1.3;
	text-wrap-style: balance;
}

/* Блок консультации */
.consultation-block {
	grid-column: 4;
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
	&:before {
		position:relative;
		content: url("data:image/svg+xml,%3Csvg width='83' height='92' viewBox='0 0 83 92' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.469106 47.7324C1.26104 63.7971 9.01527 83.8147 17.0207 90.3597C18.9965 91.9787 20.4568 91.1369 19.3818 88.9718C17.8472 85.7606 16.493 77.9634 15.7835 68.0067C15.4475 63.137 16.3483 50.326 17.417 46.0822C24.8482 15.6057 32.1466 13.6045 50.1739 37.1472C54.9742 43.4226 54.8968 43.0183 51.4769 44.9098C46.5989 47.6126 43.2894 50.1869 44.0594 50.6736C44.4177 50.9149 48.567 52.9412 53.2908 55.1942C62.8941 59.7731 69.0533 62.9607 74.0433 65.9697C81.1432 70.2395 82.3417 67.14 81.9985 45.7735C81.9504 42.0904 81.9705 37.4926 82.0067 35.5635C82.1962 30.8557 78.3268 30.8433 70.3406 35.5835C68.3184 36.7513 68.6745 37.0232 66.5984 32.4224C64.5222 27.8217 62.2493 23.697 59.7057 18.8774C40.4227 -17.3916 -1.69144 3.14176 0.469106 47.7324ZM9.5002 26.0831C15.5321 5.00763 29.9067 -2.50677 44.1238 7.96583C49.6245 12.0552 62.0215 31.8055 63.437 38.7793C63.866 40.9576 65.8177 40.7351 71.7898 37.7765L76.81 35.3296C76.8077 35.3601 75.6232 54.8651 76.6385 62.8822L76.8479 64.4003C69.8674 60.6913 58.5489 54.6048 53.2507 52.125C49.5108 50.3745 48.999 50.0298 49.6677 49.7116C50.7846 49.151 57.7915 43.8472 58.8322 43.5874C62.6673 42.616 43.5313 21.689 36.6204 19.2117C23.0078 14.334 12.1291 30.4797 10.1375 55.0451C9.54329 62.2985 9.44439 62.9043 8.99269 61.031C6.55668 51.1602 6.87371 35.3621 9.5002 26.0831Z' fill='%23D31C21'/%3E%3C/svg%3E");
		height: 92px;
		width: 83px;
		top: -70px;
		left: 50px;
		@media (width <= 780px) {
			display:none;
		}
	}
}

.arrow-icon {
	width: 60px;
	height: auto;
	margin-bottom: 20px;
}

.consultation-btn {
	padding: 15px;
	background-color: #E32636;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 17px;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 250px;
	min-width: 250px;
}

.consultation-btn:hover {
	background-color: #C71F2D;
	transform: translateY(-2px);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.consultation-block {
		grid-column: auto;
		grid-column-end: span 2;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 40px 20px;
	}

	.title {
		font-size: 36px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card {
		padding: 20px;
	}

	.consultation-block {
		grid-column: auto;
		align-items: center;
	}

	.consultation-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 30px 15px;
	}

	.subtitle {
		font-size: 16px;
	}

	.title {
		font-size: 28px;
	}

	.service-number {
		font-size: 20px;
	}

	.service-title {
		font-size: 18px;
	}
}