body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}

.outer-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-right: 15px;
}

.title-wrapper h2 {
  font-size: 20px;
  margin: 0;
}

.title-wrapper p {
  font-size: 14px;
  color: gray;
  margin: 20px 0;
}

.nav-lists-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-radius: 12px;
  background-color: #f7f7f7;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  will-change: transform;
}

.nav-item:hover {
  background-color: #eaeaea;
  transform: translateX(10px);
}

.footer {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding: 10px 0;
}

.footer img {
  width: 40px;
  height: 40px;
  transition: background-color 0.3s;
  padding: 10px;
  border-radius: 50%;
}

.footer img:hover {
  background-color: #a9c5fa;
}

@media (max-width: 500px) {
  html {
    max-width: 90%;
    margin: auto;
  }
  body {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .outer-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .nav-lists-wrapper {
    gap: 8px;
  }

  .footer {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .footer img {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    flex-shrink: 0;
  }
}
