.simple-header {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6E9F0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.simple-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.simple-header .brand img {
    width: 36px;
    height: 36px;
    display: block;
}

.simple-header .nav-links {
    display: flex;
    align-items: center;
}

.simple-header .nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #111322;
    font-weight: 500;
}

@media (max-width: 768px) {
    .simple-header {
        flex-direction: row;
        justify-content: space-between;
    }
    .simple-header .nav-links {
        display: none;
    }
}

