.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 0;
gap: 20px;
}

/* wyłączenie podkreślenia dla linku */
.center-button a {
  text-decoration: none !important;
  color: #ffffff !important;
}

.orange-button {
  background-color: #f73d03;
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 90%;
  text-align: center;
  display: inline-block;
margin: 40px 0;
width: 240px;

}

.orange-button:hover {
  background-color: #c13311;
}