body {
background-color:#0d5595;
margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
font-size:20px;
}
@media (max-width: 991px)
{
.header-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }
  .left,
  .right {
    text-align: center;
    width: 100%;
  }
  .left { 
  
  align-items: center; /* wyrównanie w pionie */
  gap: 10px; /* odstęp między logo a tekstem */ }
  .right { text-align: center;}
  
 

  /* Większy offset pod fixed header na mobile (jeśli trzeba) */
  .page-content { padding-top: 72px; }
  .banner img {
    max-height: 200px; /* dopasuj wysokość */
    object-fit: cover; /* przycięcie obrazu jeśli trzeba */
  }
  .header-bar {
  width: 100%;
  height: 4px;
  background: #d47209;
}
.btn-box {
    flex: 1 1 100%;
  }
}
@media (min-width: 992px)
{
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-family: 'Roboto Slab', serif;
  z-index: 999;
  color:white;
  font-size:20px;
  background-color:#0d5595;
  /* opcjonalnie cień */
  /* box-shadow: 0 2px 8px rgba(0,0,0,.06); */
}
.banner {
  width: 100%;
  overflow: hidden;
  margin-top: 40px; /* przesunięcie w dół o wysokość headera */
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}
/* Kontener do 1330px, wyśrodkowany */
.header-inner {
  max-width: 1330px;
  margin: 0 auto;
  padding: 10px 20px;
  overflow: hidden; /* clearfix dla floatów */
}

/* Lewy/prawy blok na desktopie */
.left { float: left;
  display: flex;
  align-items: center; /* wyrównanie w pionie */
  gap: 10px; /* odstęp między logo a tekstem */ }
.right { float: right; }

/* Pasek 4px na pełną szerokość */
.header-bar {
  width: 100%;
  height: 4px;
  background: #d47209;
}

/* Zapobiega zakryciu treści przez fixed header */
.container {
  /* dostosuj do faktycznej wysokości headera */
  max-width:1330px;
  margin:0 auto;
  
}


}
/* Rząd przycisków jako siatka */
.buttons-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 w rzędzie na desktopie */
  gap: 15px;                 /* odstępy między prostokątami */
  max-width: 1330px;         /* opcjonalnie: wyrównanie do szerokości contentu */
  margin: 0 auto;            /* wyśrodkowanie siatki */
  padding: 20px;
  font-family: 'Roboto Slab', serif;
}

.btn-box {
  display: flex;             /* żeby ładnie centrować tekst w pionie/poziomie */
  align-items: center;
  justify-content: center;
  min-height: 80px;          /* wysokość prostokąta - możesz zmienić */
  background: #d47209;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity .2s ease;
}
.btn-box:hover { opacity: .9; }

/* Tablet: 2 w rzędzie */
@media (max-width: 1024px) {
  .buttons-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 1 w rzędzie */
@media (max-width: 600px) {
  .buttons-row {
    grid-template-columns: 1fr;
  }
}
.content-section {
  max-width: 1330px; /* spójna szerokość z przyciskami */
  margin: 20px auto; /* wyśrodkowanie */
  padding: 20px;
  background: #f9f9f9; /* delikatne tło, możesz usunąć lub zmienić */
  border-radius: 6px;
  line-height: 1.6;
}

.content-section h2 {
  margin-top: 0;
}
footer {
width:100%;
max-width:1330px;
margin: 0 auto;
color:white;
font-family: 'Roboto Slab', serif;
font-size:12px;
}
a.ln {
      text-decoration: none;
      color: white;
      cursor: pointer;
    }