.pack {
  display: flex;
  align-items: center;
  background: #2b2b2b;
  border: 3px solid #555;
  box-shadow: 4px 4px 0 #111;
  padding: 15px;
  margin: 20px auto;
  width: 600px;
  color: white;
  font-family: Arial, sans-serif;
}

.pack img {
  border: #fff solid 1px;
  width: 80px;   /* ảnh to hơn */
  height: 80px;
  margin-right: 15px;
}

.pack-info {
  display: flex;
  flex-direction: column;  /* cho các dòng xếp dọc */
  align-items: flex-start; /* căn trái thay vì center */
}

.pack-info p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.pack-info small {
  color: #bbb;
  font-size: 14px;
  margin-top: 4px;
}

.pack-info a {
  margin-top: 6px;
  color: #55aaff;
  text-decoration: none;
  font-size: 14px;
}

.pack-info a:hover {
  color: #55ff55;
  text-decoration: underline;
}