/* Стили только для страницы Контакты */

.content-block {
	background: #fefce8;
}



/* Основной контейнер контактов */
.contacts-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Вводный текст */
.contacts-intro {
	margin-bottom: 40px;
	text-align: center;
}

.contacts-text {
	font-size: 24px;
	line-height: 1.6;
	color: #333;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

/* Секция реквизитов */
.contacts-requisites {
	margin-bottom: 50px;
	text-align: center;
}

.requisites-title {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
}

.requisites-link {
	color: #2563eb;
	text-decoration: none;
	font-size: 16px;
	border-bottom: 1px solid #2563eb;
	transition: color 0.3s ease;
}

.requisites-link:hover {
	color: #1d4ed8;
}

/* Контактные блоки */
.contacts-blocks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.contact-block {
	background: var(--theme-color, #1e3a8a);
	border: none;
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-block:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	font-size: 32px;
	margin-bottom: 15px;
	color: white;
	background: transparent;
}

.contact-title {
	font-size: 18px;
	font-weight: 500;
	color: white;
	margin-bottom: 10px;
}

.contact-info {
	font-size: 14px;
	color: white;
	line-height: 1.5;
}

/* Карта */
.contacts-map {
	margin-top: 50px;
}

.map-container {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
	width: 100%;
	height: 100%;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-size: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
	.contacts-content {
		padding: 20px 15px;
	}
	.contacts-text {
		font-size: 18px;
	}
	
	.contacts-blocks {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.contact-block {
		padding: 20px 15px;
	}
	
	.map-container {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.contacts-text {
		font-size: 14px;
	}
	
	.requisites-title {
		font-size: 20px;
	}
	
	.contact-title {
		font-size: 16px;
	}
	
	.contact-info {
		font-size: 13px;
	}
}

