/* ====== 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, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #FCFAF6;
  color: #2d3a31;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #1A3E5B;
  text-decoration: none;
  transition: color 0.3s;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* ====== NATURAL THEME COLORS ====== */
:root {
  --col-forest: #365C45;
  --col-leaf: #587B4A;
  --col-soil: #A18364;
  --col-wood: #B57300;
  --col-sand: #F9F7F2;
  --col-white: #fff;
  --col-sun: #CE8900;
  --col-primary: #1A3E5B;
  --col-secondary: #F9F9F9;
  --col-dark: #222;
  --col-shadow: rgba(43, 55, 38, 0.08);
  --radius-card: 18px;
  --radius-btn: 12px;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--col-forest);
  letter-spacing: 1px;
}
h1 { font-size: 2.2rem; margin-bottom: 16px; }
h2 { font-size: 1.7rem; margin-bottom: 12px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }

@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--col-sand);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px var(--col-shadow);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}


/* ======= ORGANIC SHAPES & TEXTURE ======= */
.section, .card, .testimonial-card, .footer-wrapper {
  border-radius: 1.3em 2.3em 1.8em 1.7em/2.1em 1.9em 1.6em 2.2em;
}


/* ====== HEADER & NAVIGATION ====== */
header {
  background: #F4F4F0;
  box-shadow: 0 2px 12px var(--col-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  padding: 10px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 8px;
  transition: background 0.22s, color 0.22s;
  color: var(--col-forest);
  font-size: 16px;
}
.main-nav > a:not(.btn-primary):hover, .main-nav > a:focus {
  background: var(--col-wood);
  color: var(--col-white);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 12px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, var(--col-leaf) 0%, var(--col-wood) 100%);
  color: var(--col-white);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 36px;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1.06rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--col-shadow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin: 8px 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--col-sun) 20%, var(--col-leaf) 85%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px var(--col-shadow);
}
.btn-secondary {
  background: var(--col-wood);
  color: var(--col-white);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--col-leaf);
  color: var(--col-white);
  transform: translateY(-1px) scale(1.03);
}

/* ====== MOBILE BURGER MENU ====== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--col-leaf);
  color: var(--col-white);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1.8rem;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 105;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--col-wood);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #fcfaf6 70%, #e6e2cf 100%);
  box-shadow: 0 2px 16px rgba(45,62,49,0.16);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
  z-index: 400;
  padding: 32px 20px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  color: var(--col-wood);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 410;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--col-forest);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 16px 8px;
  border-radius: 10px;
  color: var(--col-primary);
  background: var(--col-sand);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--col-leaf);
  color: var(--col-white);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .main-nav { display: flex !important; }
}

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(105deg, #dbece5 0%, #fcfaf6 90%);
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 60px 0 54px 0;
  border-radius: 0 0 54px 54px/110px 110px 24px 24px;
  box-shadow: 0 2px 24px rgba(90,115,80,0.11);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 0;
}
.hero h1 {
  color: var(--col-forest);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #e6e2cf60;
}
.hero p {
  font-size: 1.09rem;
  color: #38492a;
  margin-bottom: 6px;
  max-width: 600px;
}


/* ====== LAYOUT FLEXBOX PATTERNS ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--col-white);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px var(--col-shadow);
  margin-bottom: 20px;
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .card:focus-visible {
  box-shadow: 0 6px 24px rgba(49,65,47,0.13);
  transform: translateY(-2px) scale(1.025);
}

.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: flex-start;
  gap: 20px;
  padding: 24px 22px;
  background: var(--col-white);
  border-radius: 2em 1.4em 1.7em 2.1em/1.9em 2.2em 1.8em 1.7em;
  box-shadow: 0 2px 16px rgba(51,78,49,0.09);
  margin-bottom: 20px;
  flex: 1 1 325px;
  min-width: 260px;
  max-width: 390px;
  font-size: 1.06rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #1E2724;
  line-height: 1.5;
}
.testimonial-card strong {
  color: var(--col-wood);
}
.testimonial-card .ratings {
  color: var(--col-sun);
  font-size: 1.23em;
  letter-spacing: 1px;
  margin-left: 1px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== FEATURES, CARDS, INFO ====== */
.features ul, .services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features ul li, .services ul li {
  background: #F5F6ED;
  border-radius: 17px 0 19px 19px/22px 19px 13px 17px;
  padding: 22px 19px 14px 20px;
  box-shadow: 0 1px 8px #A183641e;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  min-width: 230px;
  max-width: 340px;
}
.features ul li img, .services ul li img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

.features .content-wrapper,
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 16px;
}
.features .content-wrapper > ul,
.services .content-wrapper > ul {
  flex: 3 1 390px;
}
.features .content-wrapper > p,
.services .content-wrapper > p {
  flex: 2 1 320px;
  align-self: flex-start;
  margin-top: 5px;
  font-size: 1.02rem;
  color: #35503a;
}

/* ====== CTA / CALL-TO-ACTION ====== */
.call-to-action {
  background: linear-gradient(100deg, #dbece5 0%, #f9f7ec 90%);
  border-radius: 36px;
  box-shadow: 0 2px 18px #77946730;
  margin-top: 48px;
  margin-bottom: 58px;
  padding: 40px 0;
}
.call-to-action .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.call-to-action h2 {
  color: var(--col-leaf);
}
.call-to-action p {
  color: #3b5631;
}

/* ====== PRICING TABLE ====== */
table {
  width: 100%;
  border-spacing: 0;
  background: var(--col-white);
  border-radius: 1.8em 1.4em 1.3em 2.1em/2.1em 1.8em 2.2em 1.6em;
  box-shadow: 0 2px 14px var(--col-shadow);
  margin-bottom: 20px;
  overflow: hidden;
}
thead tr {
  background: var(--col-leaf);
  color: var(--col-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
th, td {
  padding: 17px 12px;
  text-align: left;
  font-size: 1.07rem;
  border-bottom: 1px solid #b9b5a8;
}
th:last-child, td:last-child {
  text-align: right;
}
tbody tr:nth-child(odd) { background: #f5f9f5; }
tbody tr:nth-child(even) { background: #f0ede1; }
td {
  color: #3e412a;
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(90deg, #e6e2cf 0%, #fcfaf6 100%);
  padding: 0;
  margin-top: 56px;
  border-radius: 38px 38px 0 0 / 68px 68px 0 0;
  box-shadow: 0 -2px 16px #9ea88011;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 12px 28px 12px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 11px;
}
.footer-info {
  font-size: 1rem;
  color: #35503a;
}
.footer-info a {
  color: var(--col-wood);
  transition: color 0.2s;
}
.footer-info a:hover, .footer-info a:focus {
  color: var(--col-leaf);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.96rem;
}
.footer-nav a {
  color: var(--col-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--col-wood);
}


/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(98deg, #f4eee3 70%, #e6e2cf 100%);
  box-shadow: 0 -2px 22px #A1836455;
  z-index: 601;
  padding: 33px 16px 25px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 1rem;
  border-radius: 32px 32px 0 0 / 33px 33px 0 0;
  flex-wrap: wrap;
  animation: slideUpBanner 0.6s cubic-bezier(.34,1.56,.64,1) 0.1s;
}
@keyframes slideUpBanner {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-btn {
  background: var(--col-leaf);
  color: var(--col-white);
  padding: 11px 24px;
  margin: 0 7px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, transform 0.15s;
  box-shadow: 0 2px 9px #37401a15;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: var(--col-wood);
  color: var(--col-white);
  transform: scale(1.04);
}
.cookie-banner-btn.reject {
  background: #E5C49D;
  color: #42310e;
}
.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus {
  background: #A18364;
  color: var(--col-white);
}
.cookie-banner-btn.settings {
  background: var(--col-white);
  color: var(--col-wood);
  border: 1.6px solid var(--col-wood);
}
.cookie-banner-btn.settings:hover,
.cookie-banner-btn.settings:focus {
  background: var(--col-sand);
  color: var(--col-leaf);
}

/* ====== COOKIE MODAL ====== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(70, 90, 40, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  animation: fadeInModal 0.32s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--col-white);
  border-radius: 30px;
  box-shadow: 0 4px 28px #577f5e29;
  padding: 36px 26px 34px 26px;
  min-width: 290px;
  max-width: 430px;
  position: relative;
  animation: slideDownModal 0.38s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes slideDownModal {
  from { transform: translateY(-40px); opacity: 0.3; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--col-forest);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin: 12px 0;
}
.cookie-category {
  font-weight: 600;
  color: var(--col-leaf);
  padding: 2px 6px 2px 2px;
}
.cookie-toggle {
  accent-color: var(--col-wood);
  width: 27px;
  height: 27px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #A18364;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--col-leaf);
}
.cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
/* Essential cookies info */
.cookie-modal-content .essential-label {
  color: #75826B;
  font-size: 0.97em;
  margin-left: 24px;
}

/* ====== SECTION, SPACING, FLEX LAYOUTS ====== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ====== RESPONSIVE DESIGN (MOBILE FIRST) ====== */
@media (max-width: 1024px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .hero { padding: 40px 0; }
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-wrapper { padding: 28px 2px 24px 2px; }
  table { font-size: 0.9rem; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .features .content-wrapper, .services .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .section, section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  .hero { min-height: unset; border-radius: 0 0 23px 23px/60px 60px 10px 10px; }
  .call-to-action { border-radius: 15px; margin-top: 24px; margin-bottom: 34px; }
  .testimonial-card { max-width: 100%; min-width: unset; }
  .cookie-banner { font-size: 0.93rem; padding: 21px 2vw 20px 2vw; border-radius: 13px 13px 0 0/17px 17px 0 0; }
}
@media (max-width: 548px) {
  .mobile-menu { padding-top: 15px; }
  .btn-primary, .btn-secondary {
    padding: 11px 18px;
    font-size: 0.98rem;
  }
  .features ul li, .services ul li { min-width: 150px; max-width: unset; font-size: 0.97rem; padding-left: 8px; padding-right: 4px; }
  .footer-info { font-size: 0.97em; }
}

/* Table Responsive */
@media (max-width: 600px) {
  table, thead, tbody, tr, th, td { display: block; width: 100%; }
  thead tr { display: none; }
  tbody tr { margin-bottom: 18px; background: #f5f9f5; box-shadow: 0 2px 8px #bbb2; border-radius: 17px; }
  td { padding: 12px 8px; border-bottom: none; position: relative; }
  td:before {
    content: attr(data-label);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    display: block;
    color: var(--col-wood);
    margin-bottom: 3px;
    font-size: 0.94em;
  }
}

/* ====== MICRO-INTERACTIONS & ANIMATIONS ====== */
a, .btn-primary, .btn-secondary, .main-nav > a, .mobile-nav a {
  transition: color 0.17s, background 0.18s, box-shadow 0.17s, transform 0.18s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(121,139,101,0.14);
  transform: translateY(-1.5px) scale(1.03);
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}

/* ====== CUSTOM INPUTS ====== */
input, select, textarea {
  font-family: inherit;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1.3px solid #b7baa1;
  background: #faf9f8;
  font-size: 1rem;
  color: #385d2e;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px #6d885218;
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--col-leaf);
}

/* ====== ORGANIC DECORATION (OPTIONAL) ====== */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -24px; left: -32px;
  width: 72px; height: 48px;
  background: radial-gradient(circle, #F9F7F2 65%, #A1836466 100%);
  opacity: 0.14;
  border-radius: 65px 38px 72px 43px/38px 46px 56px 48px;
  pointer-events: none;
  z-index: 1;
}
.section {
  position: relative;
}

/* ====== PRINT STYLES ====== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section, section { box-shadow: none !important; background: #fff !important; }
}

/* ====== Z-INDEX LAYERING ====== */
header { z-index: 100; }
.mobile-menu { z-index: 400; }
.cookie-banner { z-index: 601; }
.cookie-modal { z-index: 800; }
main { z-index: 1; }

/* ====== UTILITY CLASSES ====== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.gap-20 { gap: 20px !important; }

/* No CSS Grid properties anywhere, only Flex layout as required */