/* 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,
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%;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F3E8;
  color: #222;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

a {
  color: #2B5940;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

a:hover, a:focus {
  color: #79B485;
  outline: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

strong {
  font-weight: 700;
}

/* MODERN BOLD DESIGN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #2B5940;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 24px;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(42, 89, 64, 0.09);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.text-section {
  background: #F7F3E8;
  box-shadow: none;
}

/* SPACING AND ALIGNMENT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(42, 89, 64, 0.13);
  border-radius: 20px;
  padding: 28px 22px;
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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: #f7f3e8;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(42, 89, 64, 0.08);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 260px;
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(42, 89, 64, 0.11);
  padding: 24px;
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #2B5940;
  box-shadow: 0 0 24px 0 rgba(42, 89, 64, 0.12);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.06rem;
  transition: color .2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.07);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #79B485;
  border-bottom: 2px solid #79B485;
  outline: none;
}
header img {
  height: 44px;
}

.btn-primary {
  background: #79B485;
  color: #2B5940;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 28px;
  letter-spacing: 1px;
  border: none;
  outline: none;
  box-shadow: 0 4px 12px 0 rgba(121,180,133, 0.16);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.25s, transform 0.16s;
  margin-left: 20px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2B5940;
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(42, 89, 64, 0.19);
  transform: translateY(-2px) scale(1.02);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1202;
  background: #2B5940;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px 0 rgba(42, 89, 64, 0.18);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #79B485;
  color: #2B5940;
  transform: scale(1.09);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2B5940;
  z-index: 1200;
  padding: 40px 26px 26px 34px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.45,1.01,.51,1), opacity 0.2s;
  opacity: 0;
  box-shadow: 0px 12px 32px 0 rgba(42, 89, 64, 0.21);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.44s cubic-bezier(.45,1.01,.51,1), opacity 0.3s;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 18px;
  background: #fff;
  color: #2B5940;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(42, 89, 64, 0.12);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #79B485;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 60px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  padding: 10px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  border-radius: 4px;
  transition: background 0.2s, color 0.16s, border 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #79B485;
  color: #2B5940;
  border-bottom: 2px solid #fff;
}

@media (max-width: 1024px) {
  .container { padding: 0 13px; }
  .content-wrapper { padding: 36px 10px; }
  .btn-primary { padding: 12px 18px; font-size: .97rem; }
}
@media (max-width: 912px) {
  header .container nav { gap: 14px; }
  .section, .content-wrapper { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 820px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .section {
    margin-bottom: 36px;
    padding: 27px 6px 27px 6px;
    border-radius: 12px;
  }
  .text-image-section { flex-direction: column; gap: 22px; }
  header nav { display: none; }
  .btn-primary { margin-left: 0; margin-top: 12px; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 576px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .content-wrapper, .section { padding: 15px 3px 17px 3px; }
  .mobile-menu { padding: 25px 2px 8px 8px; }
}

/* === FEATURES / ICON CARDS / CATEGORIES === */
.features-grid, .tips-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  justify-content: flex-start;
}
.features-grid > div,
.tips-cards > div {
  background: #fff;
  border-radius: 20px;
  padding: 28px 19px;
  box-shadow: 0 2px 12px 0 rgba(121,180,133, 0.11);
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .17s;
  gap: 10px;
  border: 2px solid #fff;
}
.features-grid > div:hover,
.tips-cards > div:hover {
  box-shadow: 0 10px 32px 0 rgba(42, 89, 64, 0.13);
  border: 2px solid #79B485;
  transform: scale(1.03);
  z-index: 2;
}
.features-grid img,
.tips-cards img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

/* === SERVICES, CATEGORIES, TOPIC LIST === */
.services-list, .category-list, .topic-list {
  margin-top: 17px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.08rem;
}
.services-list li, .category-list li, .topic-list li {
  background: #f7f3e8;
  border-radius: 13px;
  padding: 16px 21px;
  color: #2B5940;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(121,180,133, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  align-items: flex-start;
}
.testimonial-card {
  background: #f7f3e8;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  flex: 1 1 240px;
  border-left: 6px solid #79B485;
  min-width: 220px;
  gap: 14px;
  padding: 25px 22px 20px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(42, 89, 64, 0.05);
  margin-bottom: 20px;
  font-weight: 500;
  transition: box-shadow .16s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 9px 28px 0 rgba(121,180,133, 0.19);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card strong {
  color: #2B5940;
}

/**** FOOTER ****/
footer {
  background: #2B5940;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #90c8a7;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: color .18s, border 0.11s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.footer-details {
  font-size: 0.98rem;
  margin-top: 4px;
  color: #fff;
  line-height: 1.6;
}
.footer-details img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 3px;
}

/**** FORMS, CTA, THANKS ****/
.contact-cta, .thanks-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
@media (max-width: 800px) {
  .contact-cta, .thanks-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  footer .content-wrapper { gap: 12px; }
}

/**** TEASER ARTICLES ****/
.teaser-articles {
  margin-top: 22px;
}
.teaser-articles ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.teaser-articles li {
  font-size: 1.04rem;
  background: #E5EDD7;
  padding: 10px 16px;
  border-radius: 10px;
  color: #2B5940;
  font-weight: 600;
}

/**** ANIMATIONS, EFFECTS, SHADOWS ****/
section, .content-wrapper, .card, .testimonial-card, .btn-primary,
.features-grid > div, .tips-cards > div {
  transition: box-shadow .16s, background-color .15s, transform .16s;
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #2B5940;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 20px 28px;
  z-index: 1203;
  box-shadow: 0 -2px 12px 0 rgba(42,89,64,0.19);
  font-size: 1.04rem;
  gap: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.32s, opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 400px;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 21px;
  padding: 9px 20px;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px 0 rgba(121,180,133, 0.07);
}
.cookie-btn.accept {
  background: #79B485;
  color: #2B5940;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #2B5940;
}
.cookie-btn.reject {
  background: #fff;
  color: #2B5940;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #79B485;
  color: #fff;
}
.cookie-btn.settings {
  background: #2B5940;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F7F3E8;
  color: #2B5940;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 19px 12px 16px 12px;
    gap: 14px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions { justify-content: flex-end; }
}

/**** COOKIE MODAL PREFERENCES ****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,34,34,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #fff;
  color: #2B5940;
  border-radius: 19px;
  max-width: 400px;
  width: 100%;
  padding: 32px 22px;
  box-shadow: 0 4px 26px 0 rgba(42,89,64,.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn .4s cubic-bezier(.49,1.39,.63,1) 1;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(.8);}
  to { opacity:1; transform:scale(1);}
}
.cookie-modal h2 { color: #2B5940; font-size: 1.35rem; margin-bottom: 8px; }
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F7F3E8;
  border-radius: 9px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #79B485;
  width: 19px; height: 19px;
  margin-right: 7px;
}
.cookie-category.essential label {
  color: #bbb;
  font-size: .94rem;
  font-style: italic;
  font-weight: 500;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 88px;
}

/**** UTILITY CLASSES ****/
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-36 { margin-top: 36px !important; }
.text-center {
  text-align: center !important;
}

/**** ACCENT LINES / GEO SHAPES (SIMPLE, BOLD) ****/
hr,
.divider {
  border: none;
  border-top: 3px solid #79B485;
  border-radius: 2px;
  margin: 24px 0;
  width: 60px;
  background: none;
}

/**** GENERAL ADJUSTMENTS, LAST DETAILS ****/
::-webkit-scrollbar-thumb {
  background: #79B485;
}
::-webkit-scrollbar {
  width: 8px;
  background: #F7F3E8;
}

/* Focus Outline */
a:focus, .btn-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px dashed #2B5940;
}

/* Hide scroll background for mobile menu */
body.menu-open {
  overflow: hidden;
}

/* END OF CSS */
