.demo-section {
  width: 100%;
  padding: 100px;
  background-color: #171754;
  border-radius: 22px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 50px;
}

.content-demo-wrapper {
  text-align: center;
}

.spacer {
  height: 7%; /* Adjust height as necessary */
}

.title h2 {
  color: #ffffff !important;
  font-weight: 700;
}

.description p {
  color: #ffffff;
}

.button-demo-container {
  margin-top: 2.5%;
}

.buttonDemo {
  font-size: 16px;
  color: #ffffff;
  
  letter-spacing: 0;
  padding: 16px 32px;
  width: 30%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #3d5af5; /* Adjust as necessary */
  border: none;
  border-radius: 60px;
  box-shadow: 0px 4px 12px -1px rgba(61, 90, 245, 0.4);
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.buttonDemo:hover,
.buttonDemo:active{
  background-color: #ffffff;
  color: #08124b;
  text-decoration: none;
}
@media (max-width: 768px) { /* Reguły dla wersji mobilnej */
    .buttonDemo {
        width: 100%; /* Szerokość przycisku dla wersji mobilnej */
        font-size: 14px; /* Opcjonalnie zmniejszenie rozmiaru czcionki na wersji mobilnej */
    }

@media (max-width: 600px) {
  button {
    width: 80%; /* Adjust width for smaller screens */
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 12px 24px; /* Adjust padding for smaller screens */
  }
