header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 72px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    text-decoration: none;
}

.header-icon {
    color: var(--text-black);
    font-size: 20px;
}

.burger-menu-icon span {
    display: block;
    height: 2px;
    background-color: var(--text-black);
    width: 100%;
    transition: var(--transition);
}
