.main-slider {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.main-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.main-slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.prev, .next {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
  .main-slide {
    height: 250px; /* mniejsza wysokość na mobile */
    max-width: 90%;
  }

  .main-slide-site {
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .prev, .next {
    padding: 8px;
    font-size: 14px;
    bottom: 5px;
  }
}
