header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font: normal 15pt arial;
}

.logo img{
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    z-index: 1000000;
    padding: 20px 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f1c40f;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    }

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 95px;
        left: 0;
        right: 0;
        background: #2c3e50;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}