body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}
.breadcrumbs-line {
	position: absolute;
	top: 120px;
	width: 100%; /* Растягиваем на всю ширину контейнера */
	height: 2px;
	left: 0; /* Убираем смещение влево */
	background-color: #5586C3;
	border: none;
	margin: 0;
}


/* === Контейнер страницы === */
.contacts-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px; /* добавляем внутренние отступы вместо фиксированного отступа */
}

/* === Хлебные крошки === */
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.875rem; /* заменяем фиксированную ширину */
	color: #8C8F96;
	margin: 0 auto 20px;
}

.breadcrumbs a {
	text-decoration: none;
	color: #8C8F96;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

/* === Заголовок === */
.breadcrumbs-header {
	display: flex;
	align-items: center;
	justify-content: left; /* Выровняем текст по центру */
	background: #172530;
	color: #FFFFFF;
	font-size: 2rem;
	font-weight: 600;
	height: 80px;
	padding: 0 20px;
	margin: 0 auto 20px;
	max-width: 100%;
	box-sizing: border-box; /* Учитываем padding */
}






.instructions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 0 auto;
	max-width: 1200px;
}

.instruction-item {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid #eaeaea;
}

.instruction-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.instruction-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.instruction-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px 0;
	color: #333;
	line-height: 1.4;
	flex-grow: 1;
}

.instruction-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #5586C3;
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	width: 100%;
	box-sizing: border-box;
}

.instruction-download:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.instruction-download:active {
	transform: translateY(0);
}

.download-icon {
	flex-shrink: 0;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
	.instructions-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 0 15px;
	}
}

/* Адаптивность для мобильных */
@media (max-width: 576px) {
	.instructions-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0 10px;
	}

	.instruction-item {
		padding: 20px;
	}

	.instruction-title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.instruction-download {
		padding: 10px 16px;
		font-size: 14px;
	}
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
	.instruction-download {
		flex-direction: column;
		gap: 8px;
		padding: 8px;
	}

	.download-icon {
		margin-bottom: 2px;
	}
}