.contentside {
  padding: 0;
}

.contentside h2 {
  background: linear-gradient(135deg, #0678b1, #055e8b);
  font-size: 16px;
  padding: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contentside h2 span {
  cursor: pointer;
  font-size: 20px;
  transition: color 0.3s ease-in-out;
  font-weight: 500;
}

.contentside .logo {
  display: block;
  padding: 10px 0px;
}

.contentside .logo a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.contentside .logo a .icon {
  border: solid 4px #0678b1;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contentside .logo a .icon i {
  color: #0678b1;
}

.contentside .logo a h3 {
  font-size: 30px;
  color: #0678b1;
  margin-top: 4px;
  font-weight: 600;
}

.contentside .logo a h3 span {
  color: orange;
}

.contentside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contentside ul li {
  padding: 14px 18px;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.contentside ul li:hover {
  background: #eaf4fc;
  transform: translateX(5px);
}

.contentside ul li a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.contentside ul li a i {
  font-size: 18px;
  color: #0678b1;
  transition: transform 0.3s ease-in-out;
}

.contentside ul li a img {
  height: 35px;
  width: 25px;
  font-weight: 900;
  margin-left: -8px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(88%) saturate(860%)
    hue-rotate(165deg) brightness(94%) contrast(92%);
}

.contentside ul li a:hover {
  color: #055e8b;
}

.contentside ul li a:hover i {
  transform: rotate(5deg);
}
