body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
	padding-top: 0px;
    display: flex;
    flex-direction: column;
}

.clear-title {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	min-height: 104px;
	height: auto;
    background: white;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 60px;
    width: auto;
    display: block;
}

.header-title {
    font-size: 23px;
    font-weight: 700;
    color: #062d6b;
    display: flex;
    align-items: center;
}

.header-home-link {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 34px;
    align-items: center;
}
.header-nav a {
    color: #062d6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.18s ease, color 0.18s ease;
    white-space: nowrap; 
}

.header-nav a:hover {
    transform: translateY(-3px);
    color: #69e0d1;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: #062d6b;
    cursor: pointer;
    user-select: none;
}
.mobile-menu {
    position: absolute; 
    top: 100%;    
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    box-sizing: border-box;
    padding: 0;
    z-index: 9999;
}

.mobile-menu.open {
    padding: 16px 0;
    max-height: 380px;
    pointer-events: auto;  
}

.mobile-menu a {
    color: #062d6b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 12px;
}

.mobile-menu a:hover {
    color: #69e0d1;
}

@media (max-width: 900px) {
    .header-nav {
        display: none;  
    }
    .hamburger {
        display: block; 
    }

    .site-header {
        padding: 16px 18px;
        align-items: center;
    }
}

.header-spacer + * {
    margin-top: 0 !important;
}

body {
    margin: 0;
    padding-top: var(--header-height);
}

 a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
    color: #7abbe3;
    transform: translateY(-3px);
}

a {
    display: inline-block;
}

.autocomplete-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #b3d6e3;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 11000;
    max-height: 200px;
    overflow-y: auto;
    font-size: 16px;
    color: #1e3a8a;
	text-align: center;
 }

.autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item:hover {
    background-color: #edf3f5;
    color: #1e3a8a;
}

.autocomplete-item.active {
    background-color: #edf3f5;
    color: #1e3a8a;
}
