header {
    background-color: #007bff;
    color: white;
  }

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-img {
    width: 50px;
    height: auto;
  }

  .logo-text {
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: 700;
    line-height: 1.1;
    font-size: 20px;
    text-transform: uppercase;
  }
  
  nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
  }