.ch-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
}

.ch-logo img {
    max-height: 50px;
}

.ch-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.ch-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.ch-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
    .ch-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        display: none;
    }

    .ch-menu.active {
        display: flex;
    }

    .ch-toggle {
        display: block;
    }
}