/* ========================== CSS RESET & BASE ===================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #f7f7f5;
  color: #1d2c1a;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
}
* {
  box-sizing: border-box;
}

:root {
  --primary: #184063;
  --secondary: #EFF2F6;
  --accent: #F3B223;
  --earth-green: #2f5936;
  --nature-brown: #705243;
  --nature-cream: #faf6ee;
  --organic-gray: #dfe3da;
  --light-bg: #f7f7f5;
  --heading: #184063;
  --text-main: #263322;
  --text-contrast: #184063;
  --shadow: 0 2px 16px rgba(70,77,58,0.10);
  --card-radius: 18px;
  --section-mb: 60px;
  --section-py: 40px;
  --container-width: 1200px;
}

/* ========================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4, h5, h6 {
  font-size: 1.02em;
  margin-bottom: 8px;
}
p, li, blockquote {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid var(--accent);
  background: var(--secondary);
  padding: 16px 24px 16px 20px;
  margin-bottom: 8px;
  border-radius: 0 8px 8px 0;
}
strong {
  font-weight: 700;
  color: var(--earth-green);
}

/* ========================== LAYOUT UTILS ===================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--nature-cream);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(44,64,38,0.12);
  flex-direction: column;
  min-width: 260px;
}
.testimonial-author {
  color: var(--earth-green);
  font-weight: 600;
  margin-top: 5px;
  font-size: 0.96em;
}
.testimonials .testimonial-card blockquote {
  border-left-color: var(--earth-green);
  background: var(--secondary);
  color: #242c20;
  font-size: 1.08em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* For features section lists */
.feature-grid,
.feature-list,
.service-cards,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.feature-grid > li, .feature-list > li, .service-cards > li, .category-list > li {
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(100,110,98,0.06);
  padding: 22px 20px 18px;
  flex: 1 1 236px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .19s, transform .19s;
  border: none;
}
.feature-grid > li:hover,
.feature-list > li:hover,
.service-cards > li:hover,
.category-list > li:hover {
  box-shadow: 0 4px 26px rgba(100,110,98,0.14);
  transform: translateY(-4px) scale(1.017);
}
.feature-grid img,
.feature-list img,
.service-cards img,
.category-list img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--nature-cream);
  box-shadow: 0 1px 4px rgba(44,44,30,0.02);
  margin-bottom: 8px;
}

/* ========================== HEADER & NAV ===================== */
header {
  background: #f9f9f5;
  border-bottom: 1.5px solid #dfede3;
  box-shadow: 0 1px 8px rgba(40,60,44,0.04);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 18px;
  font-size: 1.02rem;
}
.main-nav .logo {
  margin-right: 28px;
  display: flex;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 7px 8px;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
  transition: background .16s, color .18s;
}
.main-nav .btn-primary {
  margin-left: auto;
  background: var(--earth-green);
  color: #fff;
  padding: 11px 26px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .18s, box-shadow .18s, color .18s;
  box-shadow: 0 1px 10px rgba(44,44,44,0.042);
  border: none;
  letter-spacing: 0.02em;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 3px 26px rgba(100,150,88,0.15);
}

/* ================ Mobile Navigation ================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1070;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--organic-gray);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: rgba(52,75,49,0.97);
  transform: translateX(102vw);
  transition: transform .33s cubic-bezier(.72,0,.27,1);
  z-index: 1299;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 15px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  align-self: flex-end;
  margin: 12px 26px 12px 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background .12s;
  z-index: 1301;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.06);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 35px 0 0 42px;
  z-index: 1300;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 14px 0 6px 0;
  font-weight: 600;
  border-bottom: 1.5px dashed rgba(244,255,245,0.08);
  border-radius: 0;
  transition: color .16s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: none;
}

@media (max-width: 1020px) {
  .main-nav .btn-primary {
    padding-left: 20px; padding-right: 20px;
    font-size: .97em;
  }
  .main-nav a {
    font-size: .98rem;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav .logo {
    margin-right: 15px;
    max-width: 120px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 4px;
    font-size: .98em;
    padding-right: 40px;
  }
  .main-nav .btn-primary {
    padding: 9px 14px;
    font-size: .96em;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* ========================== HERO SECTIONS & ORGANIC SHAPES ===================== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 60%, #eef4ed 100%);
  border-bottom-left-radius: 48px 36px;
  border-bottom-right-radius: 96px 120px;
  box-shadow: 0 8px 40px rgba(44,120,88,0.06);
  padding-top: 54px;
  padding-bottom: 44px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  color: var(--earth-green);
  font-size: 2.1rem;
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.11rem;
  color: #233f18;
  margin-bottom: 14px;
  font-weight: 400;
}
@media (max-width:600px) {
  .hero {
    border-bottom-left-radius: 32px 18px;
    border-bottom-right-radius: 42px 50px;
    padding-top: 36px;
    padding-bottom: 22px;
    margin-bottom: 30px;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
}

/* Organic background deco for selected section backgrounds */
.features, .cta, .services, .about, .privacy-policy, .gdpr, .cookies-policy, .regulamin, .thank-you, .audience, .contact-info {
  background: var(--nature-cream);
  border-radius: 32px 16px 36px 60px/36px 48px 24px 36px;
  box-shadow: 0 4px 26px rgba(64,98,47,0.06);
}

/* ========================== BUTTONS ===================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06em;
  padding: 13px 32px;
  border-radius: 22px;
  border: none;
  transition: background .19s, color .19s, box-shadow .21s, transform .16s;
  margin-top: 6px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--earth-green);
  color: #fff;
  box-shadow: 0 1px 10px rgba(44,44,38,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 5px 22px rgba(44,120,68,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--earth-green);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 2px 16px rgba(44,120,68,0.11);
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}

/* ====================== LINKS ==================== */
a {
  transition: color 0.16s;
}
a:hover, a:focus {
  color: var(--accent);
  outline: none;
}

/* =========================== CTA ========================= */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: var(--section-mb);
  background: linear-gradient(90deg, #e8f5e9 0%, #e5eaec 90%);
  border-radius: 32px 12px 36px 46px/38px 44px 16px 38px;
  box-shadow: 0 2px 22px rgba(56,124,78,0.07);
  min-height: 180px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--earth-green);
  text-align: center;
  font-size: 1.48rem;
  margin-bottom: 18px;
  margin-top: 8px;
}

/* ========================== FOOTER ===================== */
footer {
  background: #e4ede2;
  padding: 32px 0 16px 0;
  margin-top: 42px;
  font-size: 1em;
  min-height: 70px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-logo img {
  width: 50px;
  border-radius: 10px;
  background: var(--nature-cream);
  box-shadow: 0 1px 4px rgba(44,44,44,0.03);
  padding: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 13px;
  font-size: 1em;
  align-items: center;
  color: var(--primary);
}
.footer-nav a {
  color: var(--primary);
  padding: 4px 4px;
  border-radius: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.company-info {
  color: var(--nature-brown);
  font-size: 0.98em;
  margin-left: 7px;
}
@media (max-width: 700px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-logo {
    order: 1;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
    order: 2;
  }
  .company-info {
    order: 3;
  }
}

/* ===================== SECTION & CARD SPACING ======================= */
.services, .features, .about, .audience, .blog-categories, .contact-info, .privacy-policy, .gdpr, .cookies-policy, .regulamin, .thank-you {
  margin-bottom: var(--section-mb);
  padding: var(--section-py) 20px;
}
section ul {
  margin-bottom: 10px;
}
section ul li {
  margin-bottom: 7px;
}

@media (max-width: 950px) {
  .container {
    max-width: 92vw;
    padding: 0 8px;
  }
  .footer-wrapper {
    padding-left: 3px;
    padding-right: 3px;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  header, .main-nav, .footer-wrapper,
  .features, .about, .cta, .services,
  .audience, .contact-info, .privacy-policy, .gdpr, .cookies-policy, .regulamin, .thank-you {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, .services, .features, .about, .audience, .blog-categories, .contact-info {
    margin-bottom: 38px;
    padding-top: 24px;
    padding-bottom: 18px;
  }
}

/* ========================= BLOG CATEGORIES =================== */
.blog-categories .category-list > li {
  background: #f9f8f5;
  border: 1px solid #e0e8dc;
  color: var(--primary);
  font-weight: 600;
  box-shadow: none;
  text-align: left;
  gap: 11px;
  font-size: 1.04em;
}

/* ================== CONTACT PAGE ================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1em;
  margin-bottom: 10px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04em;
  color: var(--earth-green);
}
.contact-details ul li img {
  width: 24px; height: 24px;
  background: var(--secondary);
  border-radius: 6px;
}
.contact-details a {
  color: var(--primary);
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.map-placeholder {
  color: #75796d;
  font-size: 1rem;
  border-radius: 16px;
  background: #dbe8db;
  margin-top: 8px;
}

/* ==================== TESTIMONIALS ================ */
.testimonials .testimonial-card {
  margin-bottom: 22px;
  background: #fff;
  color: #2b321c;
  border: 1.5px solid #e0eede;
  box-shadow: 0 1px 8px rgba(50,80,38,0.09);
  min-height: 80px;
  max-width: 550px;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonials h2 {
  margin-bottom: 22px;
  text-align: left;
}
@media (max-width: 550px) {
  .testimonial-card {
    min-width: unset;
    padding: 12px;
  }
  .testimonials .testimonial-card {
    padding: 13px;
  }
}

/* ======================== THANK YOU ====================== */
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ====================== PRIVACY, RODO, COOKIES, REGULAMIN ============== */
.privacy-policy, .gdpr, .cookies-policy, .regulamin {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 24px 12px 16px 30px/26px 30px 12px 19px;
  margin-bottom: var(--section-mb);
  box-shadow: 0 2px 14px rgba(88,100,86,0.06);
}
.privacy-policy h1, .gdpr h1, .cookies-policy h1, .regulamin h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.privacy-policy h2, .gdpr h2, .cookies-policy h2, .regulamin h2 {
  font-size: 1.22rem;
  margin-bottom: 6px;
}

/* ===================== MEDIA QUERIES: LAYOUT STACK/COLUMN ==================*/
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section, .content-grid, .feature-grid, .feature-list, .service-cards, .category-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===================== COOKIE CONSENT BANNER ==================*/
.cookie-banner {
  position: fixed;
  left: 45%;
  transform: translateX(-50%);
  bottom: 0;
  width: 97vw;
  max-width: 520px;
  background: var(--nature-cream);
  border-radius: 28px 20px 0 0/38px 20px 0 0;
  box-shadow: 0 -2px 18px rgba(40,64,24,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 30px 24px 18px 26px;
  z-index: 21000;
  border: 1.5px solid #e0eede;
  animation: cookie-pop-in .68s cubic-bezier(.48,2.4,.3,1) 1;
}
@keyframes cookie-pop-in {
  from { transform: translateY(90px) scale(0.97) translateX(-50%); opacity:0; }
  to   { transform: translateY(0) scale(1) translateX(-50%); opacity:1; }
}
.cookie-banner p {
  font-size: 1.01em;
  color: var(--primary);
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font: inherit;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 14px;
  border: none;
  margin-left: 0;
  cursor: pointer;
  transition: background .13s, box-shadow .11s;
  margin-top: 1px;
  margin-bottom: 1px;
}
.cookie-banner .accept {
  background: var(--earth-green);
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .reject {
  background: #f7e8dc;
  color: var(--nature-brown);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #634c33;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1.2px solid #e0eede;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--organic-gray);
  color: #233f18;
}

/* ============== Cookie Preferences Modal ================= */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 22000;
  left: 0; right: 0; top: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  background: rgba(40,60,32,0.40);
  animation: cookie-overlay-fadein .23s linear;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-overlay-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  max-width: 440px;
  width: 96vw;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 6px 36px rgba(44,96,48,0.19);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-modal-pop .39s cubic-bezier(.48,2.3,.2,1) 1;
}
@keyframes cookie-modal-pop {
  from { transform: translateY(44px) scale(.95); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal-content h2 {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.2em;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.03em;
  padding: 11px 0;
  border-bottom: 1px solid #e7eade;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  cursor: pointer;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category .cookie-switch {
  position: relative;
  display: inline-flex;
  width: 41px; height: 22px;
}
.cookie-category .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-category .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ECEFE5;
  border-radius: 13px;
  transition: background .19s;
}
.cookie-category .cookie-switch input:checked + .slider {
  background: var(--accent);
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(30,20,10,.07);
  transition: transform .19s;
}
.cookie-category .cookie-switch input:checked + .slider:before {
  transform: translateX(17px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2em;
  position: absolute;
  top: 10px; right: 18px;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover {
  color: var(--accent);
}

/* Accessibility: hide for screen readers label for checkboxes */
.cookie-category .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width:500px) {
  .cookie-banner {
    left: 1%;
    width: 97vw;
    padding: 22px 7px 14px 13px;
    font-size: .96em;
  }
  .cookie-modal-content {
    max-width:95vw;
    padding: 17px 7px 16px 9px;
  }
}

/* ===================== TRANSITIONS & MICRO-INTERACTIONS ==================*/
section, .card, .feature-grid>li, .feature-list>li, .service-cards>li, .category-list>li, .testimonial-card {
  transition: box-shadow .16s, background .14s, border .17s, transform .17s;
}
.service-cards > li:active, .category-list > li:active, .feature-grid > li:active {
  transform: scale(0.98);
}

/* ===================== GENERAL ORGANIC/NATURE STYLE ==================*/
.features, .services, .about, .testimonial-card, .cta, .blog-categories, .privacy-policy, .gdpr, .cookies-policy, .regulamin, .thank-you {
  box-shadow: 0 4px 28px rgba(84,103,87,0.055);
}

/* Nature-inspired organic round corners */
.feature-grid>li, .feature-list>li, .service-cards>li, .category-list>li, .testimonial-card {
  border-radius: 16px 16px 24px 12px/18px 24px 16px 16px;
}
.card {
  border-radius: 16px 24px 12px 18px / 18px 10px 20px 18px;
}
.buttons, .btn-primary, .btn-secondary {
  border-radius: 14px 22px 18px 24px/ 18px 28px 16px 12px;
}

/* Subtle backgrounds for natural feel */
.features {
  background: linear-gradient(120deg,#e7f6e8 35%,#f5f6f3 100%);
}
.about, .services, .audience, .blog-categories {
  background: linear-gradient(121deg,#f7f7f3 66%,#e4ede2 100%);
}

/* =================== FORM BASICS: (if forms added in future) ================ */
input, textarea {
  background: #fff;
  border: 1.5px solid #cfd7cc;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 1em;
  color: #223a13;
  margin-bottom: 11px;
  box-shadow: 0 2px 8px rgba(160,175,150,0.03);
  width: 100%;
}
textarea {
  min-height: 92px;
  resize: vertical;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #f9f8ec;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

/* ============ Prevent Overlapping: Enforce minimum spacing ============= */
section, .section, .card, .testimonial-card, .feature-grid > li, .feature-list > li, .service-cards > li, .category-list > li {
  margin-bottom: 20px !important;
}
.card-container, .content-grid, .feature-grid, .feature-list, .service-cards, .category-list {
  gap: 20px !important;
}

/* Ensure adequate container spacing on mobile */
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .card, .testimonial-card, .service-cards > li {
    padding: 12px 7px;
  }
  .features, .about, .cta, .services, .blog-categories, .audience {
    border-radius: 14px;
    padding: 14px 3px 10px 5px;
  }
}
