/* --- CSS Reset and 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-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; height: auto; border: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  color: inherit;
  outline: none;
  box-shadow: none;
}
button { cursor: pointer; background: none; }

/* --- CSS Custom Properties (with fallbacks) --- */
:root {
  --primary: #225D3B;
  --secondary: #B8CFA0;
  --accent: #F2E8CF;
  --black: #121212;
  --dark-grey: #1b1b1b;
  --grey: #f6f6f6;
  --white: #fff;
  --border-radius: 12px;
  --shadow:
    0 1px 6px rgba(34,93,59,0.05),
    0 0.5px 2px rgba(0,0,0,0.03);
  --focus-shadow: 0 0 0 2px var(--secondary);
  --transition: 0.22s cubic-bezier(.37,.22,.31,1.11);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.13;
}
h2, .h2 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 18px 0;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px 0;
  letter-spacing: -0.007em;
}
h4, .h4 {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}
p, ul, ol, li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--black);
  line-height: 1.6;
}
strong, b {
  font-weight: 600;
  color: var(--primary);
}

ul, ol { margin: 14px 0 14px 24px; }
li {
  margin-bottom: 8px;
  font-size: 1rem;
  list-style: disc;
  color: var(--black);
}

.text-section ul, .text-section ol {
  margin: 8px 0 10px 18px;
  padding: 0;
}
.text-section li { margin-bottom: 6px; }

/* --- CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: none;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(34,93,59,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 64px;
}
header > a.logo {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 0;
}
header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  gap: 18px;
  position: relative;
  padding: 0 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 10px;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid var(--secondary);
  color: var(--black);
  outline: none;
}
header .btn-primary {
  margin-left: 30px;
}

/* --- MOBILE MENU BUTTON --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  border: none;
  padding: 7px 12px;
  margin-left: auto;
  border-radius: 6px;
  transition: background .12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
}

/* --- MOBILE MENU PANEL --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  box-shadow: 0 8px 32px rgba(34,93,59,0.18);
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s var(--transition), opacity .22s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 2.5rem;
  border: none;
  padding: 16px 22px 10px 18px;
  align-self: flex-end;
  margin: 0;
  transition: background .13s;
  border-radius: 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0 37px;
  margin-top: 50px;
}
.mobile-nav a {
  padding: 13px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  border-radius: 5px;
  font-weight: 600;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--black);
  outline: none;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Hide desktop nav and primary button in mobile */
@media (max-width: 900px) {
  header .btn-primary {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: var(--accent);
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  min-height: 340px;
  justify-content: center;
  padding: 40px 18px 30px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  margin-top: 21px;
}
.hero h1 {
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  transition: background .16s, transform .14s, box-shadow .18s;
  box-shadow: var(--shadow);
  margin-top: 10px;
  letter-spacing: 0.02em;
  display: inline-block;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 20px rgba(34,93,59,0.08);
  outline: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: var(--border-radius);
  transition: background .14s, color .14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0px;
  border-radius: var(--border-radius);
  transition: background .14s, color .14s;
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--accent);
  color: var(--primary);
}

/* FEATURE & CARD-LIKE ELEMENTS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
  align-items: stretch;
}
.feature {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 28px 22px 22px 22px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
  border: 1px solid #f2f2f2;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 36px rgba(34,93,59,0.12);
  transform: translateY(-3px) scale(1.015);
  border-color: var(--secondary);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature h3 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.08rem;
  font-weight: 700;
}
.feature p {
  font-size: 1rem;
  color: var(--black);
}
.feature-price {
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 4px 14px;
  margin-top: 7px;
  align-self: flex-start;
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px rgba(34,93,59,0.13);
}
.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: var(--accent);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 3px 20px rgba(34,93,59,0.08);
  color: var(--black);
  border: 1px solid #eaeaea;
  transition: box-shadow .16s, transform .14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 28px rgba(34,93,59,0.14);
  transform: scale(1.021);
}
.testimonial-card p {
  margin-bottom: 2px;
  font-size: 1.06rem;
  color: var(--black);
  font-style: italic;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SPECIAL SECTIONS --- */
.text-section {
  background: none;
  padding: 0;
}

.contact-info-block img {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-right: 6px;
}
.contact-info-block ul { margin-bottom: 12px; }
.contact-info-block li {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: var(--accent);
  color: var(--primary);
  width: 100%;
  border-top: 1.5px solid var(--secondary);
  margin-top: 40px;
  padding: 32px 0 20px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-logo img {
  width: 52px;
  height: auto;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.75;
  transition: color .13s, opacity .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--black);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  opacity: .9;
}
.footer-contact img {
  width: 1.1em;
  height: 1.1em;
  margin-right: 2px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--white);
  border-top: 1px solid var(--secondary);
  box-shadow: 0 -1px 20px rgba(34,93,59,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 22px 14px 16px 14px;
  transition: opacity .25s, transform .26s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
.cookie-consent-banner p {
  color: var(--black);
  font-size: 1rem;
  margin-right: 12px;
  max-width: 420px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: 10px 22px;
  transition: background .14s, color .14s, box-shadow .12s;
  cursor: pointer;
}
.cookie-accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.cookie-reject {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,93,59,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 36px rgba(34,93,59,0.14);
  max-width: 410px;
  width: 92vw;
  padding: 30px 25px 24px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-fade-in .41s cubic-bezier(.37,.22,.31,1.11);
}
@keyframes cookie-fade-in {
  from { transform: translateY(36px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category-label {
  flex: 1;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  opacity: 0.5;
}
.cookie-modal-btns {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  font-size: 1.7rem;
  color: var(--primary);
  border: none;
  border-radius: 6px;
  transition: background .12s;
  padding: 2px 7px;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .hero .container { padding: 24px 8px 16px; }
  .section {
    margin-bottom: 38px;
    padding: 28px 8px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .footer-logo img { margin-bottom: 3px; }
  footer .container {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    padding: 0;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 15px 6px 11px 6px;
  }
}

@media (max-width: 500px) {
  h1, .h1 { font-size: 1.38rem; }
  h2, .h2 { font-size: 1.07rem; }
  h3, .h3 { font-size: 1rem; }
  .btn-primary, .btn-secondary, .btn-ghost, .cookie-btn {
    font-size: 1rem;
    padding: 10px 13vw;
  }
  .feature,
  .testimonial-card,
  .card {
    padding: 15px 7px 11px 9px;
  }
  .cookie-modal {
    padding: 18px 8px;
  }
}

/* --- ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  a, button, .btn-primary, .btn-secondary, .feature, .testimonial-card, .cookie-btn {
    transition: all .16s var(--transition);
  }
  .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, .cookie-modal {
    transition: all .24s var(--transition);
  }
}

/* --- FOCUS STATES --- */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* --- Scrollbar Minimalist Styling (optional) --- */
body::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* --- Hide input spin buttons in forms (compatibility) --- */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* --- Utility --- */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* --- END CSS --- */
