.contacts-page {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.section-title {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 40px;
}

h2 {
	color: #5865f2;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 30px;
}

.contacts-block,
.info-block {
	background-color: #f1f1f1;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contacts-block h2,
.info-block h2 {
	margin-bottom: 16px;
	color: #5865f2;
}

.phone-list {
	list-style: none;
	padding-left: 0;
}

.phone-list li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: #111;
}

.phone-list svg {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	stroke: #5865f2;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	margin-top: 16px;
}

.map-container iframe {
	width: 100%;
	height: 300px;
	border: none;
	border-radius: 12px;
}

.info-block p {
	margin-bottom: 10px;
	color: #111;
	font-size: 0.95rem;
}

.info-block hr {
	margin: 20px 0;
	border: none;
	border-top: 1px dashed #ccc;
}

body.dark-theme .section-title {
	color: #8da1ff;
}

body.dark-theme h2 {
	color: #8da1ff;
}

body.dark-theme .contacts-block,
body.dark-theme .info-block {
	background-color: #1a1a1a;
	color: #eee;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.dark-theme .contacts-block h2,
body.dark-theme .info-block h2 {
	color: #8da1ff;
}

body.dark-theme .phone-list li,
body.dark-theme .info-block p {
	color: #ddd;
}

body.dark-theme .phone-list svg {
	stroke: #8da1ff;
}

body.dark-theme .info-block hr {
	border-top: 1px dashed #444;
}
