header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
}

.logo img {
    width: 90px;
    height: auto;
    transition: transform 0.3s ease-out;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.header-button{
    justify-content: end;
}