/* 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,main,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,main,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

:root {
  /* Brand palette + Nature-inspired organic palette */
  --primary: #153349;
  --primary-light: #355371;
  --background: #fffdf8;
  --background-alt: #eef4ec;
  --card-bg: #faf7f1;
  --earth-brown: #77594C;
  --soft-beige: #E8E3DA;
  --stone-grey: #b7b6ad;
  --shadow-color: rgba(32,48,24,0.07);
  --green: #337977;
  --green-accent: #207168;
  --leaf-green: #4a8e6f;
  --accent: #207168;
  --secondary: #E2E8F4;
  --err: #b83232;
  --white: #fff;
  --testimonial-bg: #f7fbee;
  --testimonial-contrast: #2e4633;
  --focus-outline: #9cc1b1;
}

/* FONT FAMILY */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.5px;
  color: var(--primary);
  line-height: 1.15;
}
h1 {font-size:2.2rem;margin-bottom:20px;font-weight:900}
h2 {font-size:1.6rem;margin-bottom:18px;font-weight:700}
h3 {font-size:1.2rem;margin-bottom:12px;font-weight:700}

p, ul li, ol li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--primary-light);
}
@media (min-width:600px){
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.2rem; }
}

/* Remove blue tap highlight color on mobile */
*:focus {outline: 2px solid var(--focus-outline); outline-offset:2px}
*:focus:not(:focus-visible) { outline: none; }

.container {
  width:100%;
  max-width:1190px;
  margin-left:auto;
  margin-right:auto;
  padding-left:16px;
  padding-right:16px;
  display: flex;
  flex-direction: column;
  gap:0;
}

.content-wrapper {
  display:flex;
  flex-direction:column;
  margin-left:auto;
  margin-right:auto;
  gap:0;
}

.section {
  margin-bottom:60px;
  padding:40px 20px;
  background: none; /* Just ensure background can be set as needed */
}

@media(max-width:768px) {
  .section { padding:32px 8px; margin-bottom:40px; }
  h1 { font-size:2rem }
  .container{padding-left:8px;padding-right:8px;}
}

/* HEADER */
header {
  width: 100%;
  background: var(--background-alt);
  box-shadow:0 2px 8px 0 var(--shadow-color);
  z-index:30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 12px;
}
.logo img {
  height: 44px;
  width:auto;
  display:block;
}
/* Hide main nav on mobile, show hamburger */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.24s, color 0.24s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--leaf-green);
  color: var(--white);
}
.cta-button {
  background: var(--accent);
  color: var(--white)!important;
  border: none;
  border-radius: 999px;
  padding: 11px 28px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor:pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px 0 var(--shadow-color);
  margin-left:14px;
  text-decoration:none;
  letter-spacing:0.03em;
  outline:none;
  display:inline-block;
  position:relative;
}
.cta-button:hover,
.cta-button:focus {
  background: #1d5c57;
  transform: translateY(-2px) scale(1.03);
  box-shadow:0 4px 18px 0 var(--shadow-color);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  display: none;
  z-index:110;
  margin-left:16px;
  line-height:1;
  border-radius: 8px;
  padding: 5px 12px 5px 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--green-accent);
  color: var(--white);
}
@media(max-width:1024px){
  .main-nav a { font-size:0.97rem;}
}
@media(max-width:900px){
  .main-nav {gap:10px;}
  .cta-button {padding:9px 20px;font-size:0.95rem}
}
@media (max-width: 850px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container {gap:6px;}
}
@media (max-width: 500px) {
  .logo img {height:33px;}
}

/* MOBILE SLIDEOUT MENU */
.mobile-menu {
  position: fixed;
  top:0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(34,44,32,0.94);
  z-index: 2000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  opacity:0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.59,.12,.47,.91), opacity 0.22s;
}
.mobile-menu.open {
  transform:translateX(0);
  opacity:1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  z-index: 2100;
  cursor:pointer;
  line-height:1;
  padding:7px 14px 6px 8px;
  border-radius:12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background:var(--leaf-green);
  color:var(--white);
}
.mobile-nav {
  margin-top: 63px;
  display:flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding:24px 26px;
}
.mobile-nav a {
  font-size:1.15rem;
  font-weight:500;
  letter-spacing:0.02em;
  padding:10px 0;
  color:var(--white);
  text-decoration:none;
  border-radius:8px;
  transition: background 0.17s;
  width:100%;
  display:block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background:var(--leaf-green);
  color:var(--background);
}

/* MAIN & SECTIONS */
main {margin-bottom:36px;}
section {margin-bottom:60px; padding:40px 0; position:relative;}
@media(max-width: 768px){
  section {margin-bottom:40px; padding:32px 0;}
}

/* HERO + ABOUT/CTA */
section > .container > .content-wrapper > h1,
section > .container > .content-wrapper > h2 {
  margin-top:20px;
  margin-bottom:20px;
}

section > .container > .content-wrapper > p {
  margin-bottom:22px;
  max-width: 640px;
}

/* FEATURES-LIST */
.features-list {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  justify-content: flex-start;
  margin-top:18px;
  margin-bottom:0;
}
.features-list li {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow:0 4px 20px 0 var(--shadow-color);
  padding:24px 20px 22px 20px;
  min-width:220px; max-width:320px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  transition:box-shadow 0.2s, transform 0.14s;
  margin-bottom:20px;
}
.features-list li:hover {
  box-shadow: 0 10px 36px 0 var(--shadow-color);
  transform: translateY(-4px) scale(1.03);
}
.features-list img {width:34px;height:34px;margin-bottom:6px;}
.features-list h3 {margin-bottom:5px;font-size:1.13rem;color:var(--accent);}
.features-list p {margin-bottom:0;color:var(--primary-light);font-size:0.99rem;}

/* SERVICES PREVIEW */
.services-preview {
  margin-top:16px;
  margin-bottom:18px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:flex-start;
}
.services-preview li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--soft-beige);
  border-radius: 16px;
  padding:12px 20px; 
  min-width:140px;
  font-size:1.03rem;
  font-weight:500;
  color:var(--green-accent);
  box-shadow: 0px 2px 11px 0 var(--shadow-color);
  margin-bottom:20px;
  transition: box-shadow 0.2s,transform 0.16s;
}
.services-preview li img {width:28px; height:28px;}
.services-preview li span {font-size:0.99rem;}
.services-preview li:hover {box-shadow:0 6px 22px 0 var(--shadow-color);transform:scale(1.04);}

/* SERVICE CARDS Grid */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 24px;
}
.service-cards li {
  background: var(--card-bg);
  border-radius: 18px;
  padding:26px 21px 20px 20px;
  min-width: 230px;
  max-width: 320px;
  flex:1 1 250px;
  box-shadow: 0 4px 19px 0 var(--shadow-color);
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom:20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.service-cards li img {width:34px;height:34px;}
.service-cards li h3 {margin:7px 0 4px 0; font-size:1.13rem;color:var(--green-accent);}
.service-cards li p {color:var(--primary-light);margin-bottom:0;}
.service-cards li:hover {box-shadow:0 9px 34px 0 var(--shadow-color); transform:translateY(-5px) scale(1.03)}

/* TEAM PROFILES */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-profile {
  background: var(--card-bg);
  border-radius: 18px 44px 32px 18px/24px 30px 18px 44px;
  padding:26px 21px 18px 21px;
  min-width:220px;max-width:340px;
  flex: 1 1 250px;
  box-shadow:0 4px 18px 0 var(--shadow-color);
  margin-bottom:20px;
  transition:box-shadow 0.18s,transform 0.15s;
}
.team-profile h3 {color:var(--accent);margin-bottom:5px;}
.team-profile ul {margin:0 0 0 19px;padding:0;}
.team-profile ul li {font-size:0.97rem;list-style:disc;margin-bottom:4px;}
.team-profile:hover {box-shadow:0 11px 36px 0 var(--shadow-color);transform:translateY(-4px) scale(1.03);}

/* BLOG LIST */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top:20px;
}
.blog-list article {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 21px 18px 17px 18px;
  max-width:340px;min-width:220px;
  box-shadow:0 4px 19px 0 var(--shadow-color);
  transition: box-shadow 0.13s, transform 0.12s;
  margin-bottom:20px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  gap:8px;
}
.blog-list article h3 {font-size:1.06rem; color:var(--green-accent);margin-bottom:6px;}
.blog-list article p {font-size:0.97rem;margin:0 0 5px 0;}
.blog-list article a {
  color:var(--accent);
  text-decoration:underline;
  font-weight:500;
  margin-top:4px;
  font-size:0.97rem;
  transition: color 0.15s;
}
.blog-list article a:hover {color:var(--primary);}
.blog-list article:hover {box-shadow:0 10px 34px 0 var(--shadow-color);transform:translateY(-3px) scale(1.03);}

.featured-post {
  background:var(--soft-beige);
  color:var(--accent);
  border-radius:15px;
  padding:10px 16px;
  margin:26px 0 14px 0;
  display:inline-block;
  font-size:1rem;
  font-weight:600;
}

.blog-categories {
  margin:14px 0 4px 0;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  align-items: center;
}
.blog-categories span {
  font-weight:500;
  color:var(--green-accent);
  margin-right:7px;
}
.blog-categories a {
  background:var(--background-alt);
  color:var(--primary);
  border-radius:8px;
  padding:5px 9px;
  font-size:0.97rem;
  text-decoration:none;
  font-weight:500;
  transition: background 0.15s;
}
.blog-categories a:hover {background:var(--accent);color:var(--white);}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-accordion > div {
  background: var(--background-alt);
  border-radius: 13px;
  box-shadow:0 2px 10px 0 var(--shadow-color);
  padding: 18px 20px 14px 20px;
  transition: box-shadow 0.17s;
}
.faq-accordion > div h3 {
  color: var(--accent);
  margin-bottom: 5px;
  font-size:1.07rem;
}
.faq-accordion > div p {margin-bottom:0;}

/* Contact/details block */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items:center;
  margin-bottom:18px;
}
.contact-details > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--soft-beige);
  border-radius: 15px;
  padding:11px 17px;
  min-width:170px;
  gap:13px;
  font-weight:500;
  font-size:1rem;
  color:var(--accent);
  box-shadow:0 2px 8px 0 var(--shadow-color);
}
.contact-details img {width:24px;height:24px;}
.map-block {
  display:flex;
  flex-direction:row;
  align-items:center;
  margin-top:18px;
  background:var(--background-alt);
  border-radius:14px;
  padding:16px 22px;
  gap:20px;
  box-shadow:0 2px 11px 0 var(--shadow-color);
}
.map-block img {width:60px;}
.map-block p {margin-bottom:0;font-size:0.97rem;}

@media (max-width: 820px) {
  .features-list,
  .services-preview,
  .service-cards,
  .team-profiles,
  .blog-list {
    flex-direction:column;
    gap:20px;
  }
  .contact-details,
  .blog-categories {
    flex-direction:column;
    gap:16px;
  }
  .map-block{
    flex-direction:column;
    gap:10px;
    align-items: flex-start;
  }
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 24px 44px 18px 30px/36px 24px 24px 31px;
  background: var(--testimonial-bg);
  margin-bottom: 20px;
  box-shadow:0 4px 28px 0 var(--shadow-color);
  margin-top:22px;
  max-width:680px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.testimonial-card blockquote {
  margin:0;
  font-size: 1.07rem;
  color:var(--testimonial-contrast);
  font-family: 'Merriweather', serif;
  font-style: italic;
  letter-spacing:-0.03em;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size:1.08rem;
  color:var(--leaf-green);
}
.testimonial-meta span:first-child {
  font-weight:700;
  letter-spacing:0.04em;
  margin-right:6px;
  color: #f5b937;
}
.testimonial-meta span:last-child{
  font-size:0.96rem;
  color:var(--green-accent);
}
.testimonial-card:hover {box-shadow:0 9px 32px 0 var(--shadow-color); transform:scale(1.02);}

/* Confirmation Info */
.confirmation-info {
  background: var(--background-alt);
  border-radius: 14px;
  box-shadow:0 2px 10px 0 var(--shadow-color);
  padding:16px 19px;
  margin:18px 0 20px 0;
}
.confirmation-info h2 {margin-top:4px;}
.confirmation-info ul li {list-style:disc;font-size:0.98rem;margin-bottom:3px;margin-left:23px;}

/* FOOTER */
footer {
  background: var(--background-alt);
  color: var(--primary-light);
  margin-top:40px;
  width:100%;
  padding-top:2px;
  position:relative;
  z-index: 1;
}
footer section {padding:36px 0 0 0;margin-bottom:0;background:none;}
footer .container{padding-left:12px;padding-right:12px;}
footer .content-wrapper {
  display: flex;
  flex-direction:row; 
  flex-wrap:wrap;
  align-items:flex-start;
  gap:38px;
  justify-content:space-between;
}
.footer-logo img {height:48px;width:auto;display:block;}
.footer-nav {
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:190px;
}
.footer-nav a {
  color:var(--accent);
  text-decoration:none;
  font-size:0.99rem;
  padding:2px 0;
  border-radius:4px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {background:var(--leaf-green);color:var(--background);}
.footer-contact {
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-top:4px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap:10px;
  color:var(--primary-light);
  font-size:0.96rem;
}
.footer-contact img {width:18px;height:18px;}
.legal {font-size:0.89rem;color:var(--stone-grey);margin-top:10px;}

@media(max-width:900px) {
  footer .content-wrapper {flex-direction:column;gap:25px;align-items:flex-start;}
  .footer-logo img {height:36px;}
}

/* UTILITY LAYOUT CLASSES as required by mission */
.card-container {display:flex;flex-wrap:wrap;gap:24px;}
.card {margin-bottom:20px;position:relative;box-shadow:0 2px 8px 0 var(--shadow-color);border-radius:18px;background:var(--soft-beige);padding:18px 16px;}
.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;}
.feature-item {display:flex;flex-direction:column;align-items:flex-start;gap:15px;}

@media(max-width:768px){
  .text-image-section{flex-direction:column;gap:18px;}
  .card-container, .content-grid{flex-direction:column;gap:20px;}
}

/* LINK and BUTTON ACCESSIBILITY */
a {color:var(--accent);transition:color 0.16s;text-decoration:none;}
a:hover, a:focus {color:var(--primary);text-decoration:underline;}

/* Lists */
ul, ol {margin-bottom:15px;}
ul li, ol li {margin-bottom:8px;}

/* TABLES (if present) */
table {width:100%;font-size:1rem;margin:18px 0;border-radius:9px;overflow:hidden;background:var(--card-bg);box-shadow:0 1px 8px 0 var(--shadow-color);}
th,td {padding:12px 10px;text-align:left;}
th {background:var(--soft-beige);font-weight:700;color:var(--primary);}

/* FORM INPUTS (if present) */
input, textarea, select, button {
  font-family:inherit;
  font-size:1rem;
}
input, textarea, select {
  background:var(--background-alt);
  border:1.8px solid var(--stone-grey);
  border-radius:8px;
  padding:10px 13px;
  margin-bottom:14px;
  transition:border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color:var(--accent);
  outline:none;
}

/* IMAGES */
img {max-width:100%;height:auto;display:block;}

/* MICRO-INTERACTIONS & EFFECTS */
.card, .team-profile, .service-cards li, .features-list li, .blog-list article, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .team-profile:hover, .service-cards li:hover, .features-list li:hover, .testimonial-card:hover, .faq-accordion > div:hover, .blog-list article:hover {
  box-shadow:0 8px 32px 0 var(--shadow-color);
  transform:translateY(-4px) scale(1.02);
}

/* SPACING TWEAKS */
section .cta-button, .footer-contact .cta-button {
  margin-top:14px;
}
div:not(:last-child) .card, div:not(:last-child) .testimonial-card, div:not(:last-child) .team-profile {
  margin-bottom:20px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: var(--testimonial-bg);
  box-shadow: 0 -3px 20px 0 var(--shadow-color);
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 24px 8px 18px 8px;
  transition: transform 0.32s cubic-bezier(.59,.12,.47,.91), opacity 0.22s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner.visible {
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}
.cookie-banner__text{
  max-width:520px;
  font-size:0.99rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border:none;
  border-radius:7px;
  font-family:inherit;
  font-size:1rem;
  padding:8px 17px;
  cursor:pointer;
  font-weight:600;
  transition:background 0.16s,color 0.16s, box-shadow 0.16s;
  box-shadow:0 2px 10px 0 var(--shadow-color);
  outline:none;
}
.cookie-accept {background:var(--accent);color:var(--white);}
.cookie-accept:hover,.cookie-accept:focus{background:#16655d;}
.cookie-reject {background:var(--earth-brown);color:var(--white);}
.cookie-reject:hover,.cookie-reject:focus{background:#534139;}
.cookie-settings {background:var(--soft-beige);color:var(--primary);}
.cookie-settings:hover,.cookie-settings:focus {background:var(--background-alt);}

@media(max-width:700px){
  .cookie-banner {flex-direction:column;align-items:flex-start;padding:20px 7px 15px 7px;gap:15px;font-size:0.97rem}
  .cookie-banner__text{max-width:100%;}
  .cookie-banner__actions{gap:7px;}
}


/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed; left:0; top:0; width:100vw; height:100vh;
  background:rgba(25,39,17,0.41);
  z-index:2300;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.open {
  display:flex;
}
.cookie-modal {
  background: var(--background-alt);
  border-radius: 20px;
  padding:36px 30px 27px 30px;
  min-width:280px;
  max-width:96vw;
  box-shadow:0 8px 48px 0 var(--shadow-color);
  display: flex;
  flex-direction: column;
  gap:18px;
  position:relative;
}
.cookie-modal h2 {
  margin-bottom:8px;
  font-size:1.3rem;
  color:var(--accent);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap:14px;
  margin-bottom: 9px;
}
.cookie-modal-category label {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-modal-category input[type=checkbox] {
  width:20px;height:20px;accent-color:var(--green-accent);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
  justify-content:flex-end;
}
.cookie-modal-close {
  position:absolute;top:14px;right:14px;
  border:none; background:none; font-size:1.5rem;color:var(--accent);
  cursor:pointer; padding:5px 11px 5px 7px; border-radius:9px; line-height:1;
  transition: background 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {background:var(--soft-beige);color:var(--err);}
@media(max-width:480px){.cookie-modal{padding:22px 8px 18px 8px;}}

/* Nature-inspired ORGANIC SHAPES (subtle decorations) */
.card, .team-profile, .service-cards li, .testimonial-card {
  border-radius: 24px 44px 18px 30px/36px 24px 24px 31px;
}

/* ORGANIC SHADOWS */
.card, .service-cards li, .team-profile, .testimonial-card, .blog-list article, .faq-accordion > div {
  box-shadow:0 4px 19px 0 var(--shadow-color);
}

/* MARKS for organic list bullets */
ul li::marker, ol li::marker {color:var(--green-accent);}

/* =======================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width:560px){
  .features-list li, .services-preview li, .service-cards li, .team-profile, .blog-list article, .testimonial-card {
    min-width:unset; max-width:98vw; padding:15px 6vw; font-size:0.98rem;
  }
  section {padding:24px 0;}
}

/* ============================
   PRINT STYLES (optional)
============================= */
@media print {
  header,footer,.mobile-menu,.cookie-banner,.cookie-modal-backdrop{display:none!important;}
  main,section,.content-wrapper{padding:0!important;margin:0!important;background:none!important;box-shadow:none!important;}
}
