/* WSPÓLNE STYLE DLA WSZYSTKICH STRON */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f5f5f7;
  color: #1d1d1f;
  line-height: 2;
}

h1, h2, h3 {
  font-family: 'Playpen Sans', cursive;
}

header {
  background-color: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: clamp(40px, 6vh, 80px);
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #1d1d1f;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #0071e3;
}

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #888;
  background-color: #f5f5f7;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: #f5f5f7;
      color: #1d1d1f;
      line-height: 2;
    }

        h1, h2, h3 {
      font-family: 'Playpen Sans', cursive;
    }

    header {
      background-color: #ffffffcc;
      backdrop-filter: blur(10px);
      padding: 20px 40px;
      position: sticky;
      top: 0;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo img {
      height: clamp(40px, 6vh, 80px);
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: #1d1d1f;
      font-size: 24px;
      transition: color 0.3s ease;
      font-weight: 300;
    }

    .menu a:hover {
      color: #0071e3;
    }

    .hero {
      position: relative;
      text-align: center;
      background-color: #000;
      color: white;
    }

    .hero img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-banner {
      width: 100%;
      height: auto;
      margin: 0 auto;
      display: block;
    }

    .hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .hero .btn-primary {
      background-color: #34c759;
      color: white;
      padding: 16px 32px;
      font-size: 18px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      text-decoration: none;
    }

    .hero .btn-primary:hover {
      background-color: #28a745;
    }

    .section {
      padding: 60px 20px;
      text-align: center;
    }

    .section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .section p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 20px;
    }

    .card {
      background-color: white;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      padding: 1rem;
    }

    .card img {
      width: 100%;
      border-radius: 16px;
      margin-bottom: 1rem;
    }

    .card h3 {
      margin: 0.5rem 0;
      color: #4b8dc8;
      font-size: 1.5rem;
    }

    .card p {
      font-size: 0.95rem;
      color: #444;
    }

    footer {
      text-align: center;
      padding: 40px 20px;
      font-size: 14px;
      color: #888;
      background-color: #f5f5f7;
    }

    @media (max-width: 600px) {
      .hero h1 {
        font-size: 28px;
      }

      .hero .btn-primary {
        font-size: 16px;
        padding: 12px 24px;
      }

      .menu {
        flex-direction: column;
        gap: 10px;
      }
    }

  /* FAQ */
.faq { text-align: left; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-weight: 600;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item[open] { box-shadow: 0 6px 18px rgba(0,0,0,0.10); }
.faq-item > *:not(summary) { padding: 0 20px 20px 20px; }
.faq-item ul, .faq-item ol {
  padding-left: 20px;
  margin-top: 8px;
}
.faq-item strong { color: #1d1d1f; }
.faq-item em { font-style: normal; }

/* Centrowanie nagłówka sekcji FAQ */
.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item > *:not(summary) {
  padding: 12px 28px 24px 28px; /* było 0 20px 20px 20px */
}

/* Minimalny „oddech” wokół listy FAQ */
.faq-list {
  padding: 0 12px;
  gap: 16px;
}

/* Mobile – trochę ciaśniej */
@media (max-width: 600px) {
  .faq-item > summary {
    padding: 16px 18px;
  }
  .faq-item > *:not(summary) {
    padding: 10px 18px 18px;
  }
}

/* FAQ – listy wyrównane do lewej i z większym wcięciem */
.faq-item p,
.faq-item li {
  text-align: left;
}

.faq-item ul,
.faq-item ol {
  list-style-position: outside;  /* klasyczne wypunktowanie */
  padding-left: 86px;            /* było 20px – większy oddech */
  margin-left: 0;
}

/* Gdybyś wolała jeszcze większy luz: podnieś 36px do 40–44px */
@media (max-width: 600px) {
  .faq-item ul,
  .faq-item ol {
    padding-left: 28px;
  }
}


/* UL: subtelne checkmarki */
.faq-item ul {
  list-style: none;
  padding-left: 0.1;
}
.faq-item ul li {
  position: relative;
  padding-left: 2px;
  text-align: left;
}
.faq-item ul li::before {
  content: "✓";
  position: sticky;
  left: 0;
  right: 20;
  padding-right: 10px;
  top: 0;
  color: #4b8dc8; /* możesz zmienić na #28a745 albo #555 */
  font-size: 0.95em;
  line-height: 1.9;
}


/* SOCIAL */
.social { text-align: center; }
.social p { color: #555; }

.social-links {
  margin: 24px auto 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #1d1d1f;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-weight: 600;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* delikatne akcenty brandowe przy hover */
.social-btn.fb:hover { background: #eaf2ff; }
.social-btn.ig:hover { background: #f8eaff; }

/* Mobile tweak */
@media (max-width: 600px) {
  .social-links { gap: 12px; }
  .social-btn { padding: 10px 16px; }
}

/* FOOTER: mini ikonki social */
.footer-social {
  margin-top: 8px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.footer-social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  background: #f2f2f2;
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #1d1d1f;
  display: block;
}

/* (dla spójności z sekcją Social) */
.social { text-align: center; }
.social-links { margin: 24px auto 0; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
