/* Farbeffekt für rechten Button im Hero bei Mouseover */
.hero-cta .btn-secondary.hero-big:hover {
  background: linear-gradient(90deg, #888 0%, #eaf6fb 50%, #888 100%) !important;
  color: #222 !important;
  border-color: #888 !important;
  box-shadow: 0 4px 18px #8886;
}
/* Farbeffekt für linken Button im Hero bei Mouseover */
.hero-cta .btn-primary:hover {
  background: linear-gradient(90deg, #178a46 0%, #2ecc71 50%, #178a46 100%) !important;
  color: #fff !important;
  border-color: #178a46 !important;
  box-shadow: 0 4px 18px #178a4666;
}
.hero-cta .btn-secondary.hero-big {
  font-size: 1.18rem;
  padding-top: 0.95em;
  padding-bottom: 0.95em;
  padding-left: 2em;
  padding-right: 2em;
  border-radius: 0.7em;
  font-weight: 500;
  color: #111;
  background: #eaf6fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
