.cochlear-box {
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 12px;
}

.cochlear-icon {
  width: 50px;
  height: 50px;
  transition: filter 0.3s ease;
}

.cochlear-title {
  font-weight: 500;
  font-size: 16px;
  flex: 1;
  transition: color 0.3s ease;
}

.arrow {
  font-size: 16px;
  color: #000; /* default blue */
  transition: color 0.3s ease;
}

.cochlear-box:hover .arrow {
  color: #F7941D; /* hover orange */
}