/* Stylizacja nagłówka */

.hi {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: black; /* Elegancki ciemny granat */
  margin-bottom: 20px;
  position: relative;
}

/* Sekcja Cennik */
.pricing {
  font-size: 26px;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.pricing p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

/* Kategorie cennikowe */
.price-category {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 20px 0;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Dodane do zachowania zgodności z paddingiem */
}

.price-category h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price-category .price {
  font-size: 32px;
  color: #86785e;
  font-weight: bold;
  margin-bottom: 20px;
}

.price-category p {
  font-size: 16px;
  color: #666;
}

/* Efekt powiększenia na hover */

/* Responsywność */
@media (max-width: 768px) {
  .price-category {
    margin: 10px 0;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .pricing p {
    font-size: 16px; /* Zmniejszenie czcionki w paragrafie na bardzo małych ekranach */
  }

  .price-category h2 {
    font-size: 24px; /* Zmniejszenie nagłówka na mniejszych ekranach */
  }

  .price-category .price {
    font-size: 28px; /* Zmniejszenie ceny na mniejszych ekranach */
  }
}
