.highlighted-benefit {
  text-align: justify;
  font-family: 'Arsenal';
  font-size: 1.1rem;
  max-width: 1000px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.highlighted-benefit strong {
  font-weight: bold;
}

/*-------------------------------------------------------------------------------*/


/* CSS */
.pricing-section {
    display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 0px 20px;
  font-family: 'Arsenal', serif;
  color: #1a1a1a;
  align-items: center;
}

.pricing-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
}

.pricing-box {
  background: none;
  border-radius: 0px;
  padding: 0px 20px 30px 20px;
  flex: 1;
  min-width: 280px;
  /*box-shadow: 0 4px 6px rgba(0,0,0,0.05);*/
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  max-width: 1000px;
}

.pricing-box img{
  width: 100%;
}

.pricing-title {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pricing-sub {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.pricing-count {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.pricing-detail {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 12px;
}

.pricing-detail span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: #666;
}

.pricing-list {
  text-align: left;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pricing-session {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 12px;
  
}

.pricing-additional {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.pricing-price {
  text-align: center;
  background: #ffd900;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 0px;
  width: 150px;
}

.pricing-note {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 30px;
  max-width: 800px;
  margin-inline: auto;
}


.interlinia ul li{
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (max-width: 800px) {
   .pricing-wrapper {
    justify-content: center;
  }

  /* wyśrodkuj sam box z treścią */
  .pricing-box {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  /* wyśrodkuj obrazek w boxie */
  .pricing-image img {
    display: block;
    width: 80%;      /* albo 100%, jeśli ma być na pełną szerokość boxa */
    max-width: 400px;
    margin: 0 auto;  /* to faktycznie centruje */
    height: auto;
  }




}