.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    max-height: 40px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.navbar-menu a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.navbar-menu img {
    max-height: 20px;
    margin-right: 5px;
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.navbar-actions .button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
}

.button-yellow {
    background-color: #ffd700;
    color: #fff;
}

.button-white {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

/* Styl dla responsywności */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-logo {
        margin-bottom: 10px;
    }

    .navbar-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-menu a {
        margin: 10px 0;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-actions .button {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .button-white {
        text-align: center;
        width: 100%;
    }
}