/* CSS RESET & BASE STYLES ----------------------------------- */
html,
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li, a, button, input, textarea, blockquote, cite {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F5F7F1;
  color: #2A5748;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}
a {
  color: #417566;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2A5748; /* Brand primary */
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
}

/* TYPOGRAPHY ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #294736;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #37614F;
}
blockquote {
  font-style: italic;
  background: rgba(162,199,182, 0.12);
  border-left: 4px solid #A2C7B6;
  margin: 24px 0;
  padding: 20px 28px;
  border-radius: 10px;
  color: #2A5748;
}
cite {
  display: block;
  text-align: right;
  font-size: 0.98rem;
  font-style: normal;
  margin-top: 10px;
  color: #6C9C8B;
}

/* CONTAINER & LAYOUT FLEXBOX ------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(162,199,182, 0.13);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(42,87,72,0.15);
  transform: translateY(-2px) scale(1.015);
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #F0F5F2;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(162,199,182,0.11);
  color: #183929;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 3px solid #A2C7B6;
  padding: 0 16px 0 12px;
  margin: 0;
  color: #244A3A;
}
.testimonial-card strong {
  color: #2A5748;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(162,199,182, 0.09);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(42,87,72,0.11);
  transform: scale(1.02);
}

/* BLOG & ARTICLE TEASERS ------------------------- */
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.blog-teaser {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(99, 170, 111, 0.09);
  flex: 1 1 260px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.16s;
  margin-bottom: 20px;
}
.blog-teaser a {
  color: #64997B;
  font-weight: 600;
  margin-top: 8px;
}
.blog-teaser:hover {
  box-shadow: 0 4px 18px rgba(162,199,182,0.13);
  transform: translateY(-2px) scale(1.015);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}
.blog-list article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(99, 170, 111, 0.08);
  padding: 32px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.97rem;
  align-items: center;
  margin-bottom: 18px;
}
.popular-tags span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6C9C8B;
  background: #EEF3F1;
  border-radius: 8px;
  padding: 3px 10px;
}

/* NEWSLETTER ------------------------------------- */
.newsletter {
  background: #EAF6ED;
  border-radius: 22px;
  margin-top: 36px;
  box-shadow: 0 2px 14px rgba(162,199,182, 0.12);
  text-align: center;
  padding: 40px 20px 40px 20px;
}
.newsletter h2 {
  margin-bottom: 10px;
  color: #1f4638;
}
.newsletter p {
  color: #38786A;
  margin-bottom: 22px;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.newsletter input[type="email"] {
  border: none;
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 5px rgba(34, 77, 67, 0.06);
  outline: none;
  width: 100%;
  max-width: 320px;
  margin-bottom: 10px;
  color: #183929;
}
.newsletter input[type="email"]:focus {
  border: 1.5px solid #A2C7B6;
}
.newsletter button {
  cursor: pointer;
  background: #A2C7B6;
  color: #244A3A;
  border: none;
  border-radius: 14px;
  padding: 11px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(42,87,72,0.07);
}
.newsletter button:hover, .newsletter button:focus {
  background: #2A5748;
  color: #fff;
}

/* HEADER & NAV ----------------------------------- */
header {
  width: 100%;
  background: #F5F7F1;
  box-shadow: 0 2px 12px rgba(162, 199, 182, 0.09);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 12px 0 12px 0;
  position: relative;
  z-index: 200;
}
header > a img {
  height: 52px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2A5748;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: #A2C7B6;
  color: #fff;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#A2C7B6 65%, #EAF6ED 100%);
  color: #244A3A;
  border-radius: 22px;
  padding: 10px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  margin-left: auto;
  margin-right: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(42,87,72,0.07);
  transition: background 0.25s, transform 0.16s, color 0.09s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#2A5748 85%, #A2C7B6 100%);
  color: #fff;
  transform: scale(1.038);
}

/* BURGER MENU -------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #A2C7B6;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 8px 14px 8px 14px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.10s;
  z-index: 320;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2A5748;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #EAF6ED;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 82vw;
  max-width: 420px;
  box-shadow: 8px 0 32px rgba(42,87,72,0.15);
  z-index: 1000;
  padding: 34px 20px 24px 24px;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(0.52,0.19,0.38,1.32);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #A2C7B6;
  color: #2A5748;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  padding: 3px 18px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2A5748;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #244A3A;
  padding: 10px 5px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #A2C7B6;
  color: #fff;
}
/* MOBILE NAV: hide desktop nav, show burger button */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO SECTION -------------------------------------- */
.hero {
  background: linear-gradient(180deg, #E9F2ED 0%, #F5F7F1 80%);
  border-radius: 0 0 40px 40px;
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
  box-shadow: 0 8px 34px rgba(162,199,182,0.14);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: #244A3A;
  margin-bottom: 14px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(103,156,129,0.05);
}
.hero p {
  color: #37614F;
  font-size: 1.18rem;
}

/* TEAM OVERVIEW & LISTING --------------------------- */
.team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(99, 170, 111, 0.09);
  padding: 20px 20px 18px 20px;
  margin-bottom: 22px;
  flex: 1 1 210px;
  color: #244A3A;
}
.text-section h3 {
  color: #2A5748;
}
.text-section a {
  color: #2A5748;
  font-weight: 600;
}

/* PRODUCT LISTINGS, GUIDE & FAQ --------------------- */
.product-listings, .guide-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 12px;
}
.product-listings .text-section, .guide-list article, .faq-list .faq-item {
  min-width: 230px;
  flex: 1 1 220px;
}
.faq-item {
  background: #F0F5F2;
  border-radius: 13px;
  padding: 16px 16px 14px 20px;
  color: #2A5748;
}
.faq-item h3 {
  margin-bottom: 8px;
}
.contact-info-teaser {
  margin: 24px 0 14px 0;
}
.contact-info-teaser .cta-btn {
  margin: 0;
}

/* INSPIRATION PAGE -------------------------------- */
.inspiration-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 12px;
}
.inspiration-articles article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(99, 170, 111, 0.07);
  padding: 22px 16px;
  min-width: 220px;
  flex: 1 1 220px;
}
.trending-topics {
  margin-back: 18px;
  background: #F0F5F2;
  border-radius: 12px;
  padding: 16px 16px 14px 18px;
  margin-bottom: 18px;
}
.seasonal-tips {
  background: #EEF3F1;
  border-radius: 12px;
  padding: 16px 16px 12px 18px;
}

/* FOOTER ----------------------------------------- */
footer {
  background: #EAF6ED;
  padding: 50px 0 24px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 60px;
  box-shadow: 0 -4px 32px rgba(162,199,182,0.09);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 28px;
}
.footer-nav a {
  color: #417566;
  background: #fff;
  border-radius: 10px;
  padding: 6px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover {
  background: #A2C7B6;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #37614F;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 2px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footer-logo img {
  height: 40px;
}

/* RESPONSIVE: MOBILE ADJUSTMENTS ------------------ */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .blog-teasers, .product-listings, .guide-list, .team-overview, .inspiration-articles {
    flex-direction: column;
    gap: 22px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size:1.6rem;
  }
  .hero {
    padding: 55px 0 40px 0;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 22px 2px;
  }
  .newsletter {
    padding: 24px 2px 20px 2px;
  }
}


/* BUTTONS, FORMS & MICRO-INTERACTIONS ------------- */
button, .cta-btn {
  cursor: pointer;
  outline: none;
  border: none;
  user-select: none;
}
button:disabled, .cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
input[type="email"]::placeholder {
  color: #ACCDBA;
}
input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: 1.5px solid #A2C7B6;
}

/* COOKIE CONSENT BANNER & MODAL -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8fa;
  box-shadow: 0 -4px 18px rgba(162,199,182,0.17);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 22px 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #294736;
  animation: cookieSlideIn 0.39s cubic-bezier(0.58,1.19,0.49,0.98);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
  justify-content: center;
}
.cookie-btn {
  padding: 8px 26px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  min-width: 110px;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, box-shadow 0.12s;
}
.cookie-btn.accept {
  background: #A2C7B6;
  color: #244A3A;
  box-shadow: 0 1px 5px rgba(42,87,72,0.04);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2A5748;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #2A5748;
  border: 1.5px solid #A2C7B6;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #A2C7B6;
  color: #fff;
}
.cookie-btn.settings {
  background: #EEF3F1;
  color: #294736;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A2C7B6;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0;top:0;right:0;bottom:0;
  background: rgba(44,55,48,0.32);
  z-index: 2999;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 440px;
  width: 93vw;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 44px rgba(42,87,72,0.13);
  animation: fadeInCookieModal 0.32s ease;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; transform: scale(0.98);}
  100%{ opacity:1; transform: scale(1);}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #2A5748;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #A2C7B6;
  display: inline-block;
  position: relative;
  transition: background 0.15s;
  margin-left: 7px;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(42,87,72,0.08);
  transition: left 0.17s;
}
.cookie-toggle input:checked + .cookie-toggle::before {
  left: 19px;
}
.cookie-toggle.disabled {
  background: #C0CDC7;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 3px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 22px;
  background: #A2C7B6;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #2A5748;
  color: #fff;
}

/* UTILITY CLASSES --------------------------------- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-8 { margin-top: 8px; }
.text-center { text-align: center; }

/* SCROLLBAR (subtle, soft pastel) ----------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F7F1;
}
::-webkit-scrollbar-thumb {
  background: #EAF6ED;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5E1D3;
}

/* ACCESSIBILITY ----------------------------------- */
:focus-visible {
  outline: 2.5px solid #A2C7B6;
  outline-offset: 2px;
}

/* SOFT PASTEL DECORATIVE EFFECTS ------------------ */
body {
  background-color: #F5F7F1;
}
.section, .card, .feature-item, .newsletter, .testimonial-card, .footer-nav a, .main-nav a, .blog-teaser {
  box-shadow: 0 2px 16px rgba(162,199,182, 0.09);
}

/* Z-INDEX for HEADER, MENU and COOKIE -------------- */
header { z-index: 200; }
.mobile-menu { z-index: 1000; }
.cookie-banner { z-index: 2000; }
.cookie-modal-overlay { z-index: 2999; }

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