* {
	box-sizing: border-box;
}

body {
	font-family: 'Asap', sans-serif;
	margin: 0;
	background-color: #ebebfa;
	color: #1a1a1a;
}


/* ================= PAGE CONTENT ================= */
.contacts-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 150px 30px 80px;
}

.contacts-heading {
	margin-bottom: 40px;
}

.contacts-heading h1 {
	font-size: 34px;
	font-weight: 600;
	margin: 0 0 10px;
}

.contacts-heading p {
	font-size: 15px;
	color: #6a6a6a;
	margin: 0;
}

.contacts-layout {
	display: grid;
	gap: 30px;
	align-items: stretch;
}

.contacts-cards {
	display: grid;
	grid-template-columns: 3fr 3fr;   /* всегда 2 колонки */
	gap: 20px;
}

.contact-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px 24px;
	border-radius: 18px;
	background: #fff;
}

.contact-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(54, 110, 230, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-icon svg {
	width: 20px;
	height: 20px;
	stroke: #366ee6;
}

.contact-card h3 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 6px;
}

.contact-card p,
.part_address {
	font-size: 14px;
	color: #4a4a4a;
	margin: 0;
	text-decoration: none;
	line-height: 1.5;
}

.contact-card a:hover {
	color: #366ee6;
}

.map-card {
	max-width: 420px;
	max-height: 210px;
	background: #fff;
	border-radius: 16px;
	padding: 28px;
}

.map-info h3 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
	color: #222;
}

.map-info p {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.5;
	color: #555;
}

.naver-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #366ee6; /* фирменный зелёный Naver */
	color: white;
	text-decoration: none;
	color: white;
	padding: 12px 10px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	transition:
		background 0.2s,
		transform 0.15s;
}

.naver-btn p {
	color: white;
}

.naver-btn:hover {
	background-color: #074ce0;
	transform: translateY(-1px);
}

.hours-section {
	margin-top: 30px;
	padding: 24px 26px;
	border-radius: 18px;
	background: #fff;
	
}

.hours-section h3 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 14px;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #4a4a4a;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-row:last-child {
	border-bottom: none;
}

.hours-row span:last-child {
	color: #1a1a1a;
	font-weight: 500;
}

.address {
	display: flex;
	justify-content: start;
	margin-left: 80px;
	color: white;
}

@media (max-width: 800px) {
	.contacts-page {
		padding: 130px 16px 60px;
	}

	.contacts-heading h1 {
		font-size: 26px;
	}

	/* главное — сетка карточек в одну колонку */
	.contacts-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.contact-card {
		padding: 18px 18px;
		flex-wrap: wrap;
	}

	.address {
		margin-left: 0;
		margin-top: 12px;
		width: 100%;
	}

	.naver-btn {
		width: 100%;
		justify-content: center;
	}
}