/* ===============================
   CSS RESET & NORMALIZE
   =============================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F7F5F0;
  color: #2C3A2C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #274D33;
  text-decoration: none;
  transition: color 0.25s;
}

/*============================*
    FONTS & TYPOGRAPHY
*============================*/
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #274D33;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, span {
  color: #35513F;
  font-size: 1rem;
  line-height: 1.8;
}
strong {
  font-weight: 600;
  color: #274D33;
}

/*============================*
    BRAND COLORS
*============================*/
:root {
  --color-primary: #274D33;
  --color-secondary: #F6A945;
  --color-accent: #EDEDED;
  --color-bg-light: #F7F5F0;
  --color-text: #2C3A2C;
  --color-text-dark: #243827;
  --color-testimonial-bg: #fff8ee;
  --color-success: #72B37E;
  --color-danger: #C96146;
}

/*============================*
    CONTAINER
*============================*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*============================*
    HEADER & NAVIGATION
*============================*/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(40,60,38,0.07);
  padding: 0;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 16px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  background: #e0e4d0;
  box-shadow: 0 1px 6px rgba(39,77,51,0.12);
  padding: 4px;
}
nav:not(.mobile-nav) {
  display: flex;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #274D33;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
nav a:hover,
nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 28px 24px 30px 22px/20px 24px 18px 30px;
  box-shadow: 0 3px 12px rgba(230, 180, 80, 0.13);
  letter-spacing: 0.2px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.22s, transform 0.16s, box-shadow 0.22s;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #e28120;
  color: #fff;
  box-shadow: 0 5px 24px rgba(230,150,32,0.18);
  transform: translateY(-2px) scale(1.04);
}

/*============================*
    MOBILE MENU
*============================*/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  padding: 5px 12px;
  border-radius: 10px;
  margin-left: 8px;
  cursor: pointer;
  display: none;
  z-index: 110;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e6ecd8;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #fffcee 70%, #ddf1e3 100%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.4,.1,.4,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 18px 0 0;
  cursor: pointer;
  z-index: 1210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  padding: 14px 8px 14px 0;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.22px;
  font-weight: 600;
  border-radius: 18px;
  width: 90vw;
  display: block;
  margin-bottom: 6px;
  transition: background 0.21s, color 0.18s, padding 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  padding-left: 16px;
}

/*============================*
    HERO SECTION
*============================*/
.hero {
  background: linear-gradient(110deg, #e5efe6 74%, #fcf5e0 100%);
  border-radius: 0 0 44px 44px/0 0 38px 38px;
  box-shadow: 0 4px 28px rgba(38,61,40,0.07);
  margin-bottom: 60px;
  padding: 55px 0 48px 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #35513F;
}

/*============================*
    SECTION SPACING PATTERNS
*============================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px 18px 32px 14px/16px 22px 18px 26px;
  box-shadow: 0 3px 20px rgba(39,77,51,0.059);
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 24px rgba(39,77,51,0.12);
  transform: translateY(-4px) scale(1.016);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--color-testimonial-bg);
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 18px 34px 20px 18px/22px 18px 26px 32px;
  box-shadow: 0 2px 14px rgba(202,175,109,0.08);
  border: 1px solid #f7e2c1;
  min-width: 270px;
  max-width: 580px;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stars {
  font-size: 1.3em;
  color: #F6A945;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: #263C28;
  font-size: 1.05rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px 22px 18px 36px/24px 18px 22px 20px;
  box-shadow: 0 2px 14px rgba(39,77,51,0.07);
  min-width: 220px;
  max-width: 290px;
  padding: 24px 18px;
  border: 1px solid #eaf1dd;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  background: #e8f6e1;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(70,82,52,0.09);
  padding: 5px;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.12rem;
}
.feature-item p {
  font-size: 0.99rem;
  color: #376047;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 5px 22px rgba(39,77,51,0.15);
  transform: translateY(-3px) scale(1.03);
}

/* Generic list styling for features, about, services, etc. */
ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 10px;
}
ul li, ol li {
  position: relative;
  font-size: 1.01rem;
  margin-bottom: 10px;
  line-height: 1.85;
  color: #365639;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
ol li:before { display: none; }

/*-----------------------
   About/Legal section
------------------------*/
.about, .about-team, .features-method, .services, .legal, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px 22px 34px 16px/24px 30px 20px 26px;
  box-shadow: 0 2px 18px rgba(39,77,51,0.055);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.text-section a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.18s;
}
.text-section a:hover { color: #e28120; }

/*-----------------------
   Contact Teaser/Action
------------------------*/
.contact-teaser {
  margin-bottom: 0;
  padding: 40px 20px 60px 20px;
  background: linear-gradient(120deg, #e3f2ea 80%, #fff4da 100%);
  border-radius: 40px 34px 60px 22px/36px 54px 28px 52px;
  box-shadow: 0 2px 15px rgba(230,160,60,0.045);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-short {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
}
.contact-info-short span {
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #35513F;
}

.contact-section .content-wrapper {
  gap: 34px;
}
.action-area {
  margin-top: 18px;
}

/*-----------------------
   Footer
------------------------*/
footer {
  background: #274d33;
  color: #fff;
  padding: 44px 0 22px 0;
  border-top-left-radius: 42px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 24px rgba(51,75,51,0.055);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #F6A945;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.19s;
}
.footer-menu a:hover,
.footer-menu a:focus { color: #fff; text-decoration: underline; }
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  font-size: 0.98rem;
}
.contact-info span {
  display: flex;
  align-items: center;
  color: #EDEDED;
  gap: 9px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}
.copyright {
  color: #e9e9e9;
  font-size: 0.92rem;
  margin-top: 10px;
}

/*============================*
    COOKIE CONSENT BANNER
*============================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #274D33;
  box-shadow: 0 -4px 28px rgba(39,77,51,0.09);
  padding: 28px 6% 22px 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 2000;
  font-size: 0.98rem;
  border-top-right-radius: 36px;
  border-top-left-radius: 32px;
  animation: banner-slide-up 0.5s ease-out;
}
@keyframes banner-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 22px 16px 22px 18px/18px 19px 15px 16px; 
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, color 0.15s, box-shadow 0.16s;
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 2px 14px rgba(246, 169, 69, 0.05);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #dfa304;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid #ddb579;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #ffe3b9;
}
.cookie-btn.settings {
  background: #e2edde;
  color: #2C3A2C;
  border: 1.5px solid #98b693;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #c6e0c3;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  justify-content: center;
  align-items: center;
  display: flex;
  background: rgba(44,74,50,0.20);
  transition: background 0.23s;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 30px 24px 26px 20px/20px 22px 32px 30px;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 6px 38px rgba(39,77,51,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-popup 0.41s cubic-bezier(.5,1.2,.6,1);
}
@keyframes modal-popup {
  0% { transform: scale(0.95) translateY(40px); opacity: 0; }
  80% { transform: scale(1.02) translateY(-5px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--color-danger);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.category-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.category-name {
  flex: 1 1 150px;
  font-weight: 600;
  color: #274D33;
}
.category-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e3e8d6;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.category-toggle:checked {
  background: #8fcc8b;
}
.category-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
  position: absolute;
  left: 3px;
  top: 3px;
  box-shadow: 0 1px 2px rgba(60,60,40,0.09);
}
.category-toggle:checked:before {
  transform: translateX(14px);
}
.category-note {
  font-size: 0.9rem;
  color: #7f8841;
  margin-left: 7px;
}
.category-row.disabled .category-toggle {
  background: #ced1b8;
  pointer-events: none;
}
.category-row.disabled .category-name {
  color: #788773;
}

/*==========================*
   CARD DESIGN FOR RICH UIs
*==========================*/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/*====================*
   ACCESSIBILITY
*====================*/
:focus-visible {
  outline: 2px solid #F6A945;
  outline-offset: 2px;
}

/*====================*
   ANIMATIONS
*====================*/
a, .btn-primary, .feature-item, .card, .cookie-btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.18s, transform 0.17s;
}

/*==============================*
   RESPONSIVE DESIGN (MOBILE-FIRST)
*==============================*/
@media (max-width: 1023px) {
  nav:not(.mobile-nav) {
    gap: 10px;
  }
  .feature-grid {
    gap: 18px;
  }
  .footer-menu {
    gap: 9px;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 9px; }
  .hero {
    padding: 34px 0 28px 0;
    border-radius: 0 0 28px 28px/0 0 19px 19px;
  }
  .section, .about, .about-team, .services, .features, .legal, .contact-section {
    padding: 26px 3vw;
    border-radius: 18px 16px 20px 13px/14px 15px 12px 17px;
  }
}
@media (max-width: 768px) {
  .hero .content-wrapper,
  .about .content-wrapper,
  .about-team .content-wrapper,
  .features-method .content-wrapper,
  .services .content-wrapper,
  .contact-section .content-wrapper {
    max-width: 98vw;
    gap: 22px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.96rem;
  }
  .testimonials .content-wrapper { gap: 16px; }
  .testimonial-card {
    min-width: 0;
    max-width: 99vw;
    padding: 14px;
  }
  .cookie-banner {
    padding: 18px 4vw 13px 4vw;
    font-size: 0.97rem;
  }
  .cookie-modal .modal-content {
    padding: 20px 5vw 18px 5vw;
    min-width: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }
  nav:not(.mobile-nav) {
    display: none !important;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.16rem; }
  .hero { padding: 14vw 0 8vw 0; }
  .section, .about, .about-team, .features, .services, .legal, .contact-section {
    padding: 11vw 3vw;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 9px 13vw;
  }
  .feature-item, .testimonial-card, .card {
    padding: 10px 7vw;
  }
}

/*====================*
   FORMS & BUTTONS
*====================*/
input[type="text"],
input[type="email"],
textarea {
  padding: 10px 15px;
  border-radius: 13px 15px 19px 12px/11px 13px 14px 15px;
  border: 1.2px solid #d8e6d2;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  background: #f9faf8;
  color: #274D33;
  resize: vertical;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--color-secondary);
  outline: none; 
  background: #f2f7ee;
}
button, .btn-primary, .cookie-btn {
  outline: none;
}

/*======================*
   OTHER UI/MICRO INTERACTIONS
*======================*/
.card:hover,
.feature-item:hover,
.btn-primary:hover,
.cookie-btn:hover {
  transition: box-shadow 0.11s, background 0.12s, transform 0.14s;
}

/*====================*
   ADDITIONAL UTILS
*====================*/
.mt-2 { margin-top: 16px; }
.my-3 { margin: 24px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-4 { gap: 32px; }

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

/*====================*
   ORGANIC SHAPES & TEXTURES
*====================*/
/* Subtle background texture overlay using SVG for hero/sections (decorative only) */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -60px;
  top: -38px;
  width: 130px;
  height: 130px;
  background: url('data:image/svg+xml;utf8,<svg fill="none" viewBox="0 0 120 120" width="120" height="120" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23F6A945" opacity="0.085" cx="60" cy="60" rx="60" ry="60"/></svg>') no-repeat center/cover;
  z-index: 1;
}
section {
  position: relative;
  z-index: 2;
}

/* Organic decorative accent bottom right */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  right: -72px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg fill="none" viewBox="0 0 160 160" width="150" height="150" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23274D33" opacity="0.08" cx="80" cy="80" rx="80" ry="80"/></svg>') no-repeat center/cover;
  z-index: 1;
}

/* Non-overlapping to content ensured by z-index and placement */

/*==================*
   PRINT STYLES
*==================*/
@media print {
  * { background: #fff !important; color: #222 !important; box-shadow: none !important; }
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal { display: none !important; }
  .container { padding: 0; }
  .section, .about, .about-team, .legal, .services, .features { box-shadow: none; }
}
