.site-footer {
	background: transparent;
	color: inherit;
	padding: 40px 20px 60px;
	border-top: 1px solid #e0e0e0;
}

body.dark-theme .site-footer {
	border-top: 1px solid #444;
}

.footer-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.footer-block {
	flex: 1 1 250px;
}

.footer-block h4 {
	font-size: 16px;
	margin-bottom: 12px;
	font-weight: 600;
}

.footer-block p {
	font-size: 14px;
	margin: 6px 0;
	line-height: 1.6;
	color: inherit;
}

.footer-block a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-block a:hover {
	background-color: #e0e0e0;
	color: #3b82f6;
}

body.dark-theme .footer-block a:hover {
	background-color: #333;
	color: #8da1ff;
}
