/* ==== CSS RESET & BASE ==== */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F4F7FA;
  color: #334033;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ul, ol { padding-left: 24px; }
a { color: #214370; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #48B2A2; outline: none; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #214370;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Organic Section Styling */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px 36px 28px 52px/44px 44px 40px 50px;
  box-shadow: 0 2px 16px rgba(98, 114, 66, 0.08);
  overflow: hidden;
}

@media (max-width: 650px) {
  .section {
    padding: 28px 8px;
    border-radius: 22px 22px 12px 28px/24px 24px 18px 30px;
  }
}

main {
  flex: 1 0 auto;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #F4F7FA;
  border-bottom: 1.5px solid #C5D8B3;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #53703B;
  border-radius: 18px;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E5F0E2;
  color: #48B2A2;
}

.cta-btn {
  display: inline-block;
  background: #48B2A2;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 40px 32px 32px 40px/34px 30px 30px 32px;
  box-shadow: 0 4px 20px rgba(52, 99, 37, 0.08);
  cursor: pointer;
  transition: background 0.2s, transform 0.17s, box-shadow 0.17s;
  margin-left: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #3b8c7f;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px rgba(44, 85, 29, 0.11);
  color: #fff;
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #214370;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #48B2A2;
}

@media (max-width: 960px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40,59,29,0.96);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 22px 22px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.6,0.2,0.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.6,0.2,0.3,1), opacity 0.25s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F7FA;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 12px 10px 12px 0;
  border-radius: 0 32px 32px 0 / 0 28px 28px 0;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #48B2A2;
  color: #fff;
}

@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}

/* ==== HERO SECTIONS ==== */
.hero {
  padding: 40px 0 0 0;
  background: #E5F0E2 url('../assets/texture-leaves01.png') no-repeat right bottom;
  background-size: contain;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 0 auto;
  max-width: 700px;
}
.hero h1 {
  color: #214370;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.hero .subheadline {
  color: #335E3B;
  font-size: 1.24rem;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .hero .container {
    padding: 0 5px;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero .subheadline { font-size: 1rem; }
  .hero .content-wrapper { max-width: 100%; }
}

/* ==== FLEX LAYOUTS: CARDS & FEATURES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 20px 32px 24px 36px/24px 36px 32px 40px;
  box-shadow: 0 2px 16px rgba(46, 89, 44, 0.07);
  margin-bottom: 20px;
  padding: 28px 18px;
  min-width: 260px;
  max-width: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(46, 89, 44, 0.14);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}

.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;
}

@media (max-width: 800px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 24px 30px 20px 36px/24px 24px 20px 32px;
  box-shadow: 0 2px 14px rgba(42,68,27,0.06);
  min-width: 250px;
  max-width: 325px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 18px;
  margin-bottom: 20px;
  border-left: 5px solid #48B2A2;
  transition: box-shadow 0.16s, border-color 0.18s;
}
.feature-item img {
  width: 40px; height: 40px; margin-bottom: 4px;
}
.feature-item h3 {
  margin: 6px 0 2px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #214370;
}
.feature-item p {
  font-size: 1rem;
  color: #53703B;
}
.feature-price {
  display: inline-block;
  margin-top: 12px;
  background: #E5F0E2;
  padding: 5px 16px;
  border-radius: 16px;
  color: #214370;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.feature-item:hover,
.feature-item:focus-within {
  border-left-color: #214370;
  box-shadow: 0 6px 24px rgba(45, 82, 31, 0.13);
}

/* ==== ABOUT/TEXT SECTIONS ==== */
.text-section {
  margin-bottom: 18px;
  color: #31442D;
}
.text-section ul,
.text-section ol {
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 5px;
  font-size: 1rem;
}
.info-box {
  background-color: #F7FBEA;
  color: #31512F;
  padding: 18px 20px;
  border-radius: 22px 14px 22px 28px/18px 20px 22px 20px;
  box-shadow: 0 2px 6px rgba(114,150,67,0.07);
  margin-top: 10px;
  font-size: 1rem;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #FAFDF7;
  padding: 40px 0 40px 0;
  border-radius: 42px 42px 36px 46px/32px 34px 38px 40px;
  box-shadow: 0 2px 14px rgba(51, 83, 43, 0.07);
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 270px;
  max-width: 400px;
  background: #fff;
  border-radius: 28px 22px 24px 36px/28px 20px 22px 34px;
  box-shadow: 0 3px 16px rgba(37, 62, 34, 0.09);
  color: #204024;
  margin-bottom: 20px;
  border-left: 4px solid #48B2A2;
  transition: box-shadow 0.14s, border-color 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #214370;
  box-shadow: 0 6px 16px #48B2A233;
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #214370;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 8px;
  text-align: center;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: #39734c;
  font-weight: 700;
}

@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { max-width: 97vw; }
}

/* ==== CTA SECTION ==== */
.cta {
  background: #F7FBEA;
  padding: 40px 0 40px 0;
  border-radius: 36px 36px 38px 54px/36px 32px 35px 46px;
  box-shadow: 0 2px 12px rgba(50, 89, 37, 0.07);
  margin-bottom: 64px;
  margin-top: 30px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 570px;
  margin: 0 auto;
}
.cta h2 { color: #39734c; }

/* ==== FOOTER ==== */
footer {
  background: #254A2A;
  color: #F4F7FA;
  padding: 40px 0 20px 0;
  margin-top: 38px;
  width: 100%;
}
footer .container {
  flex-direction: column;
  gap: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #b2d1a5;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 5px 12px;
  transition: background 0.15s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #31512F;
  color: #fff;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 54px; width: auto;
}
.footer-contact {
  font-size: 1rem;
  color: #e4f5e0;
}
.footer-contact a {
  color: #9bd17b;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a img {
  width: 30px; height: 30px;
  filter: brightness(1.1) grayscale(0.45);
  transition: filter 0.15s;
}
.footer-social a:hover img { filter: brightness(1.4) grayscale(0.05); }
.footer-copyright {
  width: 100%;
  margin-top: 14px;
}
.footer-copyright small {
  color: #61a64d;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-meta {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .container { gap: 16px; }
}

/* ==== CONTACT SECTION ==== */
.contact .text-section p,
.contact .info-box {
  margin-bottom: 8px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F7FBEA;
  color: #39734c;
  border-radius: 20px;
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 1rem;
}
.location-map img {
  width: 42px; height: 42px;
}

/* ==== LEGAL SECTION ==== */
.legal .text-section {
  font-size: 1rem;
  color: #214370;
}
.legal h2 {
  color: #39734c;
  font-size: 1.18rem;
  margin-top: 20px;
  margin-bottom: 7px;
}

/* ==== Miscellaneous Adjustments ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 680px) {
  section { padding: 22px 6px; margin-bottom: 38px; }
}

/* ==== BUTTONS ==== */
button, .cta-btn {
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.12rem;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #48B2A2;
  outline-offset: 2px;
}

/* ==== Responsive CORE LAYOUTS ==== */
@media (max-width: 700px) {
  .feature-grid,
  .footer-meta,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .card {
    max-width: 100%;
    min-width: unset;
  }
}

/* ==== FORMS ==== */
input, textarea, select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #b7cda3;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #48B2A2;
  border-color: #48B2A2;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #214370;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F7FBEA;
  color: #204024;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px 22px 24px;
  z-index: 1300;
  font-size: 1rem;
  box-shadow: 0 0 24px rgba(30,50,25,0.07);
  gap: 22px;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.23s, transform 0.38s cubic-bezier(0.6,0.2,0.3,1);
  pointer-events: none;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  background: #48B2A2;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  border-radius: 20px;
  margin-left: 0;
  transition: background 0.17s, color 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #214370;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #48B2A2;
  border: 1.5px solid #48B2A2;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #E5F0E2;
  color: #214370;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 8px; }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,60,29,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #F7FBEA;
  color: #214370;
  border-radius: 30px 34px 28px 38px/30px 35px 26px 40px;
  padding: 30px 22px 20px 24px;
  width: 100%;
  max-width: 420px;
  min-width: 220px;
  box-shadow: 0 5px 46px rgba(30,52,24,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalAppear 0.32s cubic-bezier(0.47,1,0.49,0.83);
}
@keyframes modalAppear {
  0% { transform: scale(0.82) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #39734c;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cookie-modal-dialog .modal-close-btn {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #39734c;
  cursor: pointer;
}
.cookie-modal-dialog label {
  font-size: 1rem;
  margin-bottom: 6px;
}
.cookie-modal-dialog .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-modal-dialog input[type=checkbox] {
  accent-color: #48B2A2;
  width: 20px; height: 20px;
}
.cookie-modal-dialog .essential-label {
  font-style: italic;
  color: #949e93;
}
.cookie-modal-dialog .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-modal-dialog button {
  background: #48B2A2;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 16px;
  border: none;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal-dialog button:hover, .cookie-modal-dialog button:focus {
  background: #214370;
}

@media (max-width: 500px) {
  .cookie-modal-dialog {
    padding: 18px 6px 12px 10px;
    max-width: 96vw;
  }
}

/* ==== ANIMATIONS ==== */
@media (prefers-reduced-motion: no-preference) {
  a, button, .cta-btn, .main-nav a, .feature-item {
    transition: background 0.18s, color 0.16s, box-shadow 0.17s, border-color 0.18s, transform 0.13s;
  }
}

/* ==== RESPONSIVE LAYOUTS EXTRA ==== */
@media (max-width: 450px) {
  .location-map, .feature-item, .card {
    padding: 10px 6px;
    min-width: unset;
    max-width: 100%;
  }
}

/* === UTILITIES === */
.hide { display: none !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-30 { margin-top: 30px !important; }

/* ==== OVERRIDES FOR NATURE ORGANIC STYLE ==== */
body {
  background: linear-gradient(160deg, #FAFDF7 55%, #E5F0E2 100%);
  color: #31402D;
}

.section, .card, .feature-item, .testimonial-card,
.cta, .testimonials, .info-box, .cookie-modal-dialog {
  box-shadow: 0 2px 16px rgba(101, 135, 94, 0.08), 0 4px 32px rgba(99, 123, 70, 0.06);
  border-radius: 32px 40px 28px 36px/28px 28px 32px 42px;
}

/* Organic left accent decoration for features (not absolute, to keep layout rules) */
.feature-item::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 40% 40% 50% 60%/70% 35% 90% 60%;
  background: #D4E2BD;
  margin-bottom: 4px;
  margin-right: 8px;
}

/* Theme: strong green accent for buttons, links, highlights */
::selection { background: #A6E7C6; color: #254A2A; }

/* ==== END: All layouts are Flexbox ==== */
