/* RESET & BASE STYLES */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5FAF7;
  color: #1B3926;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #22663E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #90C28A;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #22663E;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(34,102,62,0.04), 0 1.5px 8px rgba(34,102,62,0.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(144,194,138,0.10);
  background: #fff;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(34,102,62,0.10);
}

.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: #F5FAF7;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(144,194,138,0.10);
  margin-bottom: 20px;
  color: #1B3926;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34,102,62,0.04);
  padding: 18px 18px 18px 24px;
  margin-bottom: 20px;
}

/* HEADER + NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34,102,62,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #22663E;
  padding: 7px 5px;
  border-radius: 7px;
  transition: background 0.18s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #90C28A17;
  color: #22663E;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.13s, box-shadow 0.22s;
  box-shadow: 0 2px 12px rgba(34,102,62,0.08);
}
.btn-primary {
  background: #22663E;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2c8351;
  color: #fff;
  box-shadow: 0 3px 18px rgba(34,102,62,0.15);
}
.btn-secondary {
  background: #90C28A;
  color: #22663E;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #accfa7;
  color: #22663E;
  box-shadow: 0 4px 24px rgba(144,194,138,0.13);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #22663E;
  padding: 9px 13px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 51;
  display: none;
  margin-left: 16px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #90C28A25;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F5FAF7;
  box-shadow: 0 4px 32px rgba(34,102,62,0.11);
  z-index: 98;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #22663E;
  border: none;
  padding: 16px 18px 8px 8px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s, background 0.15s;
  border-radius: 12px;
  margin-top: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #90C28A23;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 24px 30px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22663E;
  padding: 12px 8px;
  border-radius: 12px;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #90C28A35;
  color: #22663E;
}

/* Hide main-nav on mobile */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO & PRIMARY SECTIONS */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #F5FAF7, #90C28A20);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 2px 16px rgba(34,102,62,0.04);
  padding: 56px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container, .hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #22663E;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
  color: #40513B;
  margin-bottom: 16px;
}

/* FEATURES LISTS */
.features, .services {
  margin-bottom: 44px;
}
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}
.features li, .services li {
  font-size: 1.07rem;
  color: #22663E;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0;
}
.features li img, .services li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  box-shadow: 0 5px 32px rgba(144,194,138,0.10);
  border-radius: 28px;
  margin-bottom: 36px;
  padding: 40px 12px 36px 12px;
}
.testimonials h2 {
  color: #22663E;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  color: #1B3926;
  margin-bottom: 7px;
}
.testimonial-card div {
  font-size: 1rem;
  color: #22663E;
}

/* CONTACT MINI SECTION */
.contact-mini, .contact-details {
  background: #F5FAF7;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 1px 9px rgba(144,194,138,0.06);
  padding: 32px 20px;
}
.contact-mini ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 13px;
}
.contact-mini li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
  color: #22663E;
}
.contact-mini img, .contact-details img {
  width: 22px;
  height: 22px;
}

/* POLICY, THANK YOU, ETC */
.policy, .thankyou {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(144,194,138,0.07);
  padding: 44px 22px;
  margin-bottom: 60px;
}
.policy ul {
  margin-bottom: 18px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy li {
  color: #22663E;
  font-size: 1.02rem;
  list-style: disc inside;
}

.thankyou .btn-primary {
  margin-top: 16px;
}


/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -1px 16px rgba(34,102,62,0.06);
  border-radius: 24px 24px 0 0;
  margin-top: 50px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding: 28px 18px 18px 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #22663E;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #90C28A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.98rem;
  color: #22663E;
}

footer .logo, footer img {
  width: 56px;
  height: auto;
}

/* SEARCH BAR IN MAGAZIN */
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.search-bar label {
  font-weight: 600;
  color: #22663E;
  margin-bottom: 2px;
}
.search-bar input[type="search"] {
  background: #F5FAF7;
  border: 1.5px solid #90C28A92;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1rem;
  color: #1B3926;
  transition: border 0.14s;background 0.18s;
}
.search-bar input[type="search"]:focus {
  border-color: #22663E;
  background: #fff;
  outline: none;
}

/* CTA SECTIONS */
.cta, .cta-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 0 36px 0;
  margin-bottom: 42px;
  background: #90C28A17;
  border-radius: 20px;
}
.cta .btn, .cta-newsletter .btn {
  margin-top: 16px;
}
.cta-newsletter h2, .cta-newsletter p {
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #22663E;
  box-shadow: 0 -4px 24px rgba(144,194,138,0.18);
  z-index: 110;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: slideUp 0.6s cubic-bezier(0.21,0.86,0.43,1.11);
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  50% { opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  margin: 0;
  color: #22663E;
  flex: 1 1 auto;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-consent-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  padding: 7px 18px;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-consent-btn.accept {
  background: #22663E;
  color: #fff;
}
.cookie-consent-btn.accept:hover, .cookie-consent-btn.accept:focus {
  background: #19452b;
}
.cookie-consent-btn.reject {
  background: #90C28A;
  color: #22663E;
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #b0d8ae;
  color: #19452b;
}
.cookie-consent-btn.settings {
  background: #fff;
  color: #22663E;
  border: 1.2px solid #90C28A;
}
.cookie-consent-btn.settings:hover, .cookie-consent-btn.settings:focus {
  background: #f6fff7;
  color: #1B3926;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,102,62,0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.28s cubic-bezier(0.55,0.16,0.6,1);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #22663E;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(34,102,62,0.22);
  padding: 38px 26px 27px 26px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalUp 0.36s cubic-bezier(0.21,0.86,0.43,1.11);
}
@keyframes modalUp {
  0% { transform: translateY(38px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.27rem;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 26px;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #d4e4d7;
  border-radius: 26px;
  transition: background 0.15s;
}
.cookie-modal .slider:before {
  position: absolute; content: "";
  height: 22px; width: 22px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.14s;
  box-shadow: 0 1px 4px rgba(144,194,138,0.09);
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #90C28A;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  border: none;
  color: #22663E;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #90C28A15;
}

/* UTILITIES & GENERAL SPACING */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.pt-16 { padding-top: 16px; }
.pb-16 { padding-bottom: 16px; }

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  header .container, footer .container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  html { font-size: 94%; }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 8px;
  }
  .main-nav, .footer-nav {
    gap: 14px;
  }
  .section, .policy, .thankyou {
    border-radius: 16px;
    margin-bottom: 28px;
    padding: 22px 8px;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    padding: 36px 0 24px 0;
    margin-bottom: 26px;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding: 18px 8px 12px 8px;
  }
  .testimonials, .features, .services, .about, .about-details, .contact-mini, .contact-details {
    padding: 14px 6px;
    margin-bottom: 18px;
    border-radius: 13px;
  }
  .cta, .cta-newsletter {
    padding: 18px 0 14px 0;
    border-radius: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px;
    border-radius: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 420px) {
  html { font-size: 89%; }
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 6vw;
  }
}

/* MICRO-INTERACTIONS & FOCUS */
:focus {
  outline: 2px solid #90C28A;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8fa897; }
::-moz-placeholder { color: #8fa897; }
:-ms-input-placeholder { color: #8fa897; }
::placeholder { color: #8fa897; }

/* Subtle icon effect */
.features li img, .contact-mini img, .contact-details img {
  transition: transform 0.16s;
}
.features li:hover img, .contact-mini li:hover img, .contact-details li:hover img {
  transform: scale(1.10) rotate(-3deg);
}

/* Card animation */
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px rgba(34,102,62,0.15);
  transform: translateY(-2px) scale(1.012);
}

/* Typography hierarchy */
strong { color: #22663E; font-weight: 700; }

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