/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F1F7E2;
  color: #22543D;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22543D;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
a:hover,
a:focus {
  color: #6A9C31;
}
ul,ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #22543D;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.8rem;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* GEOMETRIC DECORATIVE ELEMENTS */
.hero {
  background: #22543D;
  color: #fff;
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 52px 0 40px 0;
  position: relative;
}
.hero .cta-btn {
  background: #8BC34A;
  color: #fff;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}

/* SECTIONS SPACING */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(34,84,61,0.06);
}
section.hero,
.section.hero {
  background: #22543D;
  box-shadow: none;
  padding: 52px 20px 56px 20px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* FLEXBOX LAYOUTS */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 20px 32px 20px;
  border-radius: 24px 24px 0 0;
  background: #22543D;
  color: #fff;
}
.footer-flex a,
.footer-flex p,
.footer-flex nav a {
  color: #fff;
  opacity: 0.88;
  font-weight: 600;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22543D;
  letter-spacing: 0.5px;
  position: relative;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 3px;
  background: #8BC34A;
  width: 0;
  transition: width 0.25s;
  border-radius: 2px;
  margin-top: 4px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 80%;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-flex .logo img {
  height: 36px;
}

/* BUTTONS */
.cta-btn,
button.cta-btn {
  background: #8BC34A;
  color: #fff;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  box-shadow: 0 6px 24px rgba(106,156,49,0.19);
  transition: background 0.2s, color 0.18s, box-shadow 0.2s, transform 0.16s;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22543D;
  color: #fff;
  box-shadow: 0 12px 28px rgba(34,84,61,0.12);
  transform: translateY(-2px) scale(1.03);
}
.cta-link {
  color: #8BC34A;
  font-weight: 700;
  position: relative;
  padding-right: 12px;
}
.cta-link:after {
  content: '\2192';
  margin-left: 6px;
  font-weight: 900;
  color: #8BC34A;
  transition: transform 0.2s;
}
.cta-link:hover:after {
  transform: translateX(3px);
}

button,
input[type="submit"] {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* FLEX LAYOUT CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(34,84,61,0.07);
  padding: 32px;
  margin-bottom: 20px;
  flex: 1 1 340px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(106,156,49,0.12);
  transform: translateY(-3px) 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;
  flex-direction: row;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 24px;
  background: #F1F7E2;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(34,84,61,0.07);
  border-left: 7px solid #8BC34A;
  transition: box-shadow 0.18s, border-color 0.2s;
  font-size: 1.08rem;
  color: #191E20;
}
.testimonial-card blockquote {
  color: #22543D;
  font-size: 1.21rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin-right: 16px;
  flex: 1 1 75%;
}
.testimonial-card cite {
  color: #8BC34A;
  font-size: 1.05rem;
  font-style: normal;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.3px;
  flex: 1 1 auto;
  text-align: right;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px #c5f5be62;
  border-color: #22543D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PAGE-SPECIFIC FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px 0;
  list-style: none;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 235px;
  background: #F9FCF5;
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(34,84,61,0.07);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width:220px;
  gap: 8px;
  margin-bottom: 0;
}
.feature-grid li img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: #6A9C31;
  font-weight: 800;
}

.seasonal-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 24px 0;
  justify-content: flex-start;
}
.seasonal-tips-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(138,177,73,0.10);
  flex: 1 1 205px;
  min-width: 180px;
  padding: 22px 18px;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 18px;
}
.faq-item {
  background: #F9FCF5;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(138,177,73,0.12);
  padding: 18px 20px 16px 20px;
}
.faq-item h3 {
  color: #22543D;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 1rem;
}

.service-list {
  list-style: none;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-list li {
  background: #F9FCF5;
  border-radius: 14px;
  padding: 23px 22px 18px 22px;
  box-shadow: 0 2px 7px rgba(34,84,61,0.07);
  margin-bottom: 0;
}
.service-list h2 {
  font-size: 1.19rem;
  color: #6A9C31;
  font-weight: 900;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-list .service-price {
  font-size: 1.1rem;
  color: #22543D;
  background: #E6F5D6;
  border-radius: 6px;
  padding: 4px 11px;
  font-weight: 800;
  margin-left: 22px;
}

.trust-signals {
  display: flex;
  gap: 16px;
  margin: 32px 0 0 0;
  list-style: none;
  flex-wrap: wrap;
}
.trust-signals li {
  background: #22543D;
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.4px;
  margin-bottom: 0;
}

.text-section {
  margin-bottom: 24px;
  font-size: 1.04rem;
}

.contact-info-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-list li {
  font-size: 1rem;
  color: #191e20;
}

.cta-section {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-section p {
  margin-top: 6px;
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
}
@media (min-width: 600px) {
  .footer-nav {
    flex-direction: row;
  }
}
.footer-contact {
  font-size: 1rem;
  line-height: 1.5;
  flex: 1 1 250px;
}
.footer-contact a {
  color: #8BC34A;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.bg-accent {
  background: #E6F5D6;
}
.rounded {
  border-radius: 16px;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: #22543D;
  color: #fff;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 1.7rem;
  font-weight: bold;
  display: none;
  border: none;
  margin-left: 12px;
  transition: background 0.18s;
  z-index: 201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #6A9C31;
}
.mobile-menu {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,84,61,0.96);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(.55,.07,.69,.97);
  display: flex;
  flex-direction: column;
  z-index: 5000;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 5100;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 80px 0;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  background: none;
  padding: 14px 0;
  min-width: 220px;
  text-align: center;
  border-radius: 7px;
  transition: background 0.19s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #8BC34A;
  color: #fff;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22543D;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 22px 20px;
  z-index: 10020;
  box-shadow: 0 -3px 24px rgba(34,84,61,0.13);
  border-radius: 20px 20px 0 0;
  animation: cookie-slidein 0.6s ease;
}
.cookie-banner p {
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 24px;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 7px;
  background: #8BC34A;
  color: #fff;
  border: none;
  margin: 0 5px;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 10px rgba(106,156,49,0.12);
  cursor: pointer;
}
.cookie-btn.reject {
  background: #E84D4D;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #22543D;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #22543D;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #8BC34A;
  color: #fff;
}

@keyframes cookie-slidein {
  from { transform: translateY(150%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 55px;
  transform: translate(-50%, 120%);
  width: 97vw;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px rgba(34,84,61,0.21);
  z-index: 10021;
  padding: 36px 30px 24px 30px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.19s, transform 0.3s, visibility 0.33s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #22543D;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: #22543D;
}
.cookie-category .toggle {
  width: 22px;
  height: 22px;
  accent-color: #8BC34A;
  accent-color: #8BC34A;
}
.cookie-category.essential label {
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 26px 7vw 16px 7vw;
    max-width: 97vw;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
  .header-flex, .footer-flex {
    gap: 12px;
  }
  .main-nav {
    gap: 12px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 36px 12px 22px 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .seasonal-tips-grid {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 9px;
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .header-flex {
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }
  .feature-grid, .card-container, .seasonal-tips-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper {
    padding: 0;
  }
  section, .section {
    padding: 28px 7px;
    margin-bottom: 44px;
    border-radius: 12px;
  }
  section.hero, .section.hero {
    padding: 32px 7px 32px 7px;
    border-radius: 0 0 18px 18px;
  }
  .card {
    padding: 18px 7px 14px 12px;
    border-radius: 11px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.48rem;
  }
}

/* VISUAL ACCENT – MODERN + BOLD */
.section,
.card,
.feature-grid li,
.seasonal-tips-grid li,
.service-list li,
.faq-item {
  box-shadow: 0 4px 18px 0 rgba(106,156,49,0.08), 0 1px 3px 0 rgba(34,84,61,0.06);
}

/* TYPOGRAPHY SCALE & HIERARCHY */
body {
  font-size: 1rem;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1.125rem; }
@media (max-width:600px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.48rem; }
  h3 { font-size: 1.07rem; }
}

/* MICRO-INTERACTIONS */
.card, .feature-grid li, .service-list li, .testimonial-card, .faq-item {
  transition: box-shadow 0.15s, transform 0.17s;
}
.card:hover,
.feature-grid li:hover,
.service-list li:hover,
.faq-item:hover {
  box-shadow: 0 7px 32px 0 rgba(106,156,49,0.16);
  transform: translateY(-2.5px) scale(1.017);
}

/* SEPARATORS */
hr {
  border: none;
  height: 1px;
  background: #E6F5D6;
  margin: 28px 0;
}

::selection {
  background: #8BC34A;
  color: #fff;
}

input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 2px solid #E6F5D6;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #8BC34A;
}

::-webkit-input-placeholder { color: #A9BC9C; }
::-moz-placeholder { color: #A9BC9C; }
:-ms-input-placeholder { color: #A9BC9C; }
::placeholder { color: #A9BC9C; }

/* HELPER CLASSES */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* Hide visually*/
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
