/* ---CIEKAWOSTKA --- */
.goodnews-section {
  background-color: #e6007e;
  color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
}
.goodnews-section a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

/* --- KONTENER I NAGŁÓWEK --- */
.checklist-box {
  background-color: #fef0f7;
  border: 2px solid #e6007e;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}
.checklist-box h3 {
  color: #e6007e;
  margin-top: 0;
}
/* --- POJEDYNCZY ELEMENT LISTY --- */
.checklist-item {
  margin-bottom: 12px;
}
/* --- STYLIZACJA CHECKBOXA --- */
.checklist-input {
  display: none; /* Ukrywamy domyślny checkbox */
}
.checklist-input + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  line-height: 1.5;
}
/* Nasz własny kwadracik */
.checklist-input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #00a9e0;
  border-radius: 4px;
  background-color: white;
}
/* "Ptaszek" (✔) po zaznaczeniu */
.checklist-input:checked + label::after {
  content: "✔";
  position: absolute;
  left: 4px;
  top: 0;
  font-size: 18px;
  color: #e6007e;
}
/* --- STYL DLA WYNIKU --- */
.checklist-result {
  margin-top: 20px;
  font-weight: bold;
  color: #e6007e;
  font-size: 1.1em;
  text-align: center;
  padding-top: 15px;
}

/* Stylizowana Lista Numerowana */
.content-section ol {
  list-style: none;
  counter-reset: styled-counter;
  padding-left: 0;
}
.content-section ol > li {
  counter-increment: styled-counter;
  margin-bottom: 20px;
  position: relative;
  padding-left: 55px; /* Zwiększony padding dla odstępu */
  line-height: 1.6;
}
.content-section ol > li::before {
  content: counter(styled-counter);
  background-color: #00a9e0; /* Niebieskie tło */
  color: white;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0;
}

/* --- KONTENER I PRODUKT --- */
.blog-product-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-product {
  flex-basis: 300px;
  max-width: 320px;
  padding: 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-product img {
  max-width: 100%;
  margin-bottom: 15px;
}
.blog-product .button {
  background-color: white;
  color: #e6007e;
  border: 2px solid #e6007e;
  border-radius: 25px;
  padding: 12px 24px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}
/* POPRAWKA: Dodajemy .blog-product na początku selektora */
.blog-product .button:hover {
  background-color: #e6007e;
  color: white;
}
/* --- WERSJA MOBILNA --- */
@media (max-width: 768px) {
  .blog-product-container {
    flex-direction: column;
    align-items: center;
  }
  .blog-product {
    width: 90%;
  }
}
