/* Стили для заголовка */
.header_tizer_info {
	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;
	margin-bottom: 40px;
}

/* Список услуг */
.tizer_info_list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background-color: #E5E5E5;
}

/* Элемент услуги */
.tizer_info_item {
	display: flex;
	align-items: center;
	padding: 40px;
	background-color: #fff;
	gap: 40px;
	transition: all 0.3s ease;
}

.tizer_info_item:hover {
	background-color: #F8F8F8;
}

/* Иконка услуги */
.tizer_info_icon {
	flex-shrink: 0;
}

.circle {
	width: 40px;
	height: 40px;
	background-color: #FFD700;
	border-radius: 50%;
}

/* Контент услуги */
.tizer_info_content {
	flex-grow: 1;
	max-width: 800px;
}

.tizer_info_title {
	font-size: 24px;
	font-weight: 600;
	color: #1A1A1A;
	margin-bottom: 10px;
}

.tizer_info_description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

/* Кнопка заявки */
.request-btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: #E32636;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

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

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
	.tizer_info_item {
		padding: 30px;
		gap: 30px;
	}

	.tizer_info_title {
		font-size: 22px;
	}
}

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

	.title {
		font-size: 36px;
	}

	.tizer_info_item {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
		gap: 20px;
	}

	.tizer_info_content {
		max-width: 100%;
	}

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

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

	.subtitle {
		font-size: 16px;
	}

	.title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.tizer_info_title {
		font-size: 20px;
	}

	.tizer_info_description {
		font-size: 14px;
	}

	.request-btn {
		font-size: 14px;
		padding: 10px 20px;
	}

	.circle {
		width: 32px;
		height: 32px;
	}
} 