header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: #bd924d;
}

.leftGroup {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logoImg {
    width: 95px;
    height: auto;
}


body {
    background-color: #faf0e6;
    color: #444444;
}

.menu-icon {
    font-size: 60px;
    cursor: pointer;
    padding: 12px 20px;
    display: inline-block;
    background: /*#008cc9 #458C49*/ #7F6000 ;
    color: white;
}

.menu {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    background: /*#008cc9 #458C49*/ #7F6000;
    width: auto;
    padding: 10px 20px;
    flex-direction: column;
    z-index: 1000;
    gap:16px;
}

.menu.open {
    display: flex;
}

#menu-toggle:checked + .menu-icon + .menu {
    display: flex;
}

.menu a {
    color: white;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

@media (min-width :801px) {
    .menu a:hover {
        background-color: /*#009adc #4d9a50*/ #a47c01;
    }
}