/* ---------------- CSS RESET & NORMALIZE ------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; background: #faf9f6; color: #2b3a2e; font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: #184B33; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #19547B; text-decoration: underline; }
ul,ol { padding-left: 24px; margin-bottom: 20px; }
table { border-collapse: collapse; width: 100%; background: #FFF; border-radius: 14px; box-shadow: 0 2px 10px 0 rgba(52,87,61,0.05); margin-bottom: 32px; overflow: hidden; }
thead { background: #e4e6dc; }
th, td { padding: 16px 10px; border-bottom: 1px solid #e9eadb; text-align: left; font-size: 16px; }
th { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 18px; font-weight: 600; color: #185142; }
tl:last-child, tr:last-child td { border-bottom: none; }

/* ------------------- NATURE ORGANIC PALETTE -------------------------- */
:root {
  --brand-primary: #19547B;
  --brand-primary-dark: #174264;
  --brand-secondary: #FFFFFF;
  --brand-accent: #F9B233;
  --earth-1: #F5F4EF;
  --earth-2: #DFE8DC;
  --earth-3: #BBD099;
  --green-primary: #4E8C59;
  --green-dark: #35653A;
  --brown-light: #B39B74;
  --text-dark: #203218;
  --text-medium: #446140;
  --neutral-1: #fff;
  --neutral-2: #E2E6DE;
}

/* ----------------- TYPOGRAPHY ----------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #295240;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #174264;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #35653A;
}
h4 { font-size: 1.15rem; font-weight: 500; }
p, li, td, th { font-size: 1rem; color: #294D38; }
strong { color: #174264; }
.text-section p:not(:last-child) { margin-bottom: 16px; }
.text-section ul { margin-bottom: 16px; }

/* ------------------- LAYOUT CONTAINERS --------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  background: var(--earth-1);
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(78,140,89,0.08);
  padding: 40px 28px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* 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: 20px;
  box-shadow: 0 3px 18px 0 rgba(52,87,61,0.08);
  padding: 28px 20px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow .22s, transform .12s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(78,140,89,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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--green-primary);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(52,87,61,0.09);
  margin-bottom: 20px;
  min-width: 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f9f5;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 11px 0 rgba(78,140,89, 0.08);
}


/* ---------- HEADER/NAVIGATION STYLES ------------ */
header {
  width: 100%;
  background: linear-gradient(90deg, #F5F4EF 60%, #E2E6DE 100%);
  box-shadow: 0 1px 7px 0 rgba(87,107,81, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #35653A;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background .14s, color .14s;
}
header nav a:hover, header nav a:focus {
  background: var(--earth-2);
  color: var(--brand-primary);
  text-decoration: none;
}
.cta-primary {
  background: var(--brand-accent);
  color: #204026;
  font-family: 'Montserrat', Arial, san-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 11px 26px;
  border-radius: 33px;
  border: none;
  box-shadow: 0 2px 7px 0 rgba(249,178,51,0.07);
  cursor: pointer;
  display: inline-block;
  transition: background .22s, box-shadow .22s, color .18s;
  margin-left: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FABD41;
  color: #35653A;
  box-shadow: 0 5px 22px 0 rgba(249,178,51,0.14);
}
.cta-secondary {
  background: none;
  color: var(--green-dark);
  border: 2px solid var(--brand-accent);
  font-family: 'Montserrat', Arial, san-serif;
  font-weight: 600;
  font-size: 17px;
  border-radius: 33px;
  padding: 11px 26px;
  transition: background .17s, color .17s;
  margin-top: 14px;
  margin-bottom: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-accent);
  color: #204026;
  border-color: #e6a91d;
}

/* ------------- MOBILE NAVIGATION ------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--brand-primary);
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 101;
  transition: background .18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent);
  background: var(--earth-2);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 51, 28, 0.53);
  z-index: 2001;
  overflow-y: auto;
  transition: opacity .4s;
}
.mobile-menu.open { display: flex; }
.mobile-nav {
  background: #fff;
  width: 84vw;
  max-width: 350px;
  height: 100vh;
  padding: 44px 34px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 24px 4px rgba(77,126,88, 0.13);
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.65,.04,.35,1);
}
.mobile-menu.open .mobile-nav { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  right: 14px;
  top: 18px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 20;
  transition: background .16s;
}
.mobile-menu-close:focus {
  background: var(--earth-2);
  outline: 2px solid var(--brand-accent);
}
.mobile-nav a {
  color: #295240;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 10px;
  border-radius: 8px;
  transition: background .16s, color .13s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--earth-2); color: var(--green-primary); }

@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}

/* ------------- HERO & SECTION ORGANIC SHAPES -------------- */
section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: none;
}

.section {
  background: linear-gradient(90deg, #F5F4EF 60%,#e2e6de 100%);
  border-radius: 38px 38px 46px 46px / 36px 42px 44px 40px;
  box-shadow: 0 12px 46px 0 rgba(51, 115, 86, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
  overflow: visible;
}

/* ------------------- FEATURE & TEAM GRIDS ----------------------- */
.feature-grid, .team-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.feature-grid > div, .team-profile, .service-item {
  background: #fff;
  border-radius: 16px 34px 17px 28px / 22px 30px 20px 27px;
  box-shadow: 0 2px 16px 0 rgba(78,140,89,0.07);
  padding: 26px 16px 24px 18px;
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  transition: box-shadow .14s, transform .15s;
  min-width: 190px;
}
.feature-grid > div:hover, .service-item:hover, .team-profile:hover {
  box-shadow: 0 5px 24px 0 rgba(29,84,123,0.13);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .service-item img, .team-profile img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--earth-2);
  padding: 8px;
}
.service-item strong { color: var(--brand-accent); }

.team-grid {
  gap: 32px;
}
.team-profile h3 {
  margin-bottom: 6px;
  text-align: center;
}

/* ------------------- TESTIMONIALS --------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-left: 6px solid var(--green-primary);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 2px 19px 0 rgba(52,87,61,0.10);
  min-width: 240px;
  max-width: 340px;
  color: #283A2D;
  font-size: 1.08rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-style: italic;
  color: #294D38;
}
.testimonial-card span {
  font-weight: 600;
  color: #174264;
  font-size: 1.01rem;
}

/* ------------------- ACCORDION (FAQ) ------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 17px 30px 18px 22px / 22px 20px 20px 26px;
  box-shadow: 0 2px 14px 0 rgba(52,87,61, 0.09);
  padding: 24px 17px 19px 21px;
  cursor: pointer;
  transition: background .13s, box-shadow .13s;
}
.faq-item:hover, .faq-item:focus {
  background: var(--earth-2);
  box-shadow: 0 5px 20px 0 rgba(29,84,123,0.08);
}
.faq-item h2 {
  font-size: 1.11rem;
  margin-bottom: 7px;
  color: var(--green-dark);
}
.faq-item p {
  margin: 0;
  color: #294D38;
}

/* ----------------- MAP and CONTACT ------------------- */
.map-location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.map-location img { height: 34px; width: 34px; }
.map-location span { font-size: 1.09rem; color: var(--text-medium); }

.text-section ul li, .footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.text-section a {
  color: var(--green-primary);
  text-decoration: underline;
  transition: color .13s;
}
.text-section a:hover {
  color: var(--brand-primary);
}

/* ------------------ TABLE (TARIFFE) ------------------- */
table {
  font-size: 1rem;
  background: #fff;
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(78,140,89,.09);
  overflow: hidden;
}
thead th {
  background: #e2e6de;
  color: var(--brand-primary-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
tbody tr:nth-child(odd) { background: #f5f4ef; }
tdbold { font-weight: 700; }

/* ------------------ FOOTER ---------------------- */
footer {
  background: linear-gradient(90deg, #DFE8DC 20%, #BBD099 80%);
  border-radius: 38px 38px 0 0 / 34px 34px 0 0;
  margin-top: 70px;
  box-shadow: 0 -4px 32px 0 rgba(128,111,77,0.05);
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--green-dark);
  font-size: 1.06rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .13s, color .13s;
}
footer nav a:hover { background: var(--earth-2); color: var(--brand-primary); }
.footer-contact p, .footer-contact a { font-size: 1rem; color: #294D38; text-decoration: none; }
footer p { color: #203218; font-size: .96rem; }

/* ------------------ COOKIE CONSENT BANNER --------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(90deg, #F5F4EF 20%, #DFE8DC 100%);
  box-shadow: 0 -2px 30px 0 rgba(47, 113, 74, 0.16);
  border-top-left-radius: 24px 24px;
  border-top-right-radius: 34px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px 18px 16px 18px;
  font-size: 1rem;
  transition: transform .3s, opacity .28s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-text { max-width: 620px; color: #234C2E; font-size: 1.03rem; margin-right: 20px; }
.cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-accent);
  color: #204026;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 23px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(249,178,51,0.07);
  transition: background .17s, color .13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #e6a91d;
  color: #183927;
  outline: 2px solid #b39b74;
}
.cookie-btn.reject {
  background: none;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  margin-left: 2px;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--green-dark);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--earth-2);
  color: #174264;
  border: 2px solid var(--earth-2);
}
.cookie-btn.settings:hover {
  background: #b39b74;
  color: #fff;
}

/* ------------------ COOKIE MODAL -------------------- */
.cookie-modal {
  position: fixed;
  z-index: 3500;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #FFF;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -14px 48px 0 rgba(77,126,88, 0.12);
  max-width: 470px;
  width: 90vw;
  padding: 36px 30px 28px 30px;
  display: none;
  animation: cookieModalSlideIn .32s cubic-bezier(.56,.25,.18,1);
}
.cookie-modal.open { display: block; }
@keyframes cookieModalSlideIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 { font-size: 1.35rem; color: var(--brand-primary); margin-bottom: 8px; }
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-category label { font-weight: 600; color: #185142; font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ddd;
  border-radius: 14px;
  position: relative;
  transition: background .13s;
  display: inline-block;
  margin-left: 8px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  height: 18px;
  width: 18px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  transition: left .19s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: var(--brand-accent);
}
.cookie-category.essential .cookie-toggle {
  background: #b39b74;
}
.cookie-modal .cookie-btn {
  margin-top: 15px;
  width: 100%;
}
.cookie-modal .cookie-btn.reject {
  margin-left: 0;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 2rem;
  color: #183927;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--earth-2);
}

/* --------------------- MICRO-INTERACTIONS ---------------------- */
button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: background .17s, color .12s, box-shadow .17s, border .17s, transform .12s;
}
button:focus, .cta-primary:focus, .cta-secondary:focus { outline: 2px solid var(--brand-accent); }

/* --- FORM & INPUTS if present (inputs for modals, etc) --- */
input, textarea, select {
  border: 1px solid #b39b74;
  background: #f8faf7;
  padding: 12px 13px;
  font-size: 1rem;
  border-radius: 9px;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  width: 100%;
  color: #234C2E;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--brand-primary);
  outline: none;
}

/* ----------------- RESPONSIVE DESIGN ------------------ */
@media (max-width: 1080px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 95vw; padding-left:7vw; padding-right:7vw; }
  .feature-grid, .team-grid, .service-list { gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.38rem; }
  .section,
  .content-wrapper {
    padding: 24px 10px;
    border-radius: 24px;
    margin-bottom: 34px;
  }
  .feature-grid>div, .team-profile, .service-item {
    border-radius: 16px;
    min-width: unset;
    padding: 17px 10px 14px 13px;
  }
  .feature-grid, .team-grid, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 15px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 12px; padding-right: 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px;
  }
  .card {
    min-width: unset;
    padding: 16px 10px;
    border-radius: 13px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .container { padding: 0 5px; }
  .footer-contact p, .footer-contact a, .footer-contact img { font-size: 0.97rem; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 15px 5px 12px 5px; }
  .cookie-consent-text { margin-right: 0; }
  .cookie-actions { width: 100%; justify-content: flex-start; }
}

/* ----------------- TRUSTED BY / PARTNER ----------------- */
.trusted-by-section {
  background: #f8faf7;
  border-radius: 22px;
  padding: 14px 14px 10px 18px;
  box-shadow: 0 2px 11px 0 rgba(78,140,89,0.05);
  margin-top: 16px;
  margin-bottom: 4px;
}
.trusted-by-section h3 { margin-bottom: 7px; font-size: 1.09rem; }
.trusted-by-section ul {
  list-style-type: disc;
  padding-left: 22px;
  font-size: 1rem;
  color: #35653A;
}

/* ------------------ ORGANIC BUTTON EFFECTS --------------------- */
.cta-primary, .cta-secondary, .cookie-btn {
  box-shadow: 0 2px 7px 0 rgba(249,178,51,0.07);
  border: none;
  border-radius: 33px;
  cursor: pointer;
  transition: box-shadow 0.21s, background 0.17s, color 0.17s, border 0.12s;
}

/* ------------------ Z-INDEX LAYERING ----------------------- */
header { z-index: 1010; }
.mobile-menu { z-index: 2001; }
.cookie-consent-banner { z-index: 3000; }
.cookie-modal { z-index: 3500; }

/* -------------- UTILITIES -------------- */
.hide { display: none !important; opacity: 0 !important; pointer-events: none !important; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }


/* ------- Custom scrollbar (organic rounded) -------- */
::-webkit-scrollbar { background: #f9f7ef; width: 12px; border-radius: 20px; }
::-webkit-scrollbar-thumb { background: #d4dfcb; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #b1c2a4; }

/* ---------------- ORGANIC SHADOWS ------------------- */
.card, .content-wrapper, .feature-grid>div, .team-profile, .service-item, .testimonial-card, .faq-item, .cookie-modal, .trusted-by-section {
  box-shadow: 0 2px 16px 0 rgba(78,140,89,0.07);
}


/* ------------------------------------------------------------ */
/* ------------- END: NATURE ORGANIC FLEXBOX CSS -------------- */
/* ------------------------------------------------------------ */
