header{
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 16px 0 rgba(68, 68, 68, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.logo-anchor {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 55px;
    /* margin-right: 45px; */
}

#saas-name {
    font-size: 25px;
    color: #1a57ca;
    font-weight: bold;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin: 0 1rem;
}

@media screen and (max-width: 895px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: block;
    }

    .nav-bar {
        justify-content: space-between;
    }

}