/* Подключение шрифтов */
@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

/* Основные стили */
main {
	font-family: 'Montserrat', "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	background-color: white;
	color: #333;
}

.top-border {
	border-top: 8px solid #f79322;
	margin-bottom: 30px;
}

.title {
	font-size: 36px;
	font-weight: 700;
	color: #f79322;
	margin-bottom: 20px;
}

.text-center {
	text-align: center;
}

.contact-card {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-bottom: 30px;
}

.contact-info {
	margin-bottom: 25px;
}

.contact-info h3 {
	color: #f79322;
	font-size: 24px;
	margin-bottom: 15px;
}

.contact-info p {
	margin-bottom: 10px;
	font-size: 16px;
}

.contact-info a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info a:hover {
	color: #f79322;
}

.contact-email {
	color: #f79322;
}

/* Социальные иконки */
.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #f79322;
	border-radius: 50%;
	color: white;
	transition: background-color 0.3s;
}

.social-links a:hover {
	background-color: #e07e1a;
}

.icon-social {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.icon-social.max {
	transform: translate(5px, 3px);
}

/* Блок свидетельств о регистрации доменов */
.domain-certificates {
	text-align: center;
	margin: 30px 0 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.domain-certificates h4 {
	color: #f79322;
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 600;
}

.domain-certificates p {
	margin: 0;
}

.domain-certificates a {
	display: inline-block;
	margin: 5px 10px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px dashed #ccc;
	transition: all 0.3s;
}

.domain-certificates a:hover {
	color: #f79322;
	border-bottom-color: #f79322;
}

/* Прочие ссылки (карточка предприятия, проверка контрагента) */
.utility-links {
	text-align: right;
	margin-top: 20px;
}

.utility-links a {
	color: #f79322;
	text-decoration: none;
	margin-left: 20px;
	font-size: 14px;
	transition: color 0.3s;
}

.utility-links a:hover {
	color: #e07e1a;
	text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
	.title {
		font-size: 28px;
	}

	.contact-card {
		padding: 20px;
	}

	.utility-links {
		text-align: center;
	}

	.utility-links a {
		display: block;
		margin: 10px 0;
	}

	.domain-certificates a {
		display: block;
		margin: 8px 0;
	}
}