@font-face {
  font-family: 'Metropolis-Regular';
  src: url('Metropolis-Regular.otf');
}

body {
  margin: 0;
  background: white;
  font-family: Metropolis-Regular, sans-serif;
  font-size: 1.2rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: orange;
  padding: 10px 20px;
  height: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  height: 80px;
  transition: transform 0.3s;
  border-radius: 5px;
}

.header .logo img:hover {
  transform: scale(1.1);
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right a {
  color: black;
  text-align: center;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s, color 0.3s;
  margin: 0 10px;
  border-radius: 5px;
}

.header-right a:hover {
  background-color: white;
  color: orange;
}

.header-right a.active {
  background-color: white;
  color: black;
  border-radius: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .header .logo img {
    height: 60px;
  }

  .header-right {
    flex-direction: column;
    width: 100%;
  }

  .header-right a {
    width: 100%;
    padding: 15px;
    text-align: center;
  }
}