
.highlight-button {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.highlight-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  background: #333333;
  color: white;
}
