.site-header {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.site-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.site-nav a:hover {
    text-decoration: underline;
}
.poradniki {
    background: #ffffff;
    padding: 60px 20px;
}

.poradniki h2 {
    text-align: center;
    margin-bottom: 15px;
}

.poradniki p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
}

.poradniki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.poradnik-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.poradnik-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.czytaj-wiecej {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #777;
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.autor-box {
    margin-top: 50px;
    padding: 25px;
    background: #f4f6f8;
    border-left: 4px solid #2c3e50;
    border-radius: 6px;
    font-size: 15px;
}
.faq {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
/* ====== STRONA PORADNIKI ====== */

.lista-poradnikow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.poradnik-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poradnik-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.poradnik-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.poradnik-box p {
  flex-grow: 1;
  font-size: 15px;
  color: #555;
}

.poradnik-box a {
  margin-top: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #0073e6;
}

.poradnik-box a:hover {
  text-decoration: underline;
}

/* Przyciski */
.btn-poradniki {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #0073e6;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-poradniki:hover {
  background: #005bb5;
}

/* Responsywność */
@media (max-width: 768px) {
  .lista-poradnikow {
    grid-template-columns: 1fr;
  }
}
/* ====== NOWOCZESNE MENU ====== */

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

.site-nav {
  display: flex;
  gap: 25px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.site-nav a:hover {
  background: #0073e6;
  color: #fff;
}

.site-nav a.active {
  background: #0073e6;
  color: #fff;
}

/* ====== MOBILE ====== */

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .site-nav a {
    font-size: 14px;
    padding: 6px 10px;
  }
}