/* ================== RESET & BASE ================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #f5f7f3;
  color: #234037;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-input-placeholder { color: #697d46; }
::-moz-placeholder { color: #697d46; }
:-ms-input-placeholder { color: #697d46; }
::placeholder { color: #697d46; opacity: 1; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 0;
  color: #234037;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #234037;
}
ul, ol {
  margin: 0 0 18px 22px;
  padding: 0;
  color: #234037;
}
li {
  margin-bottom: 10px;
}
a {
  color: #697d46;
  text-decoration: none;
  transition: color 0.2s, border-bottom 0.2s;
}
a:hover, a:focus {
  color: #234037;
  border-bottom: 2px solid #697d46;
}
strong {
  font-weight: 700;
}

/* ================== LAYOUT CONTAINERS ================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 22px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================== HEADER & NAV ================== */
header {
  width: 100%;
  background: #234037;
  color: #f5f7f3;
  box-shadow: 0 2px 8px rgba(40, 60, 50, 0.08);
  position: relative;
  z-index: 50;
}
header .container {
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px 22px;
  gap: 16px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #f5f7f3;
  font-size: 1rem;
  padding: 4px 2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #697d46;
  color: #fff;
}
.cta-main {
  background: #697d46;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 7px rgba(105,125,70,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.24s, transform 0.12s;
  margin-left: 14px;
  display: inline-block;
  text-align: center;
}
.cta-main:hover, .cta-main:focus {
  background: #234037;
  color: #fff;
  box-shadow: 0 4px 18px rgba(52,64,54,0.13);
  transform: translateY(-2px) scale(1.035);
}
.mobile-menu-toggle {
  display: none;
  background: #697d46;
  color: #fff;
  font-size: 2.1rem;
  padding: 6px 16px 7px 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s;
  z-index: 99;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #234037;
}

/* ================== MOBILE NAVIGATION ================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 64, 55, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.85,0,.15,1);
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  margin: 24px 28px 0 0;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 2400;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #697d46;
}
.mobile-nav {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding-left: 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  padding: 9px 4px;
  border-radius: 6px;
  width: 85vw;
  max-width: 400px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #697d46;
  color: #fff;
}
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 12px; padding-right: 12px;
  }
  .main-nav {
    gap: 10px;
  }
  .cta-main {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  header .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-main {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================== HERO & BANNER ================== */
.hero {
  background: #f5f7f3 url('../assets/leaf-bg.svg') no-repeat right 22px top 28px;
  background-size: 220px auto;
  border-radius: 0 0 44px 0 / 0 0 44px 44px;
  box-shadow: 0 6px 40px rgba(105,125,70,0.06);
  min-height: 320px;
  padding: 50px 0;
  margin-bottom: 38px;
}
.hero .content-wrapper {
  max-width: 660px;
  margin-left: 0;
  gap: 22px;
  margin-top: 16px;
}
.hero h1 {
  color: #234037;
  margin-bottom: 17px;
}
.hero p {
  font-size: 1.13rem;
  color: #234037;
  margin-bottom: 22px;
}
@media (max-width: 850px) {
  .hero {
    background-size: 130px auto;
    padding: 32px 0;
  }
  .hero .content-wrapper { max-width: 98vw; }
}

/* ================== FLEXBOX PATTERNS - SPACING ================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(35,64,55,0.08);
  padding: 30px 26px 24px 26px;
  min-width: 260px;
  min-height: 120px;
}
.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: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========== FEATURES & TEAM ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 230px;
  min-height: 180px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(105, 125, 70, 0.09);
  padding: 28px 20px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px rgba(35, 64, 55, 0.14);
  transform: translateY(-3px) scale(1.024);
}
.feature-grid img {
  height: 44px;
  margin-bottom: 7px;
}

@media (max-width: 1000px) {
  .feature-grid { gap: 20px; }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div { min-width: 90vw; }
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: #f5f7f3;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(105,125,70,0.06);
  padding: 24px 20px 20px 23px;
  min-width: 220px;
  flex: 1 1 220px;
}
@media (max-width: 800px) {
  .team-list { flex-direction: column; gap: 18px; }
  .team-member { min-width: 95vw; }
}

/* ======= USP List, Process Steps ======= */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 12px;
}
.process-list, .step-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 18px 0;
  padding: 0;
}
.process-list li, .step-timeline li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(105,125,70,0.07);
  padding: 13px 16px;
  font-size: 1.08rem;
  color: #234037;
}
.process-list img, .step-timeline img {
  height: 32px;
  width: 32px;
}

.step-timeline li {
  margin-bottom: 0;
}
.step-timeline h3 { margin-bottom: 6px; font-size: 1.13rem; }
.step-timeline p { margin-bottom: 0; }

/* ================== TESTIMONIALS ================== */
.testimonials {
  background: #e2ede3;
  border-radius: 30px;
  padding: 44px 0 38px 0;
  margin-bottom: 44px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 25px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 2px 9px rgba(35,64,55,0.09);
  border-radius: 19px;
  max-width: 480px;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  color: #234037;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.customer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #697d46;
}
@media (max-width: 750px) {
  .testimonials .content-wrapper { gap: 14px; }
  .testimonial-card { max-width: 98vw; width: 100%; padding: 18px 8px; }
}

/* ================== CTA BANNER ================== */
.cta-banner {
  background: #697d46;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 54px;
  padding: 40px 0 34px 0;
  box-shadow: 0 6px 36px rgba(50,80,60,0.09);
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}

/* ================== CARDS & ARTICLE TEASERS ================== */
.article-teasers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-teasers-grid article {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(105,125,70,0.08);
  padding: 24px 20px 18px 23px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.article-teasers-grid article:hover {
  box-shadow: 0 6px 26px rgba(35,64,55,0.12);
  transform: translateY(-2px) scale(1.025);
}
.article-teasers-grid a {
  font-weight: 600;
  color: #697d46;
  margin-top: 5px;
  border-bottom: 1px solid #697d46;
  transition: border 0.18s, color 0.16s;
}
.article-teasers-grid a:hover, .article-teasers-grid a:focus {
  color: #234037;
  border-bottom: 2px solid #234037;
}
@media (max-width: 900px) {
  .article-teasers-grid { flex-direction: column; gap: 15px; }
  .article-teasers-grid article { min-width: 98vw; }
}

/* ================== PROPERTY LISTINGS ================== */
.property-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.property-listings > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 7px rgba(105,125,70,0.08);
  padding: 22px 20px 15px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.property-listings > div:hover {
  box-shadow: 0 7px 19px rgba(35,64,55,0.13);
  transform: translateY(-2.5px) scale(1.015);
}
.property-listings h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.property-listings ul {
  margin-left: 12px;
  font-size: 1rem;
  color: #234037;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .property-listings { flex-direction: column; gap: 15px; }
  .property-listings > div { min-width: 98vw; }
}

/* ================== SEARCH FILTER FORM ================== */
.search-filter-form {
  margin: 18px 0 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}
.search-filter-form > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-filter-form label {
  font-size: 1rem;
  color: #234037;
  font-weight: 600;
  margin-bottom: 1px;
}
.search-filter-form input, .search-filter-form select {
  padding: 9px 11px;
  font-size: 1rem;
  border: 1px solid #e2ede3;
  border-radius: 13px;
  background: #f5f7f3;
  color: #234037;
  outline: none;
  transition: border 0.21s;
}
.search-filter-form input:focus, .search-filter-form select:focus {
  border: 1.5px solid #697d46;
}
.search-filter-form button {
  background: #697d46;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.19s, transform 0.11s;
  box-shadow: 0 1px 6px rgba(105,125,70,0.07);
}
.search-filter-form button:hover, .search-filter-form button:focus {
  background: #234037;
  color: #fff;
  box-shadow: 0 4px 13px rgba(52,64,54,0.14);
  transform: translateY(-1px);
}
@media (max-width: 670px) {
  .search-filter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* ================== SERVICE FEATURES - IMMOBILIENANGEBOTE ================== */
.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 13px;
  color: #234037;
  font-size: 1.02rem;
}

/* ================== FAQ & ACCORDIONS ================== */
.faq-accordion, .faq-teaser dl {
  width: 100%;
  margin: 0 0 28px 0;
  padding: 0;
  color: #234037;
}
.faq-accordion dt, .faq-teaser dt {
  font-weight: 700;
  background: #e2ede3;
  padding: 15px 20px;
  border-radius: 15px 15px 0 0 / 15px 15px 0 0;
  margin-bottom: 0;
  margin-top: 24px;
  cursor: pointer;
  transition: background 0.14s;
}
.faq-accordion dt:hover, .faq-accordion dt:focus, .faq-teaser dt:hover, .faq-teaser dt:focus {
  background: #b6c9b7;
}
.faq-accordion dd, .faq-teaser dd {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  background: #fff;
  padding: 15px 20px;
  border-radius: 0 0 15px 15px / 0 0 15px 15px;
  box-shadow: 0 1px 7px rgba(105,125,70,0.07);
  font-size: 1rem;
}
.faq-accordion dd + dt, .faq-teaser dd + dt {
  margin-top: 16px;
}

/* ================== THANK YOU PAGE ================== */
.thank-you {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 4px 32px rgba(105,125,70,0.08);
  padding: 45px 0 38px 0;
  margin-bottom: 44px;
  text-align: center;
}
.thank-you .content-wrapper {
  align-items: center;
  gap: 20px;
}
.next-steps-info {
  margin: 20px auto 14px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.next-steps-info ul {
  margin: 0;
  padding-left: 14px;
  color: #234037;
  font-size: 1rem;
}

/* ================== CONTACT & VISIT US ================== */
.address-info, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #e2ede3;
  border-radius: 18px;
  padding: 22px 18px 18px 20px;
}
.map-embed {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-top: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(105,125,70,0.07);
  padding: 13px 15px;
}
.map-embed img {
  width: 40px; height: 40px;
}

/* ================== FOOTER ================== */
footer {
  background: #234037;
  color: #e2ede3;
  padding: 44px 0 24px 0;
  border-radius: 48px 48px 0 0 / 48px 48px 0 0;
  box-shadow: 0 -4px 18px rgba(35,64,55,0.09);
  font-size: 1rem;
}
.footer-columns {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-columns > div, .footer-columns nav {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 0 10px 0 0;
}
.footer-columns img {
  height: 32px;
  margin-bottom: 10px;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-columns nav a {
  color: #e2ede3;
  font-size: 1rem;
  transition: color 0.13s, border-bottom 0.14s;
  border-bottom: 1px solid rgba(34,64,55,0.18);
  padding-bottom: 2px;
}
.footer-columns nav a:hover, .footer-columns nav a:focus {
  color: #f5f7f3;
  border-bottom: 2px solid #697d46;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-columns li {
  margin-bottom: 8px;
  color: #f5f7f3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
}
.footer-columns a {
  color: #e2ede3;
}
.footer-columns h4 {
  color: #e2ede3;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 16px;
    padding-left: 13px;
  }
  .footer-columns > div, .footer-columns nav { min-width: 0; }
}

/* ================== LEGAL PAGES ================== */
.legal {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 2px 10px rgba(105,125,70,0.08);
  padding: 44px 0 38px 0;
  margin-bottom: 44px;
  color: #234037;
}
.legal .content-wrapper {
  gap: 14px;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f7f3;
  color: #234037;
  box-shadow: 0 -2px 16px rgba(105,125,70,0.08);
  padding: 16px 22px 22px 22px;
  z-index: 3000;
  gap: 10px;
  min-width: 250px;
  border-radius: 24px 24px 0 0 / 24px 24px 0 0;
  animation: cookie-slide-up 0.44s cubic-bezier(.85,0,.15,1);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #234037;
}
.cookie-banner-btns {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  background: #697d46;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  margin-top: 2px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.16s, color 0.13s;
  box-shadow: 0 1px 7px rgba(105,125,70,0.09);
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #234037;
  color: #fff;
}
.cookie-reject-btn {
  background: #fff;
  color: #697d46;
  border: 1px solid #697d46;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 18px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(105,125,70,0.07);
  transition: background 0.13s, color 0.13s, border 0.11s;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #697d46;
  color: #fff;
  border-color: #234037;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding-left: 9px; padding-right: 9px;
  }
  .cookie-banner-btns { gap: 9px; }
}

/* ================== COOKIE CONSENT MODAL ================== */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,64,55,0.55);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: cookie-modal-fade-in 0.22s cubic-bezier(.85,0,.15,1);
}
@keyframes cookie-modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #234037;
  border-radius: 32px;
  box-shadow: 0 7px 32px rgba(35,64,55,0.13);
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 95vw;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #697d46;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e2ede3;
}
.cookie-modal h3 {
  margin-top: 0;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-toggle {
  width: 44px; height: 24px;
  background: #fac;
  border-radius: 16px;
  border: 1px solid #e2ede3;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
  outline: none;
}
.cookie-toggle[data-checked='true'] {
  background: #697d46;
}
.cookie-toggle-knob {
  content: '';
  display: block;
  width: 21px; height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.22s;
}
.cookie-toggle[data-checked='true'] .cookie-toggle-knob {
  left: 21px;
}
.cookie-category span {
  font-size: 1.02rem;
}
.essential-info {
  color: #697d46;
  font-size: 0.96rem;
  margin-bottom: 7px;
}
@media (max-width: 500px) {
  .cookie-modal-content { min-width: 0; padding: 22px 7px 9px 9px; border-radius: 16px; }
}

/* ======== BUTTONS, FORMS, EFFECTS ========== */
button, input[type=button], input[type=submit] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

/* ================== UTILITY ================== */
.hide {
  display: none !important;
}

/* ================== SCROLLBAR ================== */
body::-webkit-scrollbar {
  width: 11px;
  background: #f5f7f3;
}
body::-webkit-scrollbar-thumb {
  background: #d2dfd4;
  border-radius: 6px;
}

/* ================== ORGANIC/NATURE VISUALS ================== */
.card, .team-member, .feature-grid > div, .testimonial-card, .property-listings > div, .article-teasers-grid article, .address-info, .map-embed, .thank-you, .legal, .content-wrapper, .search-filter-form input, .search-filter-form select {
  border-radius: 30px 18px 26px 14px / 18px 30px 14px 26px;
}

/* ---- Slight texture using subtle box-shadows for organic look ---- */
.card, .team-member, .feature-grid > div, .testimonial-card, .property-listings > div, .article-teasers-grid article, .address-info, .cta-banner, .thank-you, .legal {
  box-shadow: 0 4px 18px rgba(105,125,70,0.09) !important;
}

/* ---- Fun green accent squiggle underline for fancy display headings ---- */
h2, h1 {
  position: relative;
}
h2::after, h1::after {
  content: '';
  display: block;
  width: 65px;
  height: 7px;
  background: #b6c9b7;
  border-radius: 88px 33px 88px 44px / 8px 5px 8px 6px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  h1 {
    font-size: 1.55rem;
  }
  .cta-banner, .legal, .thank-you, .testimonials {
    padding: 19px 0 15px 0;
    border-radius: 19px;
  }
  .hero {
    padding: 18px 0;
    border-radius: 14px;
  }
}