/* ===============================
   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,main,footer,header,nav,section,article,aside,figure,figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background-color: #F6F5F4;
  color: #26341F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #16487F; text-decoration: underline; transition: color 0.2s; }
a:hover, a:focus { color: #3DBF76; text-decoration: none; }
ul, ol { padding-left: 20px; }
strong, b { font-weight: 700; }

/* ===============================
   BRAND FONTS
   =============================== */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 1.125rem; }
.subheadline { font-size: 1.125rem; color: #4B6232; margin-bottom: 18px; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}

/* ===============================
   LAYOUT: CONTAINER & SPACING
   =============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
@media (max-width: 900px) {
  .section { padding: 32px 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 2vw; }
  .section { margin-bottom: 40px; padding: 24px 0; border-radius: 16px; }
  .content-wrapper { gap: 16px; }
}

/* ===============================
   FLEXBOX: FOUNDATION PATTERNS
   =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(44,72,55,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(44,72,55,0.14);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 18px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1.5px 12px 0 rgba(44,72,55,0.09);
  margin-bottom: 20px;
  border-left: 4px solid #3DBF76;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(44,72,55,0.15);
  border-color: #16487F;
}
.testimonial-card p {
  margin: 0;
  font-size: 1rem;
  color: #26341F;
}
.testimonial-card strong {
  color: #1B4728;
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 10px; padding: 16px; border-radius: 13px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F5F4;
  border-radius: 14px;
  padding: 22px 16px;
  min-width: 260px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px rgba(44,72,55,0.05);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item img {
  width: 36px; height: 36px;
  margin-bottom: 7px;
}
.feature-item h3 {
  color: #16487F;
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus-within {
  background: #EBF4EC;
  box-shadow: 0 4px 20px 0 rgba(37,82,44,0.09);
}
@media (max-width: 900px) {
  .feature-item { min-width: 180px; padding: 16px 10px; }
}

.feature-grid, .service-list, .service-detail-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-detail-list, .team-list {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .service-detail-list, .team-list {
    flex-direction: column;
  }
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: #fff;
  border-bottom: 1px solid #E7E1DC;
  box-shadow: 0 1px 8px 0 rgba(60, 90, 55, 0.055);
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 0;
}
header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  padding: 8px 0 8px 18px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
  margin-right: 4px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
  flex: 1 1 auto;
}
.main-nav a {
  color: #26341F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.19s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBF4EC;
  color: #16487F;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #3DBF76;
  color: #fff;
  padding: 11px 28px;
  border-radius: 22px;
  border: none;
  box-shadow: 0 2px 7px rgba(70,133,75,0.11);
  margin-left: 16px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.19s, color 0.16s, transform 0.17s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #16487F;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(21,85,60,0.13);
  transform: scale(1.035);
}

.mobile-menu-toggle {
  display: none;
  background: #3DBF76;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.13s, color 0.12s, box-shadow 0.15s;
  z-index: 1002;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #16487F;
}

@media (max-width: 1020px) {
  .main-nav { gap: 12px; margin-left: 10px; }
  .btn-primary { padding: 10px 18px; font-size: 0.965rem; }
}

@media (max-width: 900px) {
  .main-nav { gap: 9px; font-size: 15px; }
  .btn-primary { padding: 9.5px 12px; font-size: 0.95rem; }
}

@media (max-width: 800px) {
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 600px) {
  header {
    flex-direction: row;
    padding: 0 0;
  }
  .logo { padding: 8px 0 8px 8px; }
}

/* ===============================
   MOBILE NAVIGATION MENU
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,60,38, 0.10);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.77,0,0.175,1), opacity 0.23s;
}
.mobile-menu.menu-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #16487F;
  border: none;
  font-size: 1.9rem;
  border-radius: 50%;
  width: 42px; height: 42px;
  position: absolute;
  top: 22px; right: 22px;
  cursor: pointer;
  z-index: 2010;
  box-shadow: 0 1.5px 12px 0 rgba(25,80,55,0.07);
  transition: background 0.12s, color 0.16s;
  outline: none;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E7F3EC;
}
.mobile-nav {
  background: #fff;
  box-shadow: 0 2px 18px rgba(36, 84, 39, 0.12);
  width: 88vw;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  padding: 80px 32px 28px 32px;
}
.mobile-nav a {
  color: #16487F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.10rem;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.19s, color 0.16s;
  margin-bottom: 4px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #EBF4EC;
  color: #3DBF76;
}
@media (max-width: 400px) {
  .mobile-nav { max-width: 100vw; padding: 80px 10px 18px 14px; }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
  background: linear-gradient(120deg, #DCE9D2 20%, #EAF6FC 100%);
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
  padding: 56px 0 36px;
  box-shadow: 0 4px 32px 0 rgba(53,89,45,0.07);
}
.hero h1 {
  color: #1B4728;
  margin-bottom: 12px;
}
.hero .btn-primary {
  margin-top: 14px;
}
@media (max-width: 700px) {
  .hero { padding: 36px 0 26px; border-radius: 0 0 16px 16px; }
}

/* ===============================
   FEATURES SECTION
   =============================== */
.features {
  background: #EBF4EC;
  border-radius: 24px;
  margin-bottom: 60px;
}
.features h2 {
  color: #16487F;
  margin-bottom: 16px;
}
.features ul, .features ol {
  margin-left: 7px;
  margin-bottom: 6px;
}
.features li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 8px;
  color: #26341F;
}
.features li strong { color: #3DBF76; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;}

/* ===============================
   SERVICE SECTION (INDEX & SERVICES)
   =============================== */
.service-list, .service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(44,72,55,0.08);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #3DBF76;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.service-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
.service-item h3 {
  color: #16487F;
  margin-bottom: 3px;
}
.service-item .service-price {
  color: #3DBF76;
  font-size: 1.025rem;
  font-weight: 600;
  margin-left: 8px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 10px 40px 0 rgba(53,77,45,0.09);
  border-color: #16487F;
}
@media (max-width: 900px){
  .service-item {min-width: 170px; padding: 15px 9px 13px;}
}

.pricing-overview ul {
  margin: 0 0 0 16px;
  color: #2A3E17;
  font-size: 1rem;
}

/* ===============================
   CTA SECTION
   =============================== */
.cta {
  background: #3DBF76;
  color: #fff;
  border-radius: 24px;
  padding: 42px 0;
  margin-bottom: 0;
  margin-top: 30px;
  box-shadow: 0 4px 36px 0 rgba(60,100,65,0.10);
}
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta .btn-primary { background: #fff; color: #16487F; box-shadow: none; margin-left: 0; margin-top: 13px; }
.cta .btn-primary:hover, .cta .btn-primary:focus { background: #16487F; color: #fff; }
@media (max-width: 800px) {
  .cta { padding: 24px 0; border-radius: 14px; }
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials {
  background: #fff;
  border-radius: 24px;
  padding: 38px 0 24px 0;
  margin-bottom: 60px;
}
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {.testimonial-row { flex-direction: column; gap: 14px; }}

/* ===============================
   BLOG STYLES
   =============================== */
.blog-list .blog-teaser {
  background: #F6F5F4;
  border-radius: 14px;
  box-shadow: 0 1.5px 12px 0 rgba(44,72,55,0.07);
  padding: 22px 16px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.17s;
}
.blog-teaser h3 {
  color: #16487F;
  margin-bottom: 8px;
}
.blog-teaser .category {
  display: inline-block;
  background: #3DBF76;
  color: #fff;
  padding: 0 9px;
  font-size: 0.93rem;
  border-radius: 7px;
  margin-top: 12px;
  font-family: 'Montserrat',Arial,sans-serif;
}
.blog-teaser:hover, .blog-teaser:focus-within {
  background: #EBF4EC;
  box-shadow: 0 6px 22px rgba(44,72,55,0.11);
}

/* ===============================
   TEAM SECTION STYLES
   =============================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(41,87,49,0.08);
  padding: 18px 14px;
  min-width: 160px;
  flex: 1 1 130px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.team-member h3 {
  color: #16487F;
  margin-bottom: 2px;
  font-size: 1.13rem;
}

@media (max-width: 900px) {
  .team-member { min-width: 100px; padding: 12px 8px; }
}

/* ===============================
   FAQ STYLES
   =============================== */
.faq-accordion { margin-bottom: 18px; }
.faq-item {
  background: #EBF4EC;
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 16px 14px 10px;
  box-shadow: 0 1px 7px rgba(40,84,44,0.07);
  transition: box-shadow 0.2s, background 0.14s;
}
.faq-item h3 {
  color: #1B4728;
  margin-bottom: 5px;
  font-weight: 600;
}
.faq-item p { font-size: 1rem; }
.faq-item:hover, .faq-item:focus-within { background: #C8DBC4; box-shadow: 0 5px 20px 0 rgba(64,110,84,0.11); }
.faq-search { background: #fffde8; border-radius: 12px; padding: 16px 14px; }

/* ===============================
   CONTACT STYLES
   =============================== */
.contact-info, .contact-map, .business-hours {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(41, 87, 49, 0.04);
  padding: 20px 18px 12px;
  margin-bottom: 20px;
}
.contact-info ul li, .business-hours ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #26341F;
  margin-bottom: 10px;
}
.contact-info img, .business-hours img { width: 22px; height: 22px; }
.contact-map strong { color: #16487F; }

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #26341F;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 50px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 44px 0 30px 0;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
}
.footer-brand img {
  height: 38px;
  width: 38px;
}
.footer-contact, .footer-nav, .footer-legal {
  min-width: 180px;
  flex: 1 1 180px;
  margin-right: 10px;
}
.footer-contact h3, .footer-nav h3, .footer-legal h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #EBF4EC;
}
.footer-contact ul, .footer-nav ul, .footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li, .footer-nav li, .footer-legal li {
  margin-bottom: 10px;
  color: #E3F2D3;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact a, .footer-nav a, .footer-legal a {
  color: #B8F0B6;
  text-decoration: none;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-contact a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-wrapper { gap: 18px; padding: 28px 0 18px 0; }
  .footer-contact, .footer-nav, .footer-legal { min-width: 120px; font-size: 0.965rem; }
}
@media (max-width: 600px) {
  .footer-wrapper { flex-direction: column; gap: 14px; padding: 22px 0 10px 0; }
}

/* ===============================
   LEGAL PAGES
   =============================== */
.legal {
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 40px;
  color: #26341F;
  font-size: 1rem;
  box-shadow: 0 2px 14px 0 rgba(41,84,44,0.07);
}
.legal h1, .legal h2 { color: #16487F; margin-bottom: 12px; }
.legal ul, .legal ol { margin-left: 17px; margin-bottom: 15px; }
.legal li { margin-bottom: 9px; }
@media (max-width: 600px) { .legal { padding: 20px 8px; border-radius: 14px; } }

/* ===============================
   UTILITY, SPACING & TYPOGRAPHY
   =============================== */
.text-section {
  font-size: 1.06rem;
  color: #2A3E17;
  margin-bottom: 8px;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .text-section { font-size: 0.98rem; }
}

ul, ol { margin-bottom: 15px; }

::-webkit-input-placeholder { color: #8c9980; }
::-moz-placeholder { color: #8c9980; }
:-ms-input-placeholder { color: #8c9980; }
::placeholder { color: #8c9980; }

/* ===============================
   MICRO-ANIMATIONS, EFFECTS
   =============================== */
[data-reveal], .btn-primary, .feature-item, .testimonial-card, .service-item, .blog-teaser, .card {
  transition: box-shadow 0.25s, background 0.19s, border-color 0.18s, color 0.16s, transform 0.17s;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E8F5E9;
  color: #1B4728;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 4010;
  box-shadow: 0 -3px 24px 0 rgba(44,80,45,0.11);
  padding: 20px 36px 20px 20px;
  font-size: 1.03rem;
  border-radius: 12px 12px 0 0;
  gap: 16px;
  opacity: 1;
  animation: cookieBannerSlideUp 0.45s;
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: 32px;
}
.cookie-btn {
  outline: none;
  border: none;
  border-radius: 16px;
  padding: 7px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 3px;
  transition: background 0.17s, color 0.14s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: #3DBF76;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #16487F; color: #fff; }
.cookie-btn.reject {
  background: #fff;
  color: #3DBF76;
  border: 1px solid #3DBF76;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #EBF4EC; color: #16487F; }
.cookie-btn.settings {
  background: #EBF4EC;
  color: #16487F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #3DBF76; color: #fff; }
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px 18px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions { margin-left: 0; gap: 8px; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,45,21, 0.12);
  z-index: 4020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.25s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 54px 0 rgba(73,127,91,0.22);
  width: 96vw;
  max-width: 420px;
  padding: 30px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  animation: modalSlideUp 0.33s cubic-bezier(0.77,0,0.175,1);
}
@keyframes modalSlideUp {
  from { transform: translateY(60px); opacity: 0;}
  to   { transform: translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  color: #16487F;
  font-size: 1.45rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #26341F;
}
.cookie-modal input[type="checkbox"] {
  border-radius: 6px;
  accent-color: #3DBF76;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-desc {
  color: #4B6232;
  font-size: 0.995rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  display: flex;
  gap: 11px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn { padding: 7px 17px; font-size: 0.96rem; }

@media (max-width:500px) {
  .cookie-modal { padding: 16px 5vw 15px; border-radius: 14px; }
}

/* ===============================
   ORGANIC SHAPES & TEXTURES
   =============================== */
.section, .features, .hero, .cta, .testimonial-card, .feature-item, .service-item, .blog-teaser, .card, .team-member, .faq-item, .contact-info, .contact-map, .business-hours, .legal {
  /* Subtle organic border radius and shadow */
  border-radius: 22px 20px 18px 26px/18px 22px 22px 24px;
  box-shadow: 0 2px 14px 0 rgba(41,84,44,0.07);
}

/* Subtle nature textures as background overlays (SVG pattern fallback as PNG for legacy support) */
.section, .features, .cta {
  background-image: url('data:image/svg+xml;utf8,<svg width="160" height="160" viewBox="0 0 160 160" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="80" cy="80" rx="70" ry="60" fill="%23eafaf3"/><ellipse cx="50" cy="110" rx="24" ry="15" fill="%23EBF4EC"/><ellipse cx="100" cy="40" rx="16" ry="10" fill="%23E8F1F2"/></svg>');
  background-repeat: repeat;
  background-size: 280px 180px;
}

/*==============================
  FORM ELEMENTS (for future expansion)
  ==============================*/
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input:not([type='checkbox']):not([type='radio']), textarea, select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #C5D6BE;
  background: #fff;
  margin-bottom: 10px;
  color: #213a1E;
  box-shadow: 0 1px 5px 0 rgba(44,72,55,0.03);
  outline: none;
  transition: border 0.15s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #3DBF76;
  box-shadow: 0 3px 24px 0 rgba(53,139,37,0.09);
}

button {
  outline: none;
  cursor: pointer;
  transition: background 0.16s, color 0.11s, box-shadow 0.13s;
}

/* ===============================
   MISC
   =============================== */
::-webkit-scrollbar { width: 8px; background: #E3E6DE; }
::-webkit-scrollbar-thumb { background: #B8F0B6; border-radius: 4px; }

/* Focus visible accessibility */
:focus-visible { outline: 2px dashed #3DBF76; outline-offset: 2px; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =========== END ============= */
