/* CSS RESET & 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
.content-wrapper img {
  width: 50px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f9faf6;
  color: #214932;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #326e45;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BED53C;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700&display=swap');

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #214932;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #326e45;
}
p, ul, ol, dl, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: #326e45;
}
em, i {
  font-style: italic;
  color: #9ea45c;
}
blockquote {
  font-family: 'Roboto Slab', serif;
  background: #fffef8;
  padding: 20px 24px;
  border-left: 5px solid #BED53C;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(190,213,60,0.08);
  color: #214932;
  font-size: 1.1rem;
  margin: 0 0 14px 0;
}

ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
dt {
  font-weight: 700;
  margin-top: 12px;
}
dd {
  margin-left: 0;
  margin-bottom: 10px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-nav, .mobile-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
.logo img {
  height: 48px;
  border-radius: 10px;
}

/* HEADER */
header {
  background: #F5F7F3;
  box-shadow: 0 2px 16px 0 rgba(75,95,64,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* NAVIGATION */
.main-nav a, .mobile-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #214932;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #BED53C;
  color: #214932;
}

.cta-btn {
  background: #BED53C;
  color: #214932;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 11px 32px;
  box-shadow: 0 2px 12px 0 rgba(190,213,60,0.10);
  margin-left: 24px;
  transition: background 0.2s, transform 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:active {
  background: #c9e047;
}
.cta-btn:hover, .cta-btn:focus {
  background: #214932;
  color: #BED53C;
  transform: translateY(-1px) scale(1.04);
}
@media (max-width: 900px) {
  .cta-btn {
    margin-left: 8px;
    padding: 11px 24px;
  }
}
@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    margin: 0 0 0 0;
    text-align: center;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #214932;
  font-size: 2.5rem;
  border: none;
  border-radius: 50%;
  padding: 4px 0;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #BED53C;
  background: #F5F7F3;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: 10px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdf7;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,.1,.3,1);
  display: flex;
  flex-direction: column;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #BED53C;
  color: #214932;
  border: none;
  font-size: 2.1rem;
  padding: 7px 15px;
  border-radius: 40px;
  margin: 22px 22px 8px 0;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #326e45;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  padding: 28px 36px;
}
.mobile-nav a {
  font-size: 1.14rem;
  width: 100%;
}

/* MAIN LAYOUT SPACING */
main {
  flex: 1 0 auto;
  background: #f9faf6;
}
section {
  background: #fffef8;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(75, 95, 64, 0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 28px 8px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F5F7F3;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(190,213,60,0.11);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 4px 22px 0 rgba(75, 95, 64, 0.13);
  transform: translateY(-5px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trusted-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(190,213,60,0.09), 0 2px 12px 0 rgba(33,73,50,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 8px;
  color: #214932;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.08rem;
}
.testimonial-card img {
  height: 22px;
  width: 22px;
  border-radius: 3px;
  background: #BED53C;
  display: inline-block;
  margin-right: 2px;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 15px 8px;
    font-size: 0.99rem;
  }
  .trusted-badges {
    gap: 15px;
  }
}

/* ADDRESS CARD / MAP */
.address-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  font-size: 1rem;
  color: #497b3f;
  background: #f7f7ed;
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px 0 rgba(75,95,64,0.05);
  width: fit-content;
}
.address-map img {
  height: 28px;
  width: 28px;
}

/* SUCCESS MESSAGE */
.success-message {
  border: 2px solid #BED53C;
  background: #f7fad8;
  border-radius: 14px;
  color: #214932;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px 0 rgba(190,213,60,0.07);
  margin-bottom: 20px;
  padding: 20px;
}

/* BUTTON RESETS AND MICRO-INTERACTIONS */
button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}
button:focus {
  outline: 2px solid #BED53C;
}

/* FOOTER */
footer {
  background: #F5F7F3;
  border-top: 1.5px solid #e5e7d0;
  margin-top: 40px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  padding: 32px 20px 26px 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer a {
  color: #214932;
  font-size: 0.97rem;
  opacity: 0.84;
  transition: color 0.2s, opacity 0.2s;
}
footer a:hover {
  color: #BED53C;
  opacity: 1;
}
footer .address {
  font-size: 0.97rem;
  line-height: 1.56;
}
footer small {
  width: 100%;
  font-size: 0.94rem;
  color: #7b886e;
  margin-top: 16px;
  display: block;
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding: 22px 8px 18px 8px;
  }
  footer nav {
    gap: 12px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbed;
  color: #214932;
  box-shadow: 0 -2px 18px 0 rgba(190,213,60,0.18);
  z-index: 2100;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookieBannerFadeIn 0.38s both;
}
@keyframes cookieBannerFadeIn {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.06rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  background: #BED53C;
  color: #214932;
  border-radius: 24px;
  padding: 7px 20px;
  border: none;
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 2px 8px 0 rgba(190,213,60,0.08);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #214932;
  color: #BED53C;
}
.cookie-banner .cookie-settings-btn {
  background: #f7f7e4;
  color: #214932;
  border: 1.5px solid #BED53C;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #BED53C;
  color: #214932;
}

/* MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(33,73,50,0.11);
  z-index: 2140;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fffef8;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(75, 95, 64, 0.12);
  min-width: 300px;
  max-width: 90vw;
  padding: 28px 20px 24px 20px;
  z-index: 2150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: cookieModalFadeIn 0.34s both;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(40px);} to { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h3 {
  margin-bottom: 6px;
  color: #326e45;
}
.cookie-modal label {
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.cookie-modal-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  margin-right: 12px;
}
.cookie-modal-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f5f7e2;
  border-radius: 40px;
  transition: background 0.23s;
}
.cookie-modal-switch input:checked + .slider {
  background: #BED53C;
}
.cookie-modal-switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.23s;
  box-shadow: 0 1px 5px 0 rgba(33,73,50,0.12);
}
.cookie-modal-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  align-self: flex-end;
  margin-top: 8px;
}
.cookie-modal-footer button {
  padding: 7px 18px;
  border-radius: 22px;
  font-size: 1.01rem;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.98rem;
  color: #585e35;
  margin-bottom: 7px;
  margin-top: 0px;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: unset;
    width: 96vw;
    padding: 16px 7px 16px 7px;
  }
}

/* CUSTOM SECTION SPACING & FLEX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    gap: 12px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
}

@media (max-width: 600px) {
  .content-wrapper {
    gap: 10px;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }
  .testimonial-card {
    font-size: 0.96rem;
    padding: 8px 6px;
  }
  .address-map {
    font-size: 0.92rem;
    padding: 5px 7px;
    gap: 6px;
  }
}

/* MICROINTERACTIONS */
.card, .testimonial-card, section, .success-message {
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, section:hover,
.success-message:hover {
  box-shadow: 0 8px 32px 0 rgba(75, 95, 64, 0.13);
  transform: scale(1.01);
}

/* SMALL DECORATIVE ONLY (For possible absolute positions) */
.trusted-badges img {
  position: relative;
  z-index: 1;
}

/* FORM ELEMENTS BASIC
Forms are not present right now but compatible if used later */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.5px solid #dbe4b2;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 14px;
  color: #214932;
  transition: border 0.18s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #BED53C;
  box-shadow: 0 2px 6px 0 rgba(190,213,60,0.10);
  outline: none;
}

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

/* SCROLLBAR Styling */
*::-webkit-scrollbar {
  width: 10px;
  background: #F5F7F3;
  border-radius: 16px;
}
*::-webkit-scrollbar-thumb {
  background: #dbe4b2;
  border-radius: 14px;
}

/* Hide scrollbar on mobile for aesthetics */
@media (max-width: 600px) {
  *::-webkit-scrollbar {
    display: none;
  }
}

/* ACCESSIBILITY (High Contrast for Testimonials, Links, Buttons) */
.testimonial-card,
.blockquote,
.card {
  color: #214932;
  background: #fff;
}
.testimonial-card blockquote {
  color: #214932;
}
@media (max-width: 450px) {
  .cta-btn, .cookie-banner button, .cookie-modal-footer button {
    font-size: 0.97rem;
    padding: 9px 11px;
  }
}

/* END STYLES */
