body {
  font-family: arial, sans-serif;
  margin: 0;
}

.header {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  padding: 16px 24px;
}

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

.header-right span {
  color: #1f1f1f;
  cursor: default;
  font-size: 14px;
}

.header-right button {
  background: #0b57d0;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 18px;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 80vh;
  justify-content: center;
}

input {
  background: transparent;
  border: 0;
  flex: 1;
  outline: 0;
}

.search-container {
  border-radius: 25px;
  border: 1px solid #d6d6d6;
  display: flex;
  max-height: 48px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}

.search-container:hover {
  border-color: #d2d2d2;
  box-shadow: 0 2px 9px #d2d2d2;
}

.material-symbols-outlined {
  color: #000;
  margin-right: 10px;
}

.buttons {
  display: flex;
  gap: 10px;
}

button {
  background-color: #f7f8f9;
  border-radius: 8px;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 16px;
}

button:hover {
  border-color: #d2d2d2;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.language {
  color: #474747;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-top: 20px;
}

.language a {
  color: #1a0dab;
  margin-left: 1px;
  text-decoration: none;
}

.language a:hover {
  text-decoration: underline;
}

.footer {
  background: #f2f2f2;
  bottom: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  position: fixed;
  width: 100%;
}

.footer-top {
  border-bottom: 1px solid #dadce0;
  color: #2a2a2a;
  font-size: 15px;
  padding: 15px 30px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px 35px;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 30px;
}

.footer a {
  color: #474747;
  font-size: 14px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  main {
    box-sizing: border-box;
    padding: 16px;
  }
  
  .search-container {
    width: 100%;
  }

  .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .buttons button {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer-left,
  .footer-right {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .footer a {
    color: #3c4043;
  }
}