.cv-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #eaf0f6;
  text-decoration: none;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    #3b82c4,
    #4f9fd1,
    #6bb7d6
  );
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cv-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.cv-button:active {
  transform: translateY(0);
}