header {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin: auto;
    height: 70px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 8rem;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}


.home-link {
    color: #F54900;
    font-weight: 400;
    font-size: 1.5rem;
}

.home-link:hover {
    color: #CF4900;
}

.default-link {
    color: #222;
    font-weight: 400;
    font-size: 1.5rem;
}

.default-link:hover {
    color: #CF4900;
}

.login-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.login-btn:hover {
    background-color: #e65c00;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .icon {
        width: 18px;
        height: 18px;
    }
}