.zrzutka-hero {
  padding: 80px 20px;
  text-align: center;
  color: #000000;
  position: relative;
  overflow: hidden;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.zrzutka-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #000000;
}

.zrzutka-cta {
  background-color: #000000;
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.zrzutka-cta:hover {
  background-color: #c9b366;
  color: #000000;
  transform: scale(1.05);
}
