.header {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translate(-50%);
    max-width: calc(1440px - 120px);
    width: calc(100% - 120px);
    border-radius: 15px;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #ffffff;
}

.logo img {
    height: 48px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.menu-icon img:hover {
    opacity: 0.7;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    padding-left: clamp(32px, calc(100% - 950px), 189px);
}

.nav-center ul {
    display: flex;
    gap: 2.5rem;
}

.nav-center a,
.nav-right a {
    font-size: 1.15rem;
    font-weight: 500;
}

.nav-center a:hover,
.nav-right a:hover {
    color: #7c3aed;
}

.nav-right ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding-right: 23.5px;

}

.nav-right img {
    width: 100%;
    height: 20px;
}

.nav-right a:hover img {
    opacity: 0.7;
}