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

/* Tělo stránky */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #2f2f2f;
}

/* Obecné kontejnery */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Hlavní hlavička */
.main-header {
  background-color: #1b5e20;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .logo {
  font-size: 24px;
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #c8e6c9;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: white;
}

/* Hero sekce */
.hero {
  background: url('../img/rybnik-hero.jpg') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

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

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Sekce */
.section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.section.light {
  background: #e8f5e9;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Galerie */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Ceník */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-weight: bold;
  text-align: center;
}

/* Kontakt */
#contact p,
#contact a {
  display: inline-block;
  margin: 5px 0;
  text-align: center;
}

#contact a {
  color: #2e7d32;
  font-weight: bold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1b5e20;
  color: #c8e6c9;
  text-align: center;
  padding: 40px 20px;
}

/* Responzivita */
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }


/* Mapa */
.map-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  max-width: 100%;
  padding: 0 20px;
}

.map-wrapper iframe {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Seznam služeb – o nás */
.about-list {
  margin: 20px auto 0 auto;
  padding-left: 40px;
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
  max-width: 600px;
}

/* Rybí obsádka */
.fish-list {
  margin: 20px auto 0 auto;
  padding-left: 40px;
  list-style-type: disc;
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
  max-width: 600px;
}

/* Tabulka provozní doby */
.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
}

.hours-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 40%;
}
.rules-list {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.8;
  font-size: 15px;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.rule-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 15px;
  line-height: 1.6;
  color: #2f2f2f;
}

.rule-box.highlight {
  background: #ffebee;
  color: #c62828;
  font-weight: bold;
}
.fb-wrapper {
  display: flex;
  justify-content: center;
  max-width: 100%;
}
/* Jen pro sekci kontaktu – povolí větší šířku */
.wide-container {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}

/* Facebook wrapper bez omezení */
.fb-wrapper {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2e7d32; /* tmavě zelená */
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background-color: #1b5e20;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.about-item {
  background: #e8f5e9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.fish-item {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
/* Sticky header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffffee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Navigation container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

/* Navigation */
.main-nav ul.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav ul.nav-list li a {
  text-decoration: none;
  font-weight: 600;
  color: #1b1b1b;
  padding: 8px 12px;
  transition: background 0.3s, color 0.3s;
  border-radius: 6px;
}

.main-nav ul.nav-list li a:hover {
  background: #e0f2f1;
  color: #00796b;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1b1b1b;
  border-radius: 2px;
}

/* Responsive menu */
@media (max-width: 768px) {
  .main-nav ul.nav-list {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav ul.nav-list.active {
    max-height: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .hamburger {
    display: flex;
  }
}
.main-nav ul.nav-list li a.active {
  background: #00796b;
  color: #fff;
}
section {
  scroll-margin-top: 140px;
}
html {
  scroll-behavior: smooth;
}
.about-list p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.about-list p::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1c7c54; /* tmavě zelená nebo barva dle webu */
  font-size: 20px;
  line-height: 1;
}
.intro-box {
  background: #fff;
  padding: 30px;
  border-left: 4px solid #2e7d32;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 40px;
  border-radius: 8px;
}
.sticky-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #fff;
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #2e7d32;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background-color: #1b5e20;
}
.about-intro p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}

.features-grid li {
  background: #f7f9fb;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease-in-out;
}

.features-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.lb-prev, .lb-next {
  z-index: 9999 !important;
  opacity: 1 !important;
  display: block !important;
  filter: none !important;
}
.lb-prev, .lb-next {
  width: 50px !important;
  height: 50px !important;
  background-size: 50% !important;
  opacity: 1 !important;
  display: block !important;
  z-index: 9999 !important;
  filter: none !important;
}

.lb-prev:hover, .lb-next:hover {
  opacity: 1 !important;
  filter: none !important;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
/* MOBILE */
@media (max-width: 768px) {
  /* 1) Zobraz hamburger na mobilu */
  .hamburger {
    display: flex;
  }

  /* 2) Skryj menu vlevo/vpravo a nastav přechod */
  .main-nav ul.nav-list {
    position: absolute;
    top: 100%;            /* hned pod hlavičku */
    left: 0;
    right: 0;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  /* 3) Když JS přidá .active, menu se rozbalí */
  .main-nav ul.nav-list.active {
    max-height: 500px;    /* dostatečná výška */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* mezery mezi položkami menu */
  .main-nav ul.nav-list li {
    margin: 15px 0;
  }
}
/* wrapper pro FB plugin */
.fb-wrapper {
  width: 100%;
  max-width: 1200px;  /* přizpůsobíme desktopu */
  margin: 0 auto;
  overflow: hidden;
}

/* mobilní úprava pro iframe */
@media (max-width: 768px) {
  .fb-wrapper .fb-page,
  .fb-wrapper .fb-page > span,
  .fb-wrapper .fb-page span iframe[style] {
    width: 100% !important;
    min-width: 0 !important;
  }
}
/* Font menu – modernější, lepší čitelnost */
.main-nav ul.nav-list li a {
  font-family: 'Inter', sans-serif; /* nebo zkus 'Poppins', 'Rubik', 'Nunito' */
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Hover efekt */
.main-nav ul.nav-list li a:hover {
  background: #e0f2f1;
  color: #00796b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Aktivní odkaz */
.main-nav ul.nav-list li a.active {
  background-color: #00796b;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Oddělení menu od okraje stránky */
.sticky-header {
  padding: 0 20px;
  background: #ffffffee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Mezery mezi položkami na desktopu */
.main-nav ul.nav-list {
  gap: 20px;
}

/* Mobilní úprava mezery v menu */
@media (max-width: 768px) {
  .main-nav ul.nav-list li {
    margin: 12px 0;
  }
}

.hero {
  background: url('../img/rybnik-hero.jpg') center/cover no-repeat;
  padding: 120px 0;
  color: white;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.3); /* volitelný tmavý filtr */
  border-radius: 12px;
  padding: 40px 20px;
}
.hero-img-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: white; /* nově přidáno */
}


.hero-img {
  width: 100%;
  height: 360px; /* nebo třeba 400px – uprav dle potřeby */
  object-fit: cover;
  display: block;
}

.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  padding: 20px;
  z-index: 2;
}

.hero-overlay-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
}
.hero {
  background: none;
  background-color: transparent;
  padding: 0;
}
.hero {
  padding: 40px 0;
}

.hero-img-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #fff; /* bílé pozadí pod obrázkem */
}

.hero-img-wrapper img {
  width: 100%;
  height: 400px; /* nebo klidně 350px podle vkusu */
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
}
body {
  background: url('../img/ryby.png') no-repeat center center fixed;
  background-size: cover;
  background-color: #ffffff; /* pro případ, že se obrázek nenačte */
}
.section,
.rule-box,
.card,
.about-item,
.fish-item,
.features-grid li,
.intro-box {
  background-color: transparent !important;
}
.hero-img-wrapper {
  position: relative;
}

.hero-overlay-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* černá vrstva s 40% průhledností */
  z-index: 1;
}

/* aby text byl nad overlayem */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  html, body {
    min-height: 100%;
  }

  body {
    background-image: url('../img/ryby.png');
    background-repeat: repeat-y;
    background-size: contain;
    background-position: top center;
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

.rule-box {
  background-color: #ffffff !important; /* Neprůhledné bílé pozadí */
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 1.6;
}

.rule-box.highlight {
  background-color: #ffe5e5; /* Světle červené pro zvýrazněné pravidlo */
  font-weight: bold;
  border-left: 5px solid #e00000;
}
.fish-item {
  background-color: #ffffff !important; /* Neprůhledné bílé pozadí */
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.features-grid li {
  background-color: #ffffff !important; /* Bílé neprůhledné pozadí */
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 1.6;
  list-style: none;
}
.fish-grid-new {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.fish-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fish-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 4px;
}

.fish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Responzivita */
@media (max-width: 1024px) {
  .fish-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fish-grid-new {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .intro-box {
    padding: 20px;
    font-size: 14px;
    margin: 0 0 30px 0;
  }
}

@media (max-width: 600px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .about-item {
    text-align: left;
  }

  .features-grid li {
    font-size: 14px;
    padding: 12px 16px;
  }

  .gallery-grid img {
    height: 150px;
  }
}
.rules-full {
  background-color: #fafafa;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.rules-full .container {
  max-width: 900px;
  margin: 0 auto;
}

.rules-full h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.rules-full p {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 16px;
}

.rules-full p strong {
  color: #000;
}

.rules-full p em {
  color: #555;
}

.rules-full p.warning {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  font-weight: 600;
  margin: 24px 0;
}

.rules-full p.alert {
  background-color: #fdecea;
  border-left: 4px solid #e3342f;
  color: #b10000;
  padding: 12px 16px;
  font-weight: 600;
  margin: 24px 0;
}

/* Menší zařízení */
@media (max-width: 600px) {
  .rules-full h2 {
    font-size: 22px;
  }
  .rules-full p {
    font-size: 14px;
  }
}


.rules-full .rules-intro {
  margin-bottom: 30px;
  text-align: left;
}

.rules-full .rules-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px 0;
}

.rules-full .rules-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

.rules-full .rules-list li:last-child {
  border-bottom: none;
}


.rule-warning {
  background-color: #fff9c4;
  border-left: 5px solid #fbc02d;
  padding: 15px 20px;
  margin: 30px 0;
  font-weight: 600;
  font-size: 15px;
}

.rule-alert {
  background-color: #ffebee;
  border-left: 5px solid #d32f2f;
  padding: 15px 20px;
  margin-bottom: 30px;
  color: #c62828;
  font-weight: 600;
  font-size: 15px;
}

.rules-full .rules-note {
  font-size: 14px;
  color: #555;
  margin-top: 30px;
  text-align: center;
}

.rules-full .rules-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #222;
  text-align: left;
}

.rules-full .rules-content strong {
  color: #000;
}

.rules-full .rule-warning {
  background-color: #fff9c4;
  border-left: 5px solid #fbc02d;
  padding: 15px 20px;
  margin: 30px 0;
  font-weight: 600;
  font-size: 15px;
}

.rules-full .rule-alert {
  background-color: #ffebee;
  border-left: 5px solid #d32f2f;
  padding: 15px 20px;
  margin: 30px 0;
  color: #c62828;
  font-weight: 600;
  font-size: 15px;
}

.rules-full .rules-note {
  font-size: 14px;
  color: #555;
  margin-top: 40px;
  text-align: center;
}
.rules-full .rules-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rules-full .rules-content p,
.rules-full .rules-content .rule-warning,
.rules-full .rules-content .rule-alert {
  text-align: center;
}

.rules-full .rule-warning,
.rules-full .rule-alert {
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 9999;
  font-size: 14px;
  text-align: center;
}

.cookie-button {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

.cookie-button:hover {
  background-color: #256428;
}

.cookie-link {
  color: #2e7d32;
  text-decoration: underline;
}

.cookie-settings {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  font-size: 14px;
  width: 300px;
  border-radius: 6px;
}

.cookie-settings.hidden {
  display: none;
}
/* Stylování sekce ceníku */
#cenik pre {
  background-color: #f4f4f4;
  padding: 12px 16px;
  margin: 10px 0 20px 0;
  font-family: 'Fira Mono', monospace;
  font-size: 16px;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
  white-space: pre-wrap;
  word-break: break-word;
}

#cenik h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #1b5e20;
}

.cenik-instruction p {
  margin: 12px 0 4px 0;
}

.cenik-instruction pre {
  margin-bottom: 24px;
}
