/* Download our plans styling */
.sticky-download {
  position: fixed;
  left: 0;
  top: 65%;
  transform: translateY(-50%);
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 9999;
  transition: 0.3s ease;
}

.sticky-download img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.sticky-download span {
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  white-space: nowrap;
}

.sticky-download:hover {
  background: #007bff;
}

.sticky-download:hover span {
  color: #fff;
}
