.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--secondary);
}

.logo-text img {
	max-height: 60px;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--secondary);
	text-decoration: none;
	font-weight: 600;
}

.header-phone:hover {
	color: var(--primary);
}

.header-phone svg {
	width: 20px;
	height: 20px;
	fill: var(--primary);
}

@media (max-width: 768px) {
	.header-phone {
		display: none;
	}
}