/* --- CSS RESET --- */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F6EF; /* natural light beige */
  color: #2B2D23;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #279267;
  outline-offset: 2px;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234042;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #393D30;
  margin-bottom: 12px;
  line-height: 1.6;
}

b, strong { color: #1A5935; }

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

/* --- GENERAL CONTAINERS --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 32px;
  box-shadow: 0 2px 14px rgba(34, 64, 66, 0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}

/* --- HEADER --- */
header {
  background: #E7EDD8 url('../assets/nature-texture.png') repeat;
  box-shadow: 0 2px 8px rgba(30,41,59,0.03);
  position: sticky; top: 0; z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 16px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234042;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:active {
  background: #C4DFC2;
  color: #145029;
}
.btn-primary {
  display: inline-block;
  padding: 10px 32px;
  background: #276646;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px 24px 28px 36px / 28px 34px 34px 30px;
  box-shadow: 0 2px 14px rgba(46, 179, 99, 0.17);
  font-size: 1.1rem;
  transition: background 0.18s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A5935;
  box-shadow: 0 4px 16px rgba(46, 179, 99, 0.21);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.btn-secondary {
  display: inline-block;
  padding: 10px 28px;
  background: #fff;
  color: #279267;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid #279267;
  border-radius: 28px 22px 24px 32px / 24px 28px 26px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  box-shadow: 0 1px 8px rgba(38, 146, 103, 0.065);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E0F5DD;
  color: #145029;
  border-color: #145029;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #276646;
  color: #fff;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 301;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1A5935;
}
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #E7EDD8;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(0.78, 0.04, 0.36, 0.96);
  box-shadow: 0 4px 32px rgba(30,41,59,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #276646;
  color: #fff;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 401;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #145029;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 90px 0 0 0;
  align-items: center;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #234042;
  background: #E0F5DD;
  width: 90vw;
  padding: 18px 0;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34, 64, 66, 0.03);
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C4DFC2;
  color: #145029;
}

/* --- MAIN HERO & ORGANIC SHAPES --- */
.hero {
  min-height: 340px;
  background: #E7EDD8;
  background-image: url('../assets/texture-leaf.svg'), url('../assets/nature-texture.png');
  background-repeat: no-repeat, repeat;
  background-position: right -30px bottom -60px, left top;
  background-size: 380px, auto;
  padding: 22px 0 68px 0;
  border-radius: 0 0 80px 0 / 0 0 80px 120px;
  box-shadow: 0 4px 24px rgba(30, 66, 41, 0.08);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}
.hero h1 {
  color: #276646;
  font-size: 2.2rem;
  text-shadow: 0 2px 10px #C4DFC2;
}
.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  color: #3C4218;
  margin: 0 auto 30px auto;
}
@media (max-width: 600px) {
  .hero {
    min-height: 200px;
    padding-bottom: 44px;
    border-radius: 0 0 40px 0 / 0 0 60px 80px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
}

/* --- FLEX UTILITY & COMPONENTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 26px 32px 29px 34px/29px 28px 32px 26px;
  box-shadow: 0 2px 13px rgba(34, 64, 66, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 330px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(37, 150, 66, 0.11);
  transform: translateY(-3px) scale(1.01) rotate(-1deg);
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section, .feature-grid, .special-offer-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9FAFB;
  border-radius: 22px 18px 30px 26px/25px 28px 24px 24px;
  box-shadow: 0 2px 12px #C4DFC22A;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.14s;
}
.testimonial-card p {
  color: #0E2F1B;
  font-weight: 500;
  font-size: 1.05rem;
}
.testimonial-card .testimonial-meta {
  font-size: 0.97rem;
  color: #388441;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-left: 8px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #E0F5DD;
  box-shadow: 0 6px 16px #bad5ba44;
}
.rating-summary {
  font-size: 1.07rem;
  color: #276646;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SPECIAL GRIDS --- */
.feature-grid, .special-offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li,
.special-offer-grid > div {
  background: #fff;
  border-radius: 26px 34px 28px 29px/32px 29px 25px 26px;
  box-shadow: 0 2px 12px #C4DFC233;
  flex: 1 1 230px;
  min-width: 230px;
  padding: 32px 22px 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.feature-grid li:hover, .special-offer-grid > div:hover {
  box-shadow: 0 6px 21px #BCD4AB66;
  transform: translateY(-4px) scale(1.01) rotate(-1.3deg);
}
.feature-grid img, .special-offer-grid img {
  height: 40px; width: 40px; margin-bottom: 8px;
}
@media (max-width: 768px) {
  .feature-grid li, .special-offer-grid > div {
    min-width: unset;
    width: 100%;
    padding: 24px 12px 18px 12px;
  }
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.blog-card {
  background: #fff;
  border-radius: 28px 24px 32px 36px/32px 28px 34px 30px;
  box-shadow: 0 2px 11px #B8C9B633;
  padding: 23px 20px 26px 22px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.blog-card h3 {
  color: #276646;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.blog-card p {
  font-size: 0.99rem;
  margin-bottom: 6px;
}
.blog-card a {
  color: #279267;
  align-self: flex-start;
  font-weight: 600;
  border-bottom: 2px solid #C4DFC2;
  border-radius: 2px;
  transition: color 0.16s;
  padding-bottom: 2px;
  font-size: 0.98rem;
}
.blog-card a:hover { color: #234042; }
.blog-card:hover, .blog-card:focus-within {
  box-shadow: 0 5px 15px #BCD4AB44;
  transform: translateY(-4px) scale(1.01) rotate(-0.8deg);
}

.blog-filter-options, .pagination {
  margin: 18px 0 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-filter-options span { font-weight: 700; color: #276646; }
.blog-filter-options a {
  color: #279267;
  font-weight: 500;
  font-size: 0.98rem;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.13s, color 0.13s;
}
.blog-filter-options a:hover { background: #E0F5DD; color: #145029; }
.pagination {
  gap: 24px;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.pagination a {
  color: #279267;
  border-radius: 8px;
  padding: 3px 12px;
  font-weight: 700;
  transition: background 0.15s, color 0.13s;
}
.pagination a:hover { background: #E0F5DD; color: #145029; }

.faq-accordion h2 {
  font-size: 1.13rem;
  margin-bottom: 4px;
  color: #276646;
}
.faq-accordion p {
  margin-bottom: 18px;
}
.contact-prompt p,
.faq-snippet {
  background: #E0F5DD;
  color: #276646;
  border-radius: 14px 20px 16px 17px / 18px 14px 22px 16px;
  padding: 18px 22px;
  font-weight: 500;
  font-size: 1.01rem;
}
.faq-snippet h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.map {
  background: #F8F5F1;
  border-radius: 16px 18px 20px 14px / 20px 14px 18px 16px;
  padding: 20px;
  margin-top: 16px;
  color: #406E44;
  font-size: 1.01rem;
  font-style: italic;
}

/* --- THANK YOU PAGE --- */
.thank-you {
  background: #E7EDD8;
  padding: 60px 0;
  text-align: center;
  border-radius: 0 0 62px 62px / 0 0 84px 84px;
  box-shadow: 0 2px 14px #BCD4AB44;
}
.thank-you .container { display: flex; flex-direction: column; align-items: center; }


/* --- FOOTER --- */
footer {
  background: #276646;
  color: #fff;
  padding: 36px 0 18px 0;
  border-radius: 68px 0 0 0 / 24px 150px 0 68px;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
footer nav a {
  color: #E0F5DD;
  border-radius: 8px;
  font-size: 1rem;
  padding: 2px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.13s;
}
footer nav a:hover { background: #145029; color: #fff; }
footer p { font-size: 0.97rem; letter-spacing: 0.01em; margin-bottom: 0; }

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 5000;
  background: #234042;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(34, 64, 66, 0.08);
  padding: 20px 10px 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 0.3s cubic-bezier(.61,-0.16,.79,1.45);
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  max-width: 480px;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 24px 16px 20px 22px / 20px 22px 22px 18px;
  border: none;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.15s, color 0.13s;
  box-shadow: 0 1px 9px #BCD4AB1a;
}
.cookie-btn.accept {
  background: #279267;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #145029;
}
.cookie-btn.reject {
  background: #FFF;
  color: #279267;
  border: 2px solid #279267;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E0F5DD;
  color: #145029;
  border-color: #145029;
}
.cookie-btn.settings {
  background: #E0F5DD;
  color: #276646;
  border: 2px solid #279267;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #C4DFC2;
  color: #145029;
}
@media (max-width: 750px) {
  .cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 18px 10px;}
  .cookie-banner .cookie-text { max-width: 90vw; }
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  backdrop-filter: blur(4px);
  background: rgba(30,41,59,0.12);
  z-index: 6000;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open { display: flex; }
.cookie-modal {
  background: #fff;
  color: #234042;
  border-radius: 22px 33px 26px 18px / 21px 28px 28px 22px;
  box-shadow: 0 4px 32px rgba(30,41,59,0.09);
  max-width: 420px;
  width: 92vw;
  padding: 38px 30px 28px 30px;
  position: relative;
  animation: cookieModalIn .38s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(60px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: #279267;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  width: 22px; height: 22px; accent-color: #279267;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #234042;
}
.cookie-modal .desc {
  color: #5e6349;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px 12px 18px 18px / 14px 18px 16px 14px;
  padding: 8px 16px;
  font-size: 1rem;
  border: none;
  background: #E0F5DD;
  color: #279267;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .cookie-modal-actions button.primary {
  background: #279267;
  color: #fff;
}
.cookie-modal .cookie-modal-actions button.primary:hover,
.cookie-modal .cookie-modal-actions button.primary:focus {
  background: #145029;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #C4DFC2;
  color: #145029;
}
.cookie-modal-close {
  position: absolute; top: 8px; right: 11px;
  background: #276646;
  color: #fff;
  font-size: 1.6rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  border: none; cursor: pointer;
  z-index: 1;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #145029; }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: #E7EDD8;
}
::-webkit-scrollbar-thumb {
  background: #C4DFC2;
  border-radius: 12px;
}

/* --- ORGANIC DECORATIVE SHADOWS --- */
.card, .testimonial-card, .blog-card, .feature-grid li, .special-offer-grid > div {
  box-shadow: 0 2px 13px rgba(60,88,46,0.07), 0 4px 18px rgba(172,221,144,0.04);
}

/* --- MISC --- */
@media (max-width: 700px) {
  .container { padding: 0 6px; }
  .content-wrapper { gap: 14px; }
  .hero { min-height: 100px; }
}

/* Buttons and links accessibility */
.btn-primary, .btn-secondary, .cookie-btn {
  outline: none;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  outline: 3px solid #BEE3BF;
}

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