nav {
    padding: 35px 120px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 100px;
    height: 100px;
}
  
  .logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    user-select: none;
  }
  
  .logo-area img {
    height: 32px;
  }
  
  .logo-area > p {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
  }

  .nav-links {
    display: flex;
    gap: 40px;
  }

  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s;
  }

  .nav-links a:hover {
    opacity: 1;
  }
  
  .language {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .language:hover {
    opacity: 1;
  }
  
  .language img {
    height: 20px;
    border: 2px #fff solid;
    border-radius: 100%;
  }

  .language span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
  }