/* ====== CSS RESET & NORMALIZE ====== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.58;
  background: #FAF7F4;
  color: #212121;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #11406D;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #25A885;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* ================== TYPOGRAPHY ===================== */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #11406D;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height: 1.19; margin-bottom: 24px; }
h2 { font-size: 1.7rem; line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; margin-bottom: 16px; color: #333; }
.section p {
  color: #333;
}

/* ================== LAYOUT: CONTAINER & WRAPPER ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ================= UTILITIES =================== */
.mt-32 { margin-top:32px; }
.mt-16 { margin-top:16px; }
.mb-32 { margin-bottom:32px; }
.mb-16 { margin-bottom:16px; }

/* ================= SECTION SPACING =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(33, 40, 51, 0.07);
}

/* ================== HEADER / NAVIGATION ===================== */
header {
  width: 100%;
  background: #F7F8FA;
  box-shadow: 0 2px 14px -4px rgba(17,64,109,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 13px 18px;
}
header nav > a img {
  height: 40px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}
header nav ul li {
  margin: 0;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 9px;
  transition: background .20s, color .22s;
  color: #11406D;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #25A88522;
  color: #25A885;
}

header nav .cta.primary {
  margin-left: 28px;
}

/* Hide mobile nav toggle by default */
.mobile-menu-toggle {
  display: none;
  background: #FFF;
  color: #11406D;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 5px 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(33,64,109,0.13);
  cursor: pointer;
  margin-left: 14px;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FFEFDC;
  color: #25A885;
}

/* =============== MOBILE MENU OVERLAY =============== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31,52,70,0.19);
  z-index: 1200;
  transform: translateX(104vw);
  transition: transform .45s cubic-bezier(.45,.01,.38,1.08);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FFF;
  color: #11406D;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  padding: 7px 18px 10px 18px;
  border-radius: 50%;
  margin: 24px 18px 10px 0;
  align-self: flex-end;
  box-shadow: 0 2px 8px 0 rgba(33,64,109,0.11);
  cursor: pointer;
  transition: background .19s, color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #11406D;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFF;
  border-radius: 18px 0 0 18px;
  min-width: 61vw;
  max-width: 360px;
  margin-top: 0;
  margin-right: 0;
  box-shadow: -2px 7px 32px 2px rgba(33,64,109,0.13);
  padding: 34px 32px 34px 26px;
  align-self: flex-end;
  z-index: 999;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  padding: 11px 2px 11px 5px;
  border-radius: 8px;
  color: #11406D;
  font-weight: 600;
  transition: background .19s, color .18s;
  margin: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #25A88522;
  color: #25A885;
}

/* =============== MOBILE NAV VISIBILITY =============== */
@media (max-width: 980px) {
  header nav ul,
  header nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =============== HERO & PAGE SPACING =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(33, 40, 51, 0.07);
}

/* =========== FLEX CONTAINER PATTERNS ============ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 2px 14px 0 rgba(17,64,109,0.07);
  transition: box-shadow .18s, transform .16s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(17,64,109,0.17);
  transform: translateY(-4px) scale(1.016);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF8EF;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(228,157,78,0.07);
  color: #1C242E;
  flex: 1 1 300px;
  min-width: 0;
  max-width: 380px;
  transition: box-shadow .18s, border-color .15s;
  border: 1.7px solid #FFEDDC;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-right: 12px;
  color: #1C242E;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: .98rem;
  color: #25A885;
  margin-left: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ FEATURE GRID (for icons & services) =============*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 20px;
}
.feature-grid > div {
  background: #F7F8FA;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(17, 64, 109, 0.04);
  padding: 28px 24px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .17s, transform .13s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(17, 64, 109, 0.11);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
}
/* CTA: BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 14px 38px 14px 38px;
  margin-top: 10px;
  margin-bottom: 8px;
  margin-right: 8px;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, box-shadow .16s, border .13s;
  min-width: 180px;
  box-shadow: 0 1px 7px 0 rgba(224,104,24,0.09);
  outline: none;
  text-align: center;
}
.cta.primary {
  background: #25A885;
  color: #FFF;
  border: 2px solid #25A885;
}
.cta.primary:hover, .cta.primary:focus {
  background: #11406D;
  color: #FFF;
  box-shadow: 0 3px 16px 0 rgba(17,64,109,0.13);
}
.cta.secondary {
  background: #FFDEB6;
  color: #11406D;
  border: 2px solid #FFDEB6;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFF8EF;
  color: #25A885;
  box-shadow: 0 3px 10px 0 rgba(255,138,51,0.07);
}

/* ============= TESTIMONIAL SLIDER ============= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

/* ============== FOOTER ============== */
footer {
  background: #F7F8FA;
  padding: 30px 0 24px 0;
  border-top: 2px solid #FAE0CB;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer a img {
  height: 28px;
  width: auto;
  margin-bottom: 8px;
}
footer ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-bottom: 14px;
}
footer ul li a {
  font-size: 1rem;
  color: #11406D;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background .18s, color .2s;
}
footer ul li a:hover {
  background: #FFDEB6;
  color: #25A885;
}
footer address {
  font-style: normal;
  color: #444;
  font-size: .98rem;
  margin-top: 8px;
  text-align: center;
}

/* =========== STYLE: TABLES (CENNIK ETC.) =========== */
table {
  width: 100%;
  background: #FFF;
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 26px;
  box-shadow: 0 1px 12px 0 rgba(17, 64, 109,0.045);
  overflow: hidden;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  background: #FFDEB6;
  color: #11406D;
  padding: 15px 10px;
}
tbody td {
  font-size: 1.01rem;
  color: #1C242E;
  padding: 13px 10px;
  background: #FFF8EF;
  border-bottom: 2px solid #FAE0CB;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ============= MISC SHARED ELEMENTS ============= */
.trust-signals {
  background: #FFF8EF;
  border-radius: 12px;
  padding: 14px 22px;
  color: #11406D;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px 0 rgba(255,222,182,0.14);
}
.event-announcements {
  background: #25A88522;
  border-radius: 12px;
  color: #11406D;
  font-size: 1rem;
  padding: 14px 21px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.eco-commitment {
  background: #F7F8FA;
  border-radius: 10px;
  padding: 10px 18px;
  color: #11406D;
  font-size: .99rem;
  margin-bottom: 8px;
  margin-top: 12px;
}

/* ======== COOKIE BANNER & MODAL ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2140;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11406D;
  color: #FFF;
  padding: 22px 12px 22px 12px;
  box-shadow: 0 -6px 28px 0 rgba(17,64,109,0.08);
  font-size: .98rem;
  gap: 24px;
  min-height: 60px;
  transition: transform .36s, opacity .23s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin: 0 8px;
  background: #25A885;
  color: #FFF5DC;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 10px 23px;
  cursor: pointer;
  transition: background .15s, color .12s;
}
.cookie-banner .cookie-btn.secondary {
  background: #FFDEB6;
  color: #11406D;
  margin-left: 6px;
}
.cookie-banner .cookie-btn.settings {
  background: #FFF;
  border: 2px solid #FFDEB6;
  color: #11406D;
  margin-left: 6px;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #11406D;
  color: #FFDEB6;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #FFEDDC;
  color: #25A885;
}
/* Cookie modal overlay */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(36,52,65,0.19);
  z-index: 2150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .32s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  border-radius: 22px;
  max-width: 440px;
  width: 97vw;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 8px 34px 0 rgba(17,64,109,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 2200;
  min-width: 0;
  animation: modal_pop .31s cubic-bezier(.47,1.64,.41,.95);
}
@keyframes modal_pop {
  0% { transform: scale(.92) translateY(22px); opacity: .12; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #11406D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  cursor: pointer;
  color: #1C242E;
  margin-bottom: 2px;
}
.cookie-modal input[type='checkbox'] {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid #25A885;
  accent-color: #25A885;
  margin-right: 5px;
}
.cookie-modal input[disabled] {
  opacity: .51;
  cursor: default;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-size: 1.02rem;
  background: #25A885;
  border-radius: 16px;
  padding: 9px 20px;
  color: #FFF;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .11s;
}
.cookie-modal .cookie-btn.secondary {
  background: #FFEDDC;
  color: #11406D;
}
.cookie-modal .cookie-btn:hover,
.cookie-modal .cookie-btn:focus {
  background: #11406D;
  color: #FFF5DC;
}
.cookie-modal .cookie-btn.secondary:hover,
.cookie-modal .cookie-btn.secondary:focus {
  background: #25A885;
  color: #FFF;
}

/* ================ RESPONSIVE BREAKPOINTS ================ */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  .testimonial-slider { flex-direction: column; align-items: stretch; }
}
@media (max-width: 900px) {
  header nav { max-width: 100vw; }
  .container { padding: 0 10px; }
  .feature-grid { gap: 14px; }
}
@media (max-width: 800px) {
  .feature-grid > div { flex: 1 1 160px; max-width: unset; min-width: 140px; }
  .testimonial-card { min-width: 0; max-width: unset; }
  .content-grid { gap: 12px; }
}
@media (max-width: 768px) {
  section, .section { padding: 20px 4px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .feature-grid > div { padding: 20px 8px; }
  .testimonial-slider { flex-direction: column; gap: 14px; }
  .text-image-section, .content-grid { flex-direction: column; gap: 14px; }
  .container { padding: 0 5px; }
}
@media (max-width: 600px) {
  .footer .container, footer .container { gap: 9px; }
  footer ul { flex-wrap: wrap; gap: 10px; font-size: .99rem; }
}
@media (max-width: 500px) {
  section, .section { padding: 10px 2px; }
  .feature-grid > div { padding: 14px 4px; }
}

/* =========== PRINT FRIENDLY ========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg { display: none !important; }
  body { background: #FFF; color: #111; }
  section, .section { background: #FFF; box-shadow: none; border: none; }
}
