.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #ffffff;
    position: relative;
    z-index: 1000;
}

.navbar img {
    width: 150px;
}

.navbar a {
    color: #333333;
    text-decoration: none;
}

.links {
    display: flex;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: gray;
    margin: 4px 0;
}

.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 1rem 0;
    }

    .nav-toggle:checked ~ .links {
        display: flex;
    }

    .navbar img {
        width: 120px;
    }
}