/* ============================================================
   CSS RESET & BASELINE NORMALIZATION
   ============================================================ */
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;
  height: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FAFAF5;
  color: #234D20;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #234D20;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
:focus {
  outline: 2px solid #D9A066;
  outline-offset: 2px;
}

/* ============================================================
   BRAND TYPOGRAPHY & COLOR SYSTEM
   ============================================================ */
:root {
  /* Brand Colors */
  --clr-primary: #234D20;
  --clr-secondary: #D9A066;
  --clr-accent: #FAFAF5;
  --clr-white: #fff;
  --clr-black: #222;
  --clr-error: #e75757;
  --clr-info: #60b9e7;
  /* Playful dynamic palette additions */
  --clr-fun1: #FFCE49;
  --clr-fun2: #5CD4DB;
  --clr-fun3: #FF8E72;
  --clr-fun4: #8264FC;
  /* Shadows */
  --shadow-playful: 0 4px 16px rgba(90,137,65,0.12), 0 2px 6px rgba(217,160,102,0.04);
  /* Border radius for cards and buttons */
  --radius: 18px;
  --radius-pill: 24px;
}

h1 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  color: var(--clr-primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}
h2 {
  font-family: 'Merriweather', serif;
  color: var(--clr-fun4);
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Merriweather', serif;
  color: var(--clr-secondary);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--clr-primary);
  font-weight: bold;
}
p, li, span, td, th {
  color: var(--clr-black);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
strong {
  color: var(--clr-primary);
  font-weight: bold;
}

/* Playful font for CTA, fun elements */
.cta-button, .cta, button, .mobile-menu-toggle {
  font-family: 'Merriweather', serif;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ============================================================
   LAYOUT & SPACING SYSTEM
   ============================================================ */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-playful);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(217,160,102,0.15), 0 3px 12px rgba(90,137,65,0.10);
  transform: translateY(-3px) scale(1.02) rotate(-1deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--clr-fun1);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(90,137,65,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
  min-width: 270px;
  max-width: 430px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(130,100,252,0.13);
  transform: translateY(-2px) scale(1.04) rotate(1deg);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #222;
  font-family: 'Roboto',Arial,sans-serif;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #6C4D15;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features playful icons styles for main page */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature_grid > div {
  flex: 1 1 220px;
  background: var(--clr-fun2);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-playful);
  text-align: left;
  transition: transform 0.18s;
}
.feature_grid > div:hover {
  background: var(--clr-fun4);
  color: var(--clr-accent);
  transform: translateY(-5px) scale(1.039);
}
.feature_grid img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

/* Table pricing style - cennik */
.pricing-table {
  width: 100%;
  background: var(--clr-accent);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(217,160,102,.08);
  border-collapse: collapse;
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  text-align: left;
  font-size: 1.02rem;
}
.pricing-table th {
  background-color: var(--clr-fun2);
  color: var(--clr-primary);
  font-weight: bold;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--clr-fun1);
}
.pricing-table td {
  color: var(--clr-black);
}

/* Footer */
footer {
  background: var(--clr-primary);
  padding: 0;
}
footer .container {
  padding-top: 36px;
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 70px;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--clr-secondary);
  font-size: 1.01rem;
  transition: color 0.22s;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--clr-fun1);
}
.footer-contact span, .footer-contact a {
  color: #fff;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}
.copyright {
  margin-top: 30px;
  color: var(--clr-fun2);
  text-align: center;
  font-size: 0.95em;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ============================================================
   HEADER NAVIGATION & BURGER MENU
   ============================================================ */
header {
  background: var(--clr-accent);
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 3px solid var(--clr-fun2);
  position: relative;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 8px 0;
}
.logo img {
  width: 126px;
  max-width: 90vw;
  height: auto;
  transition: filter 0.2s;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav ul li {
  position: relative;
  margin-bottom: 0;
}
nav ul li a {
  font-family: 'Merriweather', serif;
  color: var(--clr-primary);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 1.08rem;
  font-weight: 500;
  transition: background 0.18s, color 0.15s, transform 0.12s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--clr-fun3);
  color: var(--clr-white);
  transform: scale(1.07) rotate(-1deg);
}
nav ul li a.cta {
  background: var(--clr-fun2);
  color: var(--clr-primary);
  font-weight: bold;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-fun3);
  box-shadow: 0 2px 10px rgba(217,160,102,.11);
  transition: background 0.19s, color 0.19s, transform 0.14s;
}
nav ul li a.cta:hover {
  background: var(--clr-fun3);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  transform: scale(1.09) rotate(1.5deg);
}

/* Hamburger mobile menu button styling */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-fun3);
  color: var(--clr-white);
  border: none;
  font-size: 2.1rem;
  border-radius: var(--radius-pill);
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.18s, transform 0.15s;
  position: relative;
  z-index: 1202;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--clr-fun4);
  color: var(--clr-fun1);
  transform: scale(1.08) rotate(-3deg);
}
/* Mobile menu overlay and animation */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,250,245, 0.97);
  box-shadow: 0 6px 32px rgba(217,160,102,.13);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.64,.04,.36,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--clr-fun4);
  color: var(--clr-white);
  font-size: 2.2rem;
  border: none;
  border-radius: var(--radius-pill);
  margin: 24px 24px 12px 12px;
  align-self: flex-end;
  padding: 9px 20px 5px 11px;
  cursor: pointer;
  z-index: 1999;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.mobile-menu-close:hover {
  background: var(--clr-error);
  color: var(--clr-fun1);
  transform: scale(1.08) rotate(6deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  align-items: center;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.33rem;
  color: var(--clr-primary);
  background: var(--clr-secondary);
  border-radius: var(--radius-pill);
  padding: 11px 40px;
  box-shadow: 0 1px 8px rgba(217,160,102,0.09),0 1px 1px rgba(90,137,65,0.07);
  transition: background 0.18s, color 0.17s, transform 0.11s;
  margin: 0 24px;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover {
  background: var(--clr-fun3);
  color: var(--clr-fun1);
  transform: scale(1.07) rotate(-3deg);
}

@media (max-width: 1050px) {
  nav ul {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 9px;
  }
}
@media (max-width: 910px) {
  .footer-contact, .footer-nav {
    gap: 6px;
  }
}
@media (max-width: 850px) {
  .container { max-width: 97vw; }
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  nav { padding: 18px 0 8px 0; }
  .footer-logo img { width: 48px; }
}
/* ============================================================
   HERO SECTIONS, BUTTONS & CTA
   ============================================================ */
.cta-button, a.cta-button, button.cta-button {
  display: inline-block;
  background: var(--clr-fun4);
  color: var(--clr-white);
  padding: 15px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Merriweather', serif;
  font-weight: bold;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-playful);
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 6px;
  transition: background 0.18s, transform 0.18s, color 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 10;
}
.cta-button:hover, .cta-button:focus {
  background: var(--clr-fun1);
  color: var(--clr-primary);
  box-shadow: 0 4px 20px rgba(130,100,252,0.10),0 1.5px 4px rgba(217,160,102,.07);
  transform: scale(1.065) rotate(-2.2deg);
}
button, input[type="button"], input[type="submit"] {
  padding: 11px 30px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: var(--clr-fun2);
  color: var(--clr-primary);
  transition: background 0.14s, color 0.13s, transform .13s;
  cursor: pointer;
}
button:hover, button:focus {
  background: var(--clr-fun3);
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
}

/* ============================================================
   TEXT CONTENT, LISTS, SPACING
   ============================================================ */
.text-section {
  background: var(--clr-accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(130,100,252,0.10);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.text-section h3 {
  color: var(--clr-secondary);
  font-size: 1.14rem;
  margin-top: 18px;
}
ul > li, ol > li {
  margin-left: 1.2em;
  margin-bottom: 13px;
  color: var(--clr-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}
ul > li::before {
  content: '\2022';
  color: var(--clr-fun3);
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
ol > li::before {
  content: counter(item) ". ";
  font-weight: bold;
  color: var(--clr-fun2);
}
ul, ol {
  margin-bottom: 16px;
}

/* ============================================================
   PLAYFUL & DYNAMIC DECORATIVE EFFECTS
   ============================================================ */
section h2, .testimonial-card, .feature_grid > div, .card {
  position: relative;
  /* Fun pseudo-random playful element */
}
section h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 10px;
  border-radius: 32px;
  background: var(--clr-fun1);
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
  opacity: 0.7;
  transform: rotate(-3deg);
}
.testimonial-card::before {
  content: '\1F434';
  font-size: 1.6em;
  position: absolute;
  top: -18px;
  right: 24px;
  opacity: 0.23;
  pointer-events: none;
}
.feature_grid > div::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: var(--clr-fun3);
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -10px;
  opacity: 0.12;
  z-index: 0;
}

@media (max-width: 600px) {
  section h2::after {
    width: 34px;
    height: 8px;
    bottom: -5px;
  }
}

/* ============================================================
   RESPONSIVE LAYOUTS (MOBILE FIRST)
   ============================================================ */
/* (already mobile first, now define breakpoints for larger layouts) */
@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
  .feature_grid {
    flex-direction: row;
    gap: 32px;
  }
  .feature_grid > div {
    min-width: 210px;
    flex-grow: 1;
  }
  .testimonial-card {
    max-width: 370px;
  }
  .footer-nav, .footer-contact {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature_grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
  .feature_grid > div {
    width: 100%;
    min-width: unset;
  }
  .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
  .footer-logo, .footer-nav, .footer-contact {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  .footer-logo img {
    width: 44px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 20px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 5px; padding-right: 5px;
  }
  .cta-button, a.cta-button {
    width: 100%;
    padding-left: 0; padding-right: 0;
  }
  .feature_grid > div {
    padding: 17px 10px;
  }
  .testimonial-card {
    padding: 12px 7px;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ============================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--clr-fun2);
  color: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20000;
  padding: 24px 16px;
  box-shadow: 0 -2px 16px rgba(35,77,32,0.13);
  animation: cookieBannerAppear 0.7s cubic-bezier(.52,0,0,1);
  gap: 18px;
  flex-wrap: wrap;
}
@keyframes cookieBannerAppear {
  from { transform: translateY(75px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 500px;
  line-height: 1.6;
  color: var(--clr-black);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  min-width: 120px;
  padding: 9px 0;
  border-radius: var(--radius-pill);
  background: var(--clr-fun4);
  color: var(--clr-accent);
  font-weight: bold;
  border: none;
  font-size: 1.03rem;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, transform 0.12s;
}
.cookie-consent-banner button:hover {
  background: var(--clr-fun3);
  color: var(--clr-white);
  transform: scale(1.05) rotate(-1.5deg);
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.29);
  z-index: 20010;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--clr-accent);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(130,100,252,0.16);
  padding: 28px 30px;
  width: 100%;
  max-width: 420px;
  color: var(--clr-primary);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  animation: modalAppear 0.5s cubic-bezier(.46,.03,.52,.96);
}
@keyframes modalAppear {
  from { transform: scale(.84) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 4px;
  color: var(--clr-fun4);
  font-size: 1.3rem;
  font-family: 'Merriweather', serif;
}
.cookie-modal .cookie-category {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  width: 34px;
  height: 20px;
  background: var(--clr-fun3);
  border-radius: 14px;
  position: relative;
  transition: background .15s;
  margin-right: 7px;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: var(--clr-fun4);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  transition: transform .15s;
  border-radius: 50%;
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal .category-label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--clr-black);
}
.cookie-modal .always-on {
  color: var(--clr-primary);
  font-weight: bold;
  font-size: 1em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal button {
  min-width: 90px;
  background: var(--clr-primary);
  color: var(--clr-fun2);
}
.cookie-modal button:hover {
  background: var(--clr-fun4);
  color: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 19px;
  background: var(--clr-fun1);
  color: var(--clr-primary);
  font-size: 1.3rem;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: background 0.13s, color .12s, transform .13s;
}
.cookie-modal .close-modal:hover {
  background: var(--clr-error);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 5px;
    font-size: 0.98rem;
  }

  .cookie-modal {
    padding: 18px 5vw;
    font-size: 0.98rem;
  }
}

/* ============================================================
   MISCELLANEOUS (FORMS, ERROR/INFO, ETC)
   ============================================================ */
input, textarea, select {
  border: 2px solid var(--clr-fun2);
  border-radius: var(--radius);
  font-size: 1rem;
  padding: 8px 13px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  background: var(--clr-accent);
  color: var(--clr-black);
  transition: border 0.15s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--clr-fun3);
}

/* Playful error/info for forms (if needed) */
.info-message { color: var(--clr-info); background: #e9f6fd; padding: 7px 10px; border-radius: 8px; }
.error-message { color: var(--clr-error); background: #ffe6e6; padding: 7px 10px; border-radius: 8px; }

/* ============================================================
   ACCESSIBILITY - FOR COLOR CONTRAST REQUIREMENTS
   ============================================================ */
.testimonial-card,
.content-wrapper .testimonial-card {
  background: var(--clr-fun1);
  color: #151200;
  border-radius: var(--radius);
  box-shadow: var(--shadow-playful);
  font-size: 1rem;
}
.testimonial-card p, .testimonial-card span {
  color: #222;
}

/* Ensures readable text in testimonials */
/* For rare exceptions using fun4 bg on testimonials */
.testimonial-card.bg-dark {
  background: var(--clr-fun4);
  color: #fff;
}
.testimonial-card.bg-dark p, .testimonial-card.bg-dark span {
  color: #fff;
}

/* ============================================================
   PRINT FRIENDLY
   ============================================================ */
@media print {
  header, footer, .cookie-consent-banner { display: none !important; }
  nav, .mobile-menu, .cta-button { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .section { padding: 10px !important; margin-bottom: 20px !important; }
}

/* End of playful_dynamic responsive CSS for Stajnia Fabac Divor */
