/* =====================
   CSS RESET & BASE
   ===================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5FCF1;
  color: #122B18;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #256D1B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #BFD732;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
blockquote {
  background: #fff;
  border-left: 4px solid #256D1B;
  margin: 24px 0;
  padding: 20px 28px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #256D1B;
  border-radius: 12px;
}

/* =====================
   BRAND COLOR SYSTEM
   ===================== */
:root {
  --color-primary: #256D1B;
  --color-secondary: #BFD732;
  --color-accent: #F5FCF1;
  --color-dark: #122B18;
  --color-light: #fff;
  --text-main: #122B18;
  --text-inverse: #fff;
}

/* =====================
  TYPOGRAPHY
  ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256D1B;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--color-dark); }
h4, h5, h6 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

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

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(38,60,24,0.08);
  padding: 24px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(38,60,24,0.16);
  transform: translateY(-4px) scale(1.04);
}
.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px 0 rgba(38, 60, 24, 0.10);
  margin-bottom: 20px;
  min-width: 200px;
}

/* =====================
   BUTTONS & CTA
   ===================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(92deg, #256D1B, #BFD732);
  border: none;
  border-radius: 30px;
  padding: 14px 38px;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(38,60,24,0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(92deg, #BFD732, #256D1B);
  color: #256D1B;
  transform: scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(38,60,24,0.20);
}

button, input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  background: #BFD732;
  color: #256D1B;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
button:hover, input[type="submit"]:hover, button:focus {
  background: #256D1B;
  color: #fff;
}

/* =====================
   NAVIGATION & HEADER
   ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(38,60,24,0.06);
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 52px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #256D1B;
  letter-spacing: 0.4px;
  position: relative;
  padding: 0 8px;
  transition: color 0.12s;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a:focus {
  color: #BFD732;
}

/* Hide mobile menu on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 22px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 62px;
  }
  .main-nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: none;
    color: #256D1B;
    border: none;
    position: absolute;
    right: 20px;
    top: 14px;
    z-index: 1201;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: color 0.15s;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    box-shadow: 0 8px 40px rgba(38, 60, 24, 0.10);
    padding: 0 0 0 0;
    z-index: 1400;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.34s cubic-bezier(.9,.05,.4,1), opacity 0.18s;
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: #256D1B;
    background: none;
    border: none;
    z-index: 1502;
    cursor: pointer;
    transition: color 0.15s;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    min-height: 100vh;
    gap: 22px;
    margin-top: 86px;
    padding: 40px 30px 30px 30px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #256D1B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: none;
    border-radius: 0;
    transition: color 0.12s, background 0.14s;
    padding: 12px 0 6px 0;
    width: 100%;
    border-bottom: 1px solid #F0F9E6;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #BFD732;
    background: #F0F9E6;
  }
}

/* =====================
   SECTION & FLEX LAYOUTS
   ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  max-width: 900px;
}
@media (max-width: 900px) {
  section {
    padding: 28px 8px;
  }
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 38px;
    padding: 28px 4px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* =====================
   TESTIMONIAL CARDS
   ===================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 20px 0 rgba(38,60,24,0.07);
  padding: 28px 36px;
  margin-bottom: 28px;
  margin-top: 12px;
  min-width: 250px;
  border-left: 6px solid #BFD732;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #122B18;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: #256D1B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card span:last-child {
  color: #BFD732;
  letter-spacing: 2px;
  font-size: 1.23rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(38,60,24,0.16);
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 18px 12px;
  }
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #256D1B;
  color: #fff;
  padding: 46px 0 0 0;
  border-top: 4px solid #BFD732;
  box-shadow: 0 -2px 16px 0 rgba(38,60,24,0.08);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover {
  background: #BFD732;
  color: #256D1B;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 8px;
  margin-bottom: 12px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
  }
}

/* =====================
   INPUTS & FORMS
   ===================== */
input[type='search'] {
  border: 2px solid #BFD732;
  border-radius: 20px;
  padding: 12px 20px;
  font-size: 1.05rem;
  background: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  max-width: 360px;
  transition: border-color 0.14s;
  color: #256D1B;
}
input[type='search']:focus {
  border-color: #256D1B;
  background: #F0F9E6;
}

/* =====================
   MICRO ANIMATIONS
   ===================== */
.cta-button, .card, .testimonial-card, .main-nav a, .mobile-nav a, button, input[type='submit'] {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}

/* =====================
   FLEXBOX ONLY CRITICAL CATEGORY STYLES
   ===================== */
.card-container, .content-grid, .footer-contact, .footer-nav, .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 900px) {
  .card-container, .content-grid, .footer-contact, .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #256D1B;
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3000;
  box-shadow: 0 -4px 24px rgba(38,60,24,0.09);
  border-top: 3px solid #BFD732;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(.72,.19,.16,1), opacity 0.16s;
  pointer-events: all;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 14px;
  text-align: center;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 2px;
  background: #256D1B;
  color: #fff;
  transition: background 0.14s, color 0.14s, transform 0.13s;
}
.cookie-btn.reject {
  background: #BFD732;
  color: #256D1B;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #BFD732;
  color: #256D1B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #256D1B;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #256D1B;
  border: 2px solid #BFD732;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #BFD732;
  color: #256D1B;
}
@media (max-width: 500px) {
  .cookie-banner {
    font-size: 0.96rem;
    padding: 14px 4px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }
}

/* ===== COOKIE MODAL STYLE ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,43,24,0.67);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #122B18;
  border-radius: 20px;
  box-shadow: 0 8px 60px 8px rgba(38,60,24,0.13);
  max-width: 400px;
  width: 93vw;
  padding: 36px 28px 28px 28px;
  position: relative;
  z-index: 3600;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-in 0.4s cubic-bezier(.41,.89,.48,1.14);
}
@keyframes modal-in {
  from { transform: translateY(48px) scale(0.97); opacity: 0.4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #256D1B;
  margin-bottom: 6px;
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  padding: 12px 10px;
  background: #F5FCF1;
}
.cookie-cat__label {
  font-weight: 700;
  color: #256D1B;
}
.cookie-cat__desc {
  color: #3c5530;
  font-size: 0.97rem;
}
.cat-switch {
  flex-shrink: 0;
}
input[type='checkbox'].cat-switch {
  width: 45px;
  height: 20px;
  appearance: none;
  background-color: #BFD732;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  margin: 0 0 0 16px;
}
input[type='checkbox'].cat-switch:checked {
  background-color: #256D1B;
}
input[type='checkbox'].cat-switch::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: -2px;
  top: -2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: left 0.15s, background 0.15s;
}
input[type='checkbox'].cat-switch:checked::before {
  left: 22px;
  background: #BFD732;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 1.7rem;
  color: #256D1B;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: #BFD732;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 18px 6px 16px 6px;
    max-width: 98vw;
  }
}

/* =====================
   MISCELLANEOUS
   ===================== */
::-webkit-input-placeholder { color: #6D8353;  }
::-moz-placeholder { color: #6D8353; }
:-ms-input-placeholder { color: #6D8353; }
::placeholder { color: #6D8353; }

hr {
  border: none;
  border-top: 2px solid #BFD732;
  margin: 24px 0;
}

/* =====================
   VISUALS & DECORATIVE
   ===================== */
li img {
  margin-right: 10px;
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
}

/* =====================
   RESPONSIVE FONTS & GAPS
   ===================== */
@media (max-width: 490px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.04rem; }
  .testimonial-card, .feature-item, .card {
    padding: 10px 5px;
    border-radius: 12px;
  }
  .cookie-banner {
    font-size: 0.88rem;
  }
}

/* =====================
   UTILITY & HELPER CLASSES
   ===================== */
.hide { display: none !important; }
.visible { display: block !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

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

/* =====================
   THANK YOU PAGE
   ===================== */
.thankyou-section .cta-button { margin-top: 22px; }

/* =====================
   BLOG TAGS
   ===================== */
ul li span {
  color: #BFD732;
  font-weight: 600;
  font-size: 0.92em;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

/* =====================
   END OF CSS FILE
   ===================== */
