/* 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;
}
html {
  box-sizing: border-box;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: linear-gradient(135deg, #F5F5F2 0%, #E9F5ED 100%) no-repeat;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #256D43;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #73A942;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
}
:focus {
  outline: 2px solid #73A942;
  outline-offset: 2px;
}

/* GLOBAL CONTAINER */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #256D43;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li { font-size: 1rem; }
strong { font-weight: 600; }
.subheadline {
  color: #73A942;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 28px;
}

/* SECTION LAYOUT */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(245,245,242,0.90);
  border-radius: 24px;
  box-shadow: 0 4px 36px rgba(37,109,67,0.06);
}

/* FLEX LAYOUT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(37,109,67,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 6px 30px rgba(37,109,67,0.18);
}
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(37,109,67,0.12);
  margin-bottom: 24px;
  min-width: 0;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card p {
  flex: 1;
  color: #222;
  font-size: 1.125rem;
}
.testimonial-card strong {
  color: #256D43;
  font-size: 1rem;
  margin-left: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(114deg, #E9F5ED 0%, #F5F5F2 100%);
  box-shadow: 0 2px 24px rgba(37,109,67,0.10);
  border-radius: 0 0 48px 48px;
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  z-index: 1;
}

/* BUTTONS */
.button,
.button.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(98deg, #73A942 0%, #256D43 65%);
  border-radius: 32px;
  padding: 14px 34px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(37,109,67,0.12);
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  margin-top: 12px;
  cursor: pointer;
  border: none;
  outline: none;
}
.button.primary {
  background: linear-gradient(90deg, #256D43 0%, #73A942 90%);
}
.button:hover, .button:focus {
  background: linear-gradient(98deg, #256D43 0%, #73A942 100%);
  box-shadow: 0 5px 18px rgba(37,109,67,0.17);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}
/* Buttons - alternative states for non-primary buttons */
.button:not(.primary) {
  background: #256D43;
  color: #fff;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 32px rgba(37,109,67,0.04);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 12px;
  position: relative;
}
.logo img {
  height: 42px;
}
nav.main-nav {
  display: flex;
  gap: 24px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #256D43;
  padding: 5px 8px;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: #E9F5ED;
  color: #73A942;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg,#256D43,#73A942);
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  z-index: 20;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(105deg, #256D43 0%, #73A942 120%);
  z-index: 1000;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transition: background 0.3s;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100vw;
  margin-top: 64px;
}
.mobile-menu nav.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  background: rgba(245,245,242,0.07);
  padding: 13px 45px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
  margin: 0 10px;
}
.mobile-menu nav.mobile-nav a:hover {
  background: #F5F5F2;
  color: #256D43;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 18px 22px 0 0;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 6px;
  z-index: 2000;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #aacb9e;
}

/* HERO, FEATURES, ABOUT, LEGAL SHARED LAYOUTS */
.features .content-wrapper, 
.top-brands .content-wrapper,
.about-snippet .content-wrapper,
.blog-teaser .content-wrapper,
.blog-list .content-wrapper,
.values .content-wrapper,
.brand-list .content-wrapper,
.filters .content-wrapper,
.categories .content-wrapper,
.contact-details ul,
ul.feature-grid,
ul.logo-grid,
.guide-topics .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
ul.feature-grid li,
ul.logo-grid li,
.values .content-wrapper ul li,
.features .content-wrapper ul li,
.guide-topics .content-wrapper ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(37,109,67,0.10);
  flex: 1 1 232px;
  min-width: 210px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
ul.feature-grid li:hover,
ul.logo-grid li:hover,
.values .content-wrapper ul li:hover {
  box-shadow: 0 7px 24px rgba(37,109,67,0.18);
  background: #F5F5F2;
  transform: translateY(-4px) scale(1.02);
}
ul.feature-grid img,
ul.logo-grid img,
.values .content-wrapper ul img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
ul.logo-grid li span {
  font-weight: 600;
  font-size: 1.2rem;
  color: #256D43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
}
ul.logo-grid li p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 6px;
}
ul.logo-grid li a {
  color: #73A942;
  font-weight: 600;
  font-size: 0.95rem;
}
ul.logo-grid li a:hover {
  color: #256D43;
  text-decoration: underline;
}

/* BRAND SEARCH, FILTERS, BLOG SEARCH */
.brand-search, .blog-search {
  width: 100%;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
}
.brand-search input, .blog-search input {
  flex: 1 1 242px;
  padding: 13px 18px;
  border: none;
  border-radius: 24px;
  background: #E9F5ED;
  font-size: 1.05rem;
  color: #256D43;
  box-shadow: 0 2px 8px rgba(37,109,67,0.06);
}
.brand-search input:focus, .blog-search input:focus {
  background: #fff;
  border: 1.5px solid #73A942;
}

.filters .content-wrapper {
  gap: 28px;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}
.filter-group label {
  font-weight: 500;
  color: #256D43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
}
.filter-group select {
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 18px;
  background: #E9F5ED;
  box-shadow: 0 1px 4px rgba(37,109,67,0.06);
}

/* BLOG POST CARDS */
.blog-list .blog-post {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 18px;
  box-shadow: 0 2px 18px rgba(37,109,67,0.12);
  flex: 1 1 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s, background 0.17s, transform 0.17s;
}
.blog-list .blog-post:hover {
  box-shadow: 0 7px 30px rgba(37,109,67,0.14);
  background: #F5F5F2;
  transform: translateY(-4px) scale(1.015);
}

/* CATEGORIES */
.category-tag {
  background: #256D43;
  color: #fff;
  padding: 6px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background 0.17s;
  display: inline-block;
}
.category-tag:hover {
  background: #73A942;
}

/* FOOTER */
footer {
  background: #F5F5F2;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 18px rgba(37,109,67,0.06);
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.97rem;
}
.footer-links a {
  color: #256D43;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.footer-links a:hover {
  color: #73A942;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-social span {
  color: #256D43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 3px;
}
.footer-social a {
  background: #256D43;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: background 0.18s;
}
.footer-social a:hover {
  background: #73A942;
}
.footer-copyright {
  font-size: 0.95rem;
  color: #255d43ad;
  flex: 1 1 100%;
  text-align: center;
  margin-top: 12px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* LEGAL SECTION */
.legal .content-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(37,109,67,0.09);
  padding: 28px 22px;
  margin-bottom: 20px;
}
.legal h1, .legal h2 {
  color: #256D43;
}
.legal h1 { margin-bottom: 32px; }
.legal h2 { margin-top: 26px; margin-bottom: 9px; }

/* CONTACT DETAILS */
.contact-details ul {
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #256D43;
  font-size: 1rem;
  font-family: 'Roboto';
  background: #F5F5F2;
  border-radius: 10px;
  padding: 9px 16px;
  min-width: 0;
}
.contact-details li img {
  width: 28px;
  height: 28px;
}
.contact-details a {
  color: #256D43;
  text-decoration: underline;
}
.contact-details a:hover {
  color: #73A942;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  background: #fff;
  color: #256D43;
  border-top: 1.5px solid #E2E8E1;
  box-shadow: 0 -2px 22px rgba(37,109,67,0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  max-width: 100vw;
  padding: 32px 18px 24px;
  font-size: 1rem;
  align-items: flex-start;
  animation: bannerSlideIn 0.45s cubic-bezier(.55,0,.22,1);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.cookie-banner p {
  color: #256D43;
  font-size: 1.06rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-right: 8px;
}
.cookie-banner .cookie-btn.accept {
  background: #256D43;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #73A942;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #E9F5ED;
  color: #256D43;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #aacb9e;
  color: #256D43;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #256D43;
  border: 1px solid #256D43;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #E9F5ED;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,109,67,0.48);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 410px;
  padding: 34px 30px 30px 30px;
  margin: 9vw auto;
  box-shadow: 0 8px 40px rgba(37,109,67,0.19);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(.54,0,.22,1);
}
@keyframes modalIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #256D43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: #256D43;
}
.cookie-modal .toggle {
  margin-left: auto;
}
.toggle {
  display: inline-block;
  width: 46px;
  height: 22px;
  position: relative;
}
.toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  border-radius: 30px;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  transition: background 0.17s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s, background 0.17s;
}
.toggle input:checked + .toggle-slider {
  background: #73A942;
}
.toggle input:checked + .toggle-slider:before {
  transform: translateX(22px);
  background: #256D43;
}

.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn-row .cookie-btn {
  min-width: 100px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  font-size: 1.3rem;
  color: #256D43;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #73A942;
}
.cookie-category input[disabled] + .toggle-slider {
  background: #256D43;
  opacity: 0.51;
  cursor: not-allowed;
}

/* SPECIFIC UTILITY SPACING CLASSES */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.pt-24 { padding-top: 24px !important; }
.pb-24 { padding-bottom: 24px !important; }
.gap-8 { gap: 8px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* SECTION SPACING ENFORCEMENT */
section + section, .section + .section {
  margin-top: 44px !important;
}

/* RESPONSIVE DESIGN & FLEX ADAPTATIONS */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 8px; padding-right: 8px;
  }
  .content-grid, .card-container, .features .content-wrapper, .top-brands .content-wrapper,
  .about-snippet .content-wrapper, .blog-teaser .content-wrapper, .blog-list .content-wrapper,
  .values .content-wrapper, .brand-list .content-wrapper, .filters .content-wrapper, .categories .content-wrapper, .contact-details ul {
    gap: 16px;
  }
  ul.feature-grid li, ul.logo-grid li, .blog-list .blog-post { min-width: 180px; }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .container {
    max-width: 100vw;
    padding-left: 8px; padding-right: 8px;
  }
  .content-wrapper {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  .card-container, .content-grid, .features .content-wrapper, .top-brands .content-wrapper, .blog-list .content-wrapper, .values .content-wrapper, .brand-list .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section,
  .about-snippet .content-wrapper,
  .info .content-wrapper,
  .contact-details ul,
  ul.feature-grid,
  ul.logo-grid,
  .guide-topics .content-wrapper ul {
    flex-direction: column !important;
    gap: 12px !important;
    min-width: 0;
  }
  .hero {
    padding-top: 34px; padding-bottom: 34px;
    border-radius: 0 0 28px 28px;
  }
  .footer-links {
    gap: 9px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .footer-social { margin-bottom: 6px; }
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .hero .content-wrapper, section, .section { padding-left: 6px; padding-right: 6px; }
  .cookie-modal { max-width: 95vw; padding: 14vw 6vw 8vw 6vw; }
  .cookie-modal h2 { font-size: 1.15rem; }
}

/* VISUAL ACCESSIBILITY */
@media (hover: none) {
  a:hover, a:focus, .button:hover, .button:focus {
    filter: none !important;
    outline: 2px solid #73A942;
    outline-offset: 2px;
  }
}

/* END OF CSS FILE */