.site-header {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  position: relative;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}

.logo span { color: #0f6fd1; }

.header-nav {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.header-nav a {
  font-size: 0.875rem;
  color: #555;
  font-weight: 500;
}

.header-nav a:hover { color: #0f6fd1; text-decoration: none; }

@media (max-width: 768px){  
    .header-inner {
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        align-items: center;	
		gap: 12px;		
    }

    .header-nav {
		flex-direction: column;
		display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #111;
        padding: 15px;
        border-radius: 10px;
        width: 200px;
        z-index: 999;
		box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    }

    .header-nav a {
        color: #ccc;
        font-size: 14px;
        padding: 8px 0;
    }
    .header-nav a:hover {
        color: #fff;
    }
    .header-nav.active {
        display: flex;
    }	
}

.menu-toggle {
	margin-left: auto;
    display: none;
    font-size: 22px;
    cursor: pointer;

    right: 20px;	
}

@media (max-width: 768px){
    .menu-toggle {
        display: block;
		margin-left: auto;
    }
	}
