/* --- CSS RESET / NORMALIZE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #27332A;
  background: #FFF;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img,svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2B5D34;
  text-decoration: none;
  transition: color .15s;
}
a:hover,a:focus { color: #1382A5; outline: none; }
ul,ol {list-style: none;}
button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

/* --- BRAND TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B5D34;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2B5D34;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #27332A;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #27332A;
}
p {
  margin-bottom: 18px;
  color: #27332A;
  max-width: 740px;
}
strong, b {
  font-weight: 600;
  color: #2B5D34;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* --- BASIC LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
}

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

/* --- HEADER / NAVIGATION --- */
header {
  background: #FFF;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 0;
  position: relative;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 20px; 
  justify-content: flex-start;
}
.main-nav img {
  height: 44px;
  margin-right: 28px;
  flex-shrink: 0;
}
.main-nav a {
  position: relative;
  padding: 4px 10px;
  font-size: 1rem;
  color: #2B5D34;
  border-radius: 6px;
  transition: background .14s, color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3ECD7;
  color: #1382A5;
}
.main-nav .primary.cta {
  background: #2B5D34;
  color: #FFF;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 22px;
  margin-left: 18px;
  box-shadow: 0 2px 12px rgba(40,61,50,0.04);
  transition: background .17s, color .13s, box-shadow .22s;
}
.main-nav .primary.cta:hover, .main-nav .primary.cta:focus {
  background: #1382A5; color: #FFF;
  box-shadow: 0 4px 18px rgba(19,130,165,0.08);
}

.mobile-menu-toggle {
  display: none;
  background: #FFF;
  padding: 10px 16px;
  font-size: 1.5rem;
  border-radius: 8px;
  margin: 9px 14px 9px auto;
  color: #2B5D34;
  box-shadow: 0 2px 8px rgba(40,61,50,0.06);
  transition: background .13s, box-shadow .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F3ECD7; box-shadow: 0 4px 10px rgba(43,93,52,0.09);
}

.mobile-menu {
  position: fixed;
  z-index: 1002;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: #F3ECD7;
  color: #2B5D34;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1382A5;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  align-items: flex-start;
  padding: 38px 38px 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #2B5D34;
  padding: 10px 0;
  border-radius: 4px;
  transition: background .14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3ECD7; color: #1382A5;
}

/* --- HERO / HEADINGS --- */
.hero {
  background: #F3ECD7;
  padding: 64px 0 56px 0;
  margin-bottom: 42px;
  box-shadow: 0 2px 16px rgba(223,227,223,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}

/* --- FEATURES SECTION --- */
.features, .features.team, .features.blog {
  padding: 40px 0;
  margin-bottom: 60px;
  background: #FFF;
}
.feature-grid, .facts-grid, .category-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 14px;
  justify-content: flex-start;
}
.feature-grid > div, .facts-grid > div, .category-grid > div, .tips-grid > div {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(40,93,52,0.07);
  padding: 32px 24px 28px 24px;
  min-width: 220px;
  flex: 1 1 calc(33% - 20px);
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .17s, transform .14s;
}
.feature-grid > div:hover, .facts-grid > div:hover, .category-grid > div:hover, .tips-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(19,130,165,0.09);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .facts-grid img, .category-grid img, .tips-grid img {
  height: 46px;
  margin-bottom: 6px;
}

/* --- About --- */
.about .content-wrapper ul {
  padding-left: 22px;
  margin-top: -10px;
}
.about .content-wrapper ul li {
  list-style: disc inside;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #2B5D34;
}

/* --- Testimonials --- */
.testimonials {
  background: #F9F9F6;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(43,93,52,0.07);
  padding: 20px 28px;
  margin-bottom: 20px;
  color: #2B5D34;
  max-width: 640px;
  transition: box-shadow .15s;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(19,130,165,0.10);
}
.testimonials .testimonial-card p {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #27332A;
  margin-bottom: 7px;
}
.testimonials .testimonial-card span {
  font-size: 0.99rem;
  color: #1382A5;
  font-style: italic;
}

/* --- Contact sections --- */
.contact-details, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 0;
}
.contact-details li, .contact-info-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #27332A;
}
.contact-details img, .contact-info-list img {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.contact-info-list {
  margin-bottom: 18px;
}

/* --- CTA BUTTONS --- */
.cta, .cta.primary {
  background: #2B5D34;
  color: #FFF;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 10px 26px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 2px 16px rgba(43,93,52,0.06);
  border: none;
  transition: background .18s, color .18s, box-shadow .18s, transform .13s;
  cursor: pointer;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1382A5;
  color: #FFF;
  box-shadow: 0 4px 24px rgba(19,130,165,0.17);
  transform: translateY(-2px) scale(1.017);
}

/* --- LISTS (services, posts, etc.) --- */
.service-list, .post-list {
  margin: 24px 0 18px 0;
  padding-left: 20px;
}
.service-list li, .post-list li {
  list-style: disc inside;
  color: #2B5D34;
  margin-bottom: 10px;
  font-size: 1rem;
}

.statistic-highlights ul {
  margin-top: 14px;
  padding-left: 20px;
}
.statistic-highlights ul li {
  color: #1382A5;
  font-size: 1.08rem;
}

.category-grid {
  gap: 20px;
  margin: 16px 0;
  justify-content: flex-start;
}
.category-grid > div {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F3ECD7;
  color: #27332A;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 120px;
  box-shadow: 0 1px 4px rgba(43,93,52,0.04);
  transition: background .16s, color .14s;
}
.category-grid > div:hover {
  background: #FFF;
  color: #1382A5;
}

/* --- Blog Tips grid --- */
.tips-grid {
  gap: 20px;
  margin-bottom: 12px;
}
.tips-grid > div {
  min-width: 200px;
}

/* --- Interactive Map --- */
.interactive-map {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0 0;
  background: #F3ECD7;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(19,130,165,0.041);
  padding: 20px;
  color: #1382A5;
}
.interactive-map img {
  width: 50px; height: 50px;
}
.interactive-map p {
  margin-bottom: 0;
}

/* --- FOOTER --- */
footer {
  background: #F3ECD7;
  color: #2B5D34;
  padding: 0;
  font-size: 0.99rem;
  letter-spacing: 0;
  margin-top: 40px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 20px 30px 20px;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 8px;
}
.footer-navigation, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navigation a, .footer-legal a {
  color: #2B5D34;
  font-size: 1rem;
  margin-bottom: 0;
  border-radius: 5px;
  padding: 3px 0 3px 0;
  transition: background .16s, color .13s;
}
.footer-navigation a:hover, .footer-legal a:hover {
  background: #1382A5;
  color: #FFF;
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px; height: 19px;
  flex-shrink: 0;
}

/* --- UTILITIES & ACCESSIBILITY --- */
.sr-only { position: absolute; width:1px; height:1px; margin: -1px; border:0; clip: rect(0,0,0,0); overflow:hidden; }
::-webkit-input-placeholder { color: #A3A39E; }
::-moz-placeholder { color: #A3A39E; }
:-ms-input-placeholder { color: #A3A39E; }
::placeholder { color: #A3A39E; }

/* --- COOKIE BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1100;
  background: #FFF;
  box-shadow: 0 -2px 20px 0 rgba(40,93,52,0.07);
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.05rem;
  color: #27332A;
  transition: transform .32s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cc-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button,
.cookie-consent-banner .cc-btn {
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 9px 17px;
  margin: 0 0 0 0;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s, color .13s, box-shadow .19s;
}
.cookie-consent-banner .cc-accept {
  background: #2B5D34;
  color: #FFF;
  box-shadow: 0 2px 10px rgba(43,93,52,0.07);
}
.cookie-consent-banner .cc-accept:hover {
  background: #1382A5; color: #FFF;
  box-shadow: 0 4px 18px rgba(19,130,165,0.09);
}
.cookie-consent-banner .cc-reject {
  background: #FFF;
  color: #2B5D34;
  border: 1px solid #2B5D34;
}
.cookie-consent-banner .cc-reject:hover {
  background: #F3ECD7; color: #1382A5;
}
.cookie-consent-banner .cc-settings {
  background: #F3ECD7;
  color: #2B5D34;
}
.cookie-consent-banner .cc-settings:hover,
.cookie-consent-banner .cc-settings:focus {
  background: #2B5D34; color: #FFF;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 41, 36, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .35s;
}
.cookie-modal.hide { opacity:0; pointer-events: none; }
.cookie-modal-content {
  background: #FFF;
  border-radius: 14px;
  padding: 40px 32px;
  max-width: 440px;
  min-width: 320px;
  box-shadow: 0 8px 40px rgba(40,93,52,0.13);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-content h2 { font-size: 1.3rem; margin-bottom:8px; color: #2B5D34; }
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.cookie-modal-content input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #2B5D34;
}
.cookie-modal-content .cookie-categories {
  margin-top: 10px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal-content .category-disabled {
  opacity: 0.66;
  cursor: not-allowed;
  font-weight: 500;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-content .cc-save {
  background: #2B5D34;
  color: #FFF;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .14s;
}
.cookie-modal-content .cc-save:hover {
  background: #1382A5;
  color: #FFF;
}
.cookie-modal-content .cc-cancel {
  background: #FFF;
  color: #2B5D34;
  border: 1px solid #2B5D34;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-modal-content .cc-cancel:hover {
  background: #F3ECD7;
  color: #1382A5;
}

/* --- CARD/GRID CONTAINERS (MANDATORY FLEX) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(40,93,52,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 18px;
  min-width: 240px;
  transition: box-shadow .16s, transform .13s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(19,130,165,0.10);
  transform: translateY(-3px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVENESS (MOBILE-FIRST) --- */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .footer-container { gap: 28px; }
  .feature-grid, .facts-grid, .category-grid, .tips-grid {
    flex-wrap: wrap;
    gap:16px;
  }
  .feature-grid > div, .facts-grid > div, .category-grid > div, .tips-grid > div {
    flex: 1 1 300px;
    min-width: 170px;
    max-width: 100%;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 9px; flex-wrap: wrap; font-size: 0.97rem;
  }
  .footer-container { gap: 16px; flex-wrap:wrap; }
  .feature-grid, .facts-grid, .category-grid, .tips-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 40px 0 28px 0;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 25px 8px 16px 8px;
  }
  .feature-grid, .facts-grid, .category-grid, .tips-grid, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid > div, .facts-grid > div, .category-grid > div, .tips-grid > div {
    min-width: 0; width: 100%; max-width: 100%;
    padding-left: 14px; padding-right: 14px;
  }
  .interactive-map {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
}
@media (max-width: 560px) {
  .hero { padding: 26px 0 16px 0; }
  .footer-logo img { height: 38px;}
  .section { padding: 28px 8px; }
  .cookie-modal-content { padding: 22px 8px; min-width:0; }
  .cookie-consent-banner {flex-direction: column; gap: 14px; padding:18px 4px 10px 4px; font-size:0.99rem}
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .feature-grid > div, .facts-grid > div, .category-grid > div, .tips-grid > div, .testimonial-card {
  transition: box-shadow .14s, transform .12s, background 0.13s, color 0.13s;
}
.cta, .primary.cta, .footer-navigation a, .footer-legal a{
  transition: background 0.17s, color 0.12s, box-shadow 0.14s, transform 0.1s;
}

/* --- FORM, MISC ELEMENTS --- */
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #ECECEC;
  padding: 9px 12px;
  font-size: 1.04rem;
  color: #27332A;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2B5D34;
}
::-webkit-scrollbar {width:8px;background: #fafafa;}
::-webkit-scrollbar-thumb{ background: #ECECEC; border-radius:14px;}

/* --- Z-INDEXING --- */
header{ z-index: 101; position: relative;}
.mobile-menu{ z-index:1002; }
.cookie-consent-banner{z-index:1100;}
.cookie-modal{z-index:1200;}

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