html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: 'Roboto', sans-serif;
}

/* Основной контейнер — как у Tilda */
.t-container {
	max-width: 1680px;
	margin: 45px auto 10px 0;
	padding: 0 20px;
	box-sizing: border-box;
	overflow: hidden;
}

/* Hero-секция */
.hero-section {
	position: relative;
	min-height: 391px;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	margin-top: 100px;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.hero-title {
	font-weight: 300;
	font-size: 52px;
	margin: 0;
	letter-spacing: -0.5px;
}

.hero-subtitle {
	font-weight: 300;
	font-size: 24px;
	margin-top: 10px;
	opacity: 0.9;
}

/* Вторичная картинка (worker-hero) */
.hero-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 5%;
	pointer-events: none;
	z-index: 1;
}

/* ------- текст в заголовке ------- */
.hero-content-wrapper {
	text-align: left;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 2.1;
	margin: 0 0 16px 0;
	white-space: pre-line;
	text-transform: uppercase;
	color: white;
}

.hero-subtitle {
	font-size: 1.4rem;
	opacity: 0.95;
	margin: 0;
	white-space: pre-line;
	text-transform: uppercase;
	color: white;
}

.hero-image-overlay h1,
.hero-image-overlay p {
	margin: 0;
	white-space: normal;
	word-wrap: break-word;
	text-align: left;
	color: white;
	max-width: 600px;
}

/* ------------------------------- */
.hero-image-overlay img {
	height: 60%;
	width: auto;
	max-height: 100%;
	opacity: 0.7;
	object-fit: contain;
	flex-shrink: 0;
}

/* ——— остальной контент ——— */
.main-content {
	text-align: left;
	padding-top: 30px;
}

.main-content h2 {
	font-size: 25px;
	font-weight: 400;
	color: #000;
	margin: 10px 0;
}

.main-content h3 {
	font-size: 22px;
	font-weight: 400;
	color: #000;
	margin: 25px 0 15px 0;
}

.main-content p {
	font-size: 18px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 17px;
}

.main-content a {
	color: #2971f5;
	text-decoration: none;
}

.main-content a:hover {
	text-decoration: underline;
}

/* ==================== ВСТУПИТЕЛЬНЫЙ БЛОК ==================== */
.intro-section {
	margin-bottom: 40px;
    margin-top: 1px;
}

.intro-section h2 {
	font-size: 28px;
	color: #003c72;
	margin-bottom: 25px;
}

.intro-section p {
	margin-bottom: 20px;
	font-weight: lighter;
}

/* Список с галочками (как в примере) */
.included-list {
	padding-left: 0;
	list-style: none;
	font-size: 18px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 20px;
	max-width: 800px;
}

.included-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	line-height: 1.5;
	color: #000;
	font-weight: 300;
}

.included-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 32C24.8365 32 32 24.8365 32 16C32 7.16345 24.8365 0 16 0C7.16345 0 0 7.16345 0 16C0 24.8365 7.16345 32 16 32ZM25.9882 12.0673L24.0118 9.93271L14.2 19.0177L7.98823 13.2661L6.01177 15.4006L14.2 22.9823L25.9882 12.0673Z' fill='%23003c72'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* ==================== БЛОК С ФОТО СЛЕВА И ТЕКСТОМ СПРАВА ==================== */
.policy-section {
	margin: 60px 0 10px 0;
}

.policy-section h2 {
	font-size: 40px;
	color: #000;
	margin-bottom: 40px;
}

/* Grid-контейнер для гибкого позиционирования — стандартные размеры */
.policy-content {
	display: grid;
	grid-template-columns: 25% 1fr; /* Уменьшена ширина колонки с фото до 25% */
	grid-template-rows: auto auto auto;
	gap: 20px 10px; /* Горизонтальный отступ уменьшен до 10px для >1920px */
	align-items: start;
}

.policy-image {
	grid-column: 1;
	grid-row: 1 / 4; /* Изображение занимает все 3 строки */
}

.policy-img {
	width: 100%;
	max-width: 400px; /* Уменьшен максимальный размер фото */
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	object-fit: cover;
}

/* Первые два параграфа — всегда справа от изображения */
.policy-text {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.policy-paragraph {
	margin: 0;
}

.policy-paragraph p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #000;
	font-weight: lighter;
}

.policy-paragraph strong {
	color: #000;
}

/* Блок с принципами (третий параграф + список) */
.policy-principles {
	grid-column: 2;
	grid-row: 2 / 4; /* Занимает строки 2 и 3 */
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: -10px;
}

.policy-principles .policy-paragraph:last-child {
	margin-top: 5px;
}

/* Подпись */
.signature-block {
	margin: 40px 0 40px 0;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.signature {
	font-style: italic;
	font-size: 18px;
	color: #333;
	margin: 0;
}

/* ==================== ПРОСТОЙ СПИСОК ДОКУМЕНТОВ ==================== */
.documents-section {
	margin-top: 60px;
}

.documents-section h2 {
	font-size: 28px;
	color: #003c72;
	margin-bottom: 40px;
}

.documents-simple-list {
	padding-left: 0;
	list-style: none;
	margin-bottom: 50px;
	max-width: 800px;
}

.documents-simple-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.document-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	color: #003c72;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 12px 15px;
	border-radius: 4px;
	width: 100%;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
	background-color: #f9f9f9;
}

.document-link:hover {
	background-color: #eef5ff;
	border-color: #003c72;
	color: #00264d;
	text-decoration: none;
	transform: translateX(5px);
}

.pdf-label {
	background-color: #003c72;
	color: white;
	padding: 4px 12px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	margin-left: 15px;
	flex-shrink: 0;
}

.document-link:hover .pdf-label {
	background-color: #00264d;
}

/* Контакты для сообщения о нарушениях */
.report-section {
	margin-top: 60px;
}

.report-section h2 {
	font-size: 28px;
	color: #003c72;
	margin-bottom: 30px;
}

.report-contacts {
	background-color: #f9f9f9;
	padding: 25px;
	border-radius: 8px;
	margin: 25px 0;
}

.report-contacts p {
	margin-bottom: 12px;
	font-size: 18px;
}

.report-contacts strong {
	color: #003c72;
	min-width: 200px;
	display: inline-block;
}

.note {
	color: #666;
	font-size: 16px;
	font-style: italic;
	margin-top: 20px;
}

/* Вопросы */
.аny-questions {
	margin-top: 60px;
}

.аny-questions h2 {
	font-size: 28px;
	color: #003c72;
	margin-bottom: 25px;
}

.аny-questions p {
	font-weight: lighter;
	margin-bottom: 20px;
}

/* Форма — фон на всю ширину */
.contact-form-section-fullwidth {
	background-color: #041320;
	padding: 60px 0;
	width: 100%;
	color: white;
}

.contact-form-section-fullwidth .contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row--top {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.form-row--top input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #EFEFEF;
	font-size: 16px;
	background-color: white;
	color: #333;
	line-height: 1.4;
}

.form-row--message {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.form-row--message textarea {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #EFEFEF;
	font-size: 16px;
	resize: vertical;
	min-height: 120px;
}

.button-checkbox {
	width: 32.7%;
}

.fake-button {
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;
	font: inherit;
	cursor: pointer;
	outline: none;
	padding: 12px 16px;
	border: 5px solid #ccc;
	font-size: 16px;
	background-color: #041320;
	color: #ffffff;
	text-align: center;
	min-width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.fake-button:hover {
	background-color: #f5f5f5;
	color: #000;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: white;
	margin-top: 15px;
}

.checkbox-label input {
	margin-top: 4px;
}

.form-row--message textarea::placeholder {
	font-size: 16px;
	font-family: 'Roboto', sans-serif !important;
}

.checkbox-label a {
	text-decoration: none;
	color: #EFEFEF;
}

/* "Хлебные крошки" */
.t-seed {
	display: inline;
	float: left;
	width: 100%;
}

.t-seed a {
	color: #303030;
	text-decoration: underline;
}

div.path_link {
	color: #000;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 15px !important;
}

.path_link a {
	text-decoration: none;
}

.path_link a:hover {
	text-decoration: underline;
}

.path_link {
	font-size: 15px !important;
}

.simple_text {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: lighter;
	font-size: 18px;
	line-height: 1.6;
	color: #333;
}

/* Стили для блока коммерческого предложения */
.no-wrap {
	white-space: nowrap;
}

.t589__img {
	border-radius: 10px;
}

#rec348694746 .t589__title {
	font-size: 30px !important;
	font-weight: 700 !important;
	color: #212121 !important;
	margin-bottom: 20px !important;
	line-height: 1.2 !important;
}

#rec348694746 .t589__col.t-col_6 {
	padding-top: 20px;
	box-sizing: border-box;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	min-height: 100% !important;
}

#rec348694746 .t589__col.t-col_6 {
	flex: 0 0 46.333333% !important;
	max-width: 58.333333% !important;
}

#rec348694746 .t589__col.t-col_10 {
	flex: 0 0 41.666667% !important;
	max-width: 41.666667% !important;
}

#rec348694746 .t589__col.t-col_6 .t589__textwrapper {
	text-align: center !important;
}

#rec348694746 .t589__col.t-col_6 .t589__title {
	text-align: center !important;
}

#rec348694746 .t589__buttons-wrapper {
	justify-content: center !important;
	flex-wrap: wrap;
	display: flex !important;
	flex-direction: row !important;
	gap: 60px !important;
}

#rec348694746 .t589__btn {
	display: inline-block !important;
	width: 200px !important;
	height: 50px !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 18px !important;
	line-height: 50px !important;
	text-align: center !important;
	text-decoration: none !important;
	border: 0 !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	position: relative !important;
	font-weight: 300 !important;
}

#rec348694746 .t589__btn[href*="lift.kmzlift.ru"] {
	background-color: #19233A !important;
	color: #FFFFFF !important;
}

#rec348694746 .t589__btn[href="/katalogi"] {
	background-color: #003C72 !important;
	color: #FFFFFF !important;
	border: 1px solid #003C72 !important;
}

#rec348694746 .t589__container {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

/* Стили для антикоррупционных документов */
.pdf-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #212121;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.pdf-icon-sm {
	width: 30px;
	height: 40px;
	margin-right: 20px;
	flex-shrink: 0;
	font-weight: 500;
}

.pdf-name-center {
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	flex-grow: 1;
	display: flex;
	align-items: center;
	min-height: 50px;
}

/* ==================== БЛОК СООБЩИТЬ О НАРУШЕНИИ ==================== */
.report-violation-section {
	margin-top: 40px;
}

.report-violation-section h2 {
	font-size: 30px;
	color: #000000;
	margin-bottom: 30px;
}

.report-violation-form {
	max-width: 600px;
	width: 100%;
	margin: 0 0 20px 0;
}

.report-violation-form .form-group {
	position: relative;
	margin-bottom: 20px;
	width: 100%;
}

.report-violation-form .form-group input,
.report-violation-form .form-group textarea {
	width: 100%;
	padding: 12px 30px 12px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
	font-family: 'Roboto', Arial, sans-serif;
}

.report-violation-form .form-group input:focus,
.report-violation-form .form-group textarea:focus {
	outline: none;
	border-color: #0056b3;
}

.report-violation-form .required-field .required-star {
	color: #e74c3c;
	font-weight: bold;
	position: absolute;
	right: 12px;
	top: 20px;
	pointer-events: none;
	z-index: 10;
}

.report-violation-form .consent-group {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	font-family: 'Roboto', Arial, sans-serif;
}

.report-violation-form .consent-group input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 4px;
	flex-shrink: 0;
}

.report-violation-form .consent-group label {
	color: #000;
	font-size: 14px;
	font-family: 'Roboto', Arial, sans-serif;
}

.report-violation-form .consent-group a {
	color: #0056b3;
	text-decoration: none;
}

.report-violation-form .consent-group a:hover {
	text-decoration: underline;
}

.report-violation-form .submit-button-wrapper {
	text-align: left;
	margin-top: 10px;
}

.report-violation-form .btn {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-family: 'Roboto', Arial, sans-serif;
	transition: all 0.3s ease;
	width: auto;
	min-width: 150px;
	display: inline-block;
}

.report-violation-form .btn-outline {
	background: #fff;
	color: #19233A;
	border: 1px solid #19233A;
	cursor: pointer;
}

.report-violation-form .btn-outline:hover {
	background: #19233A;
	color: #fff;
}

.report-violation-section .note {
	color: #666;
	font-size: 14px;
	font-style: italic;
	margin-top: 10px;
	margin-bottom: 5px;
}

.report-violation-section .email-note {
	color: #333;
	font-size: 15px;
	margin-top: 10px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.report-violation-section .email-note strong {
	color: #003c72;
}

.report-violation-form .form-error-message {
	color: #e74c3c;
	font-size: 14px;
	font-family: 'Roboto', Arial, sans-serif;
	min-height: 1.5em;
	margin-bottom: 12px;
	display: none;
}

.report-violation-form .form-error-message.show {
	display: block;
}

/* Стили для заблокированной кнопки */
#submit-report-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
	background-color: #cccccc;
	border-color: #999999;
}

/* Стили для активной кнопки */
#submit-report-btn:enabled {
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
	background-color: #19233a;
	border-color: #19233a;
	color: white;
}

/* Стили для сообщений об ошибках */
.form-error-message {
	display: none;
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	padding: 12px 20px;
	margin-bottom: 20px;
	font-size: 14px;
}

.form-error-message.show {
	display: block;
}

.field-error {
	border-color: #ff0000 !important;
	border-width: 2px !important;
	outline: none !important;
}

.required-star {
	color: red;
	margin-left: 2px;
}

.field-hint {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}

/* Подсветка валидных полей */
#message.valid {
	border-color: #28a745;
}

.success {
	color: #28a745;
	margin-bottom: 20px;
}

/* ==================== АДАПТИВНОСТЬ ==================== */

/* При разрешении 769px–1920px: уменьшаем фото + принципы уходят ПОД изображение */
@media (min-width: 769px) and (max-width: 1920px) {
	.policy-content {
		grid-template-columns: 22% 1fr; /* Уменьшаем колонку с фото */
		grid-template-rows: auto auto auto;
		gap: 20px 15px; /* Горизонтальный отступ */
	}
	
	.policy-image {
		grid-column: 1;
		grid-row: 1; /* Только первая строка */
	}
	
	.policy-img {
		max-width: 231px; /* Уменьшаем фото */
	}
	
	.policy-text {
		grid-column: 2;
		grid-row: 1; /* Первая строка, вторая колонка */
	}
	
	.policy-principles {
		grid-column: 1 / 3; /* Занимает обе колонки */
		grid-row: 2 / 4; /* Строки 2 и 3 */
		margin-top: 10px;
	}
}

/* При разрешении >1920px: всё остаётся справа от изображения с компактным отступом */
@media (min-width: 1921px) {
	.policy-content {
		grid-template-columns: 25% 1fr; /* Компактная колонка с фото */
		grid-template-rows: auto auto auto;
		gap: 20px 5px; /* УМЕНЬШЕН ДО 5px (было 10px) */
	}
	
	.policy-image {
		grid-column: 1;
		grid-row: 1 / 4;
	}
	
	.policy-img {
		max-width: 400px; /* Компактный размер фото */
	}
	
	.policy-text {
		grid-column: 2;
		grid-row: 1;
	}
	
	.policy-principles {
		grid-column: 2;
		grid-row: 2 / 4;
		margin-top: -10px;
	}
}

/* Мобильная версия */
@media (max-width: 768px) {
	.policy-content {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 15px;
	}
	
	.policy-image {
		grid-column: 1;
		grid-row: 1;
		display: flex;
		justify-content: center;
	}
	
	.policy-img {
		width: 70% !important;
		max-width: 250px !important;
		height: auto;
		margin: 0 auto;
		display: block;
	}
	
	.policy-text {
		grid-column: 1;
		grid-row: 2;
	}
	
	.policy-principles {
		grid-column: 1;
		grid-row: 3;
		margin-top: 0;
	}
	
	.policy-section h2 {
		font-size: 28px;
		margin-bottom: 25px;
		text-align: left;
	}
	
	.intro-section h2 {
		font-size: 24px;
		color: #000;
	}
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
	.policy-img {
		width: 100% !important;
		max-width: 200px !important;
	}
	
	.policy-section h2 {
		font-size: 24px;
	}
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
	.policy-img {
		width: 100%;
		max-width: 300px;
	}
}

/* Адаптив для списка документов */
@media (max-width: 768px) {
	.documents-simple-list {
		margin-bottom: 30px;
	}
	
	.document-link {
		font-size: 16px;
		padding: 10px 12px;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.pdf-label {
		margin-left: 0;
		margin-top: 8px;
		align-self: flex-start;
	}
	
	.included-list {
		font-size: 16px;
	}
	
	.included-list li {
		padding-left: 25px;
	}
}

/* Адаптив для формы */
@media (max-width: 768px) {
	.form-row--top,
	.form-row--message {
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}
	
	.form-row--top input,
	.form-row--message textarea {
		width: 100%;
		padding: 12px 16px;
		box-sizing: border-box;
	}
	
	.button-checkbox {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}
	
	.fake-button {
		width: 100% !important;
		min-width: auto;
		padding: 12px 16px;
		align-self: stretch;
		justify-content: center;
		box-sizing: border-box;
	}
	
	.checkbox-label {
		margin-top: 0;
		width: 100%;
	}
	
	.form-row--message textarea {
		border: 1px solid #EFEFEF;
	}
}

/* Промежуточный диапазон: 769px - 1024px — кнопка гибкая */
@media (min-width: 769px) and (max-width: 1024px) {
	.fake-button {
		width: auto;
		max-width: 100%;
		padding: 12px 16px;
		box-sizing: border-box;
	}
	
	.form-row--message textarea {
		flex: 1;
		padding: 12px 16px;
		border: 1px solid #EFEFEF;
		font-size: 16px;
		resize: vertical;
		min-height: 120px;
	}
}

@media (min-width: 934px) and (max-width: 1920px) {
	.button-checkbox {
		width: 32.2%;
	}
}

/* Большой экран: >1024px — кнопка 89% */
@media (min-width: 1025px) {
	.fake-button {
		width: 100% !important;
	}
	
	.form-row--message textarea {
		flex: none;
		padding: 12px 16px;
		border: 0px;
		font-size: 15px;
		resize: vertical;
		min-height: 120px;
		width: 63.5%;
	}
}

/* Десктоп: кнопка — как часть колонки (примерно 93% от 32.7%) */
@media (min-width: 769px) {
	.fake-button {
		width: 100%;
	}
	
	.form-row--message textarea {
		flex: 1;
		padding: 12px 16px;
		border: 1px solid #EFEFEF;
		font-size: 16px;
		resize: vertical;
		min-height: 120px;
	}
}

@media (min-width: 769px) and (max-width: 933px) {
	.button-checkbox {
		width: 31.8%;
	}
}

/* Адаптив для основного контента */
@media (max-width: 976px) {
	.t-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

/* Адаптив для списка документов */
@media (max-width: 768px) {
	.main-content h2 {
		font-size: 22px;
	}
	
	.main-content p {
		font-size: 16px;
	}
	
	.report-contacts p {
		font-size: 16px;
	}
	
	.report-contacts strong {
		min-width: auto;
		display: block;
		margin-bottom: 5px;
	}
}

/* Адаптив для блока коммерческого предложения */
@media (max-width: 1000px) {
	#rec348694746 .t589__buttons-wrapper {
		flex-direction: column !important;
		gap: 20px !important;
	}
	
	#rec348694746 .t589__container {
		flex-wrap: wrap;
	}
	
	#rec348694746 .t589__col.t-col_6,
	#rec348694746 .t589__col.t-col_10 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	
	#rec348694746 .t589__img {
		margin-top: 30px;
		width: 100%;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}

/* Адаптивность для мобильных устройств - форма сообщения о нарушении */
@media (max-width: 768px) {
	.report-violation-section h2 {
		font-size: 24px;
		margin-bottom: 25px;
	}
	
	.report-violation-form {
		max-width: 100%;
	}
	
	.report-violation-form .form-group input,
	.report-violation-form .form-group textarea {
		padding: 10px 25px 10px 10px;
		font-size: 14px;
	}
	
	.report-violation-form .consent-group label {
		font-size: 12px;
	}
	
	.report-violation-form .btn {
		padding: 10px 20px;
		font-size: 14px;
		min-width: 120px;
	}
}

@media (max-width: 480px) {
	.report-violation-section {
		margin-top: 40px;
	}
	
	.report-violation-form .btn {
		width: 100%;
	}
}

.local-acts {
    font-size: 25px !important;
}