/* Fixed Header CSS */
:root {
	--fixed-header-top: 36px;
}

body .elementor-location-header {
	position: fixed !important;
	top: var(--fixed-header-top) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 100% !important;
	max-width: var(--container-max-width, 1140px) !important;
	z-index: 999 !important;
}

/* Adjust body padding if needed */
body {
    padding-top: calc(var(--fixed-header-top) + 100px); /* Adjust 100px based on header height */
}