/* Start custom CSS *//* === SEO CONTENT – optymalizacja czytelności i UX === */

.seo-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.75;
  font-size: 16px;
  color: #2b2b2b;
}

/* === Nagłówki === */

.seo-content h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.seo-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.35;
  font-weight: 600;
  position: relative;
}

/* delikatny akcent pod H2 (UX + wizualna hierarchia) */
.seo-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 8px;
  background-color: #4caf50; /* można zmienić pod kolor marki */
}

/* === Tekst === */

.seo-content p {
  margin-bottom: 18px;
}

/* wzmocnienie kluczowych fraz */
.seo-content strong {
  font-weight: 600;
  color: #000;
}

/* === Listy (bardzo ważne dla skanowania treści) === */

.seo-content ul {
  margin: 20px 0 28px 0;
  padding-left: 0;
  list-style: none;
}

.seo-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

/* niestandardowe bullet pointy */
.seo-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;
  font-size: 16px;
  line-height: 1.5;
}

/* === Responsywność === */

@media (max-width: 768px) {
  .seo-content {
    padding: 30px 16px;
    font-size: 15px;
  }

  .seo-content h2 {
    margin-top: 36px;
  }
}/* End custom CSS */