.page {
  position: relative;
  width: 1430px;
  height: 100%;
  max-width: 100%;
  margin: 0px auto;
}
.page__banner {
  width: 100%;
  height: 30vh;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  background-image: url('https://cdn.webshopapp.com/shops/29777/files/468622753/black-friday-sale.jpg');
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}
.page__banner .page__banner-content {
  color: #fff;
  text-align: center;
}
.page__category-banner {
  width: 100%;
  height: 30vh;
  margin-bottom: 1rem;
  background-size: contain;
  background-position: center;
  background-image: url('https://cdn.webshopapp.com/shops/29777/files/468717144/meble-ze-stali-nierdzewnej-na-wymiar.png');
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}
.page__category-banner-content {
  color: #fff;
  text-align: center;
}
.page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
.page__title {
  color: #0197ed;
  font-size: clamp(18.4px, 5vw + 1rem, 33.8px);
  margin-bottom: 1rem;
}
.page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.page__content .page__text {
  font-size: clamp(16px, 5vw + 1rem, 19px);
  line-height: 1.5;
  text-align: justify;
  color: #333;
}
.page__content .page__promo-title {
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.page__content .page__promo-list {
  margin-bottom: 1rem;
}
.page__content .page__promo-list li {
  font-size: clamp(12px, 5vw + 1rem, 16px);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: black;
}
.page__content .page__promo-list li a {
  color: #333;
  font-weight: bold;
}
.page__content .page__promo-list li a:hover {
  color: #0197ed;
}
.page__content .page__instruction {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.page__content .page__instruction ol {
  margin-left: 1rem;
}
.page__content .page__instruction ol li {
  margin-bottom: 0.5rem;
}
.page__content .page__instruction .highlight {
  font-weight: bold;
  color: #0197ed;
}

.categories__title {
  margin-bottom: 1rem;
}
.categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.categories__item {
  background-color: #0197ed;
  color: #fff !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.categories__item:hover, .categories__item:active {
  background-color: #f0f0f0 !important;
  color: #ff7c2e !important;
}

@media (max-width: 768px) {
  .page__content {
    padding: 0 0.2rem;
  }
  .page__title {
    font-size: 1.5rem;
  }
  .page__text {
    font-size: 0.9rem;
  }
  .page__promo-title {
    font-size: 1rem;
  }
  .page__promo-list {
    padding-left: 15px;
  }
  .page__banner {
    height: 19vh;
  }
  .page__category-banner {
    height: 19vh;
  }
  .page__instruction ol {
    padding: 0;
  }
  .categories__title {
    font-size: 1.25rem;
  }
  .categories__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}