/* ==== CSS RESET & BASE ==== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #EFEDE8;
  color: #1C2620;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; border: 0; }

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #30594D;
  font-weight: 700;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C2620;
  font-size: 1rem;
  line-height: 1.7;
}
strong { font-weight: 700; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #30594D; 
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* ==== CONTAINER & SPACING ==== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(48,89,77,.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
header a img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
nav a{
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 2px;
  color: #30594D;
  opacity: .92;
  transition: color .17s, opacity .15s;
  border-radius: 4px;
  position: relative;
}
nav a:hover,
nav a:focus {
  color: #2D7C56;
  opacity: 1;
  background: rgba(178,200,161,.16);
}

.btn-primary, .btn-secondary{
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 13px 32px;
  transition: background .23s, box-shadow .23s, color .20s;
  box-shadow: 0 3px 12px rgba(48,89,77,.09);
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
}
.btn-primary {
  background: linear-gradient(90deg, #30594D 60%, #B2C8A1 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(48,89,77,.16);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #2D7C56 60%, #B2C8A1 100%);
  box-shadow: 0 6px 20px rgba(48,89,77,.18);
  color: #fff;
}
.btn-secondary {
  background: #B2C8A1;
  color: #30594D;
  border: 2px solid #30594D;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #30594D;
  color: #fff;
  border-color: #2D7C56;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(110deg, #EFEDE8 60%, #B2C8A1 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 56px;
  min-height: 320px;
  box-shadow: 0 10px 28px 0 rgba(178,200,161,.15);
  display: flex;
  align-items: center;
  padding-top: 36px; padding-bottom: 36px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 24px 0;
  gap: 0;
}
.hero h1 {
  color: #30594D;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #425356;
}

/* ==== FLEX GRID & CARDS ==== */
.features-grid, .service-list, .card-container, .card-grid, .testimonial-slider, .testimonial-list, .feature-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid > div, .features-grid > li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(178,200,161,.08);
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: calc(50% - 18px);
  min-width: 214px;
  min-height: 155px;
}
.features-grid > div img, .features-grid > li img {
  height: 40px; width: 40px; margin-bottom: 8px;
}
.features-grid h3 { color: #30594D; font-size: 1.10rem; margin-bottom: 3px; }

.service-list {
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.service-list .service-card {
  background: linear-gradient(100deg, #EFEDE8 88%, #B2C8A1 100%);
  border-radius: 17px;
  box-shadow: 0 3px 12px rgba(48,89,77,.07);
  padding: 24px 22px 22px 22px;
  width: calc(50% - 14px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.service-list .service-card h3 { font-size: 1.15rem; }

/* ==== CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 4px 16px rgba(178,200,161,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==== STEPS ==== */
.feature-steps {
  width: 100%;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.feature-steps > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(48,89,77,.06);
  padding: 18px 16px 10px 16px;
  display: flex; align-items: center;
  gap: 10px;
  min-width: 180px;
  font-weight: 500;
  color: #30594D;
}
.feature-steps > li img { width: 28px; height: 28px; }

/* ==== Responsive Grids ==== */
@media (max-width: 970px) {
  .features-grid > div, .features-grid > li,
  .service-list .service-card {
    width: 100%;
    min-width: 0;
  }
  .service-list, .features-grid {
    gap: 20px;
  }
}

/* ==== TEXT & IMAGE SECTIONS ==== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials, .testimonial-slider, .testimonial-list {
  width: 100%;
}
.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px;
  min-width: 225px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(48,89,77,.17);
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #212A22;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.995rem;
  color: #30594D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 18px 10px; }
}

/* ==== BUTTONS & INTERACTIVE ==== */
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 8px 0 rgba(48,89,77,.11);
}
.btn-primary:active {
  box-shadow: 0 1px 5px 0 rgba(48,89,77,.14);
  background: #2D7C56;
}
.btn-secondary:active {
  background: #426856;
  border-color: #426856;
}

/* ==== LAYOUT FLEXBOX ALIGNMENT ==== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==== FOOTER ==== */
footer {
  background: #30594D;
  color: #fff;
  padding-top: 44px; padding-bottom: 28px;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -3px 21px 0 rgba(48,89,77,.11);
}
footer .container {
  gap: 34px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  border-bottom: 1px solid #B2C8A1;
  padding-bottom: 24px;
  margin-bottom: 22px;
}
.footer-top img {
  width: 56px; height: 56px; margin-right: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B2C8A1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.social-links img {
  width: 29px; height: 29px;
  transition: filter .19s;
}
.social-links a:hover img { filter: brightness(1.1) contrast(1.1); }
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .985rem;
  color: #B2C8A1;
}
.footer-bottom address {
  font-style: normal;
  color: #B2C8A1;
  font-size: 1rem;
}
.footer-bottom a {
  color: #B2C8A1;
  text-decoration: underline;
}
.footer-bottom img {
  width: 18px;height: 18px;margin-right: 4px;vertical-align:middle;}

/* ==== FORMS & CONTACT ==== */
.contact-list {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #30594D;
  font-size: 1.07rem;
}
.contact-list a { color: #2D7C56; }
.feature-map p { display: flex; align-items: center; gap: 10px; color: #30594D; font-weight: 500; }
.feature-map img { width: 30px; height: 30px; }

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 18px;
  z-index: 111;
  background: #B2C8A1;
  color: #30594D;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 3px 12px 0 rgba(48,89,77,.11);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background .21s, color .13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #30594D;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(110deg,#EFEDE8 90%, #B2C8A1 100%);
  z-index: 999;
  padding: 34px 24px 24px 24px;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .39s cubic-bezier(.84,0,.33,1), opacity .29s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #30594D;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background .18s, color .13s;
  box-shadow: 0 2px 8px rgba(48,89,77,.14);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B2C8A1;
  color: #30594D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: #30594D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  padding: 15px 5px 13px 12px;
  transition: background .17s, color .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B2C8A1;
  color: #fff;
}

@media (max-width: 1060px) {
  header .container nav, header .container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1061px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(100deg,#EFEDE8 89%, #B2C8A1 100%);
  color: #30594D;
  border-top: 2px solid #B2C8A1;
  box-shadow: 0 -2px 14px 0 rgba(178,200,161,.13);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 32px 18px 18px 18px;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInBanner .75s .1s cubic-bezier(.4,0,.2,1) backwards;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 0;
  min-width: 150px;
}
.cookie-banner__actions {
  display: flex; gap: 14px;
}
.cookie-banner button {
  background: #30594D;
  color: #fff;
  border: none;
  border-radius: 21px;
  padding: 10px 20px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0;
  margin-right: 2px;
  transition: background .22s, color .13s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #30594D;
  border: 1px solid #30594D;
}
.cookie-banner button.cookie-settings {
  background: #B2C8A1;
  color: #30594D;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #B2C8A1;
  color: #30594D;
}
.cookie-banner button.cookie-reject:hover,
.cookie-banner button.cookie-reject:focus {
  background: #30594D;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner__actions { width: 100%; gap: 10px; }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed; left:0;top:0;right:0;bottom:0;
  z-index: 3000;
  background: rgba(48,89,77,.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .34s cubic-bezier(.62,0,.24,1) backwards;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(48,89,77,.20);
  padding: 40px 29px 30px 29px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}
.cookie-modal h2 {
  color: #30594D;
  font-size: 1.35rem;
}
.cookie-modal .cookie-prefs-list {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%;
}
.cookie-prefs-list .cookie-pref {
  display: flex; flex-direction: row; align-items: center; gap: 13px;
}
.cookie-prefs-list .cookie-pref label {
  font-size: 1.02rem;
  color: #30594D;
  font-weight: 500;
  cursor: pointer;
}
.cookie-prefs-list .cookie-toggle {
  accent-color: #30594D;
  width: 20px; height: 20px; margin-right: 4px;
}
.cookie-modal .cookie-essential {
  opacity: .6;
}
.cookie-modal .cookie-modal-actions {
  display: flex; gap: 14px;
  margin-top: 10px;
}
.cookie-modal button {
  background: #30594D;
  color: #fff;
  border-radius: 18px;
  padding: 7px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 500;
  border: none;
  margin-right: 8px;
  cursor: pointer;
  transition: background .22s, color .13s;
}
.cookie-modal button.close-cookie-modal {
  background: #fff;
  color: #30594D;
  border: 1px solid #30594D;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #B2C8A1;
  color: #30594D;
}
.cookie-modal button.close-cookie-modal:hover,
.cookie-modal button.close-cookie-modal:focus {
  background: #30594D;
  color: #fff;
}

/* ==== GENERIC UTILITY CLASSES ==== */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-24 { padding-top: 24px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ==== MEDIA QUERIES ==== */
@media (max-width: 1280px) {
  .container { max-width: 950px; }
  .content-wrapper { max-width: 890px; }
}
@media (max-width: 900px) {
  .container { max-width: 91vw; }
  .content-wrapper { max-width: 91vw; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-nav { gap: 11px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 600px) {
  header .container {
    min-height: 64px;
    padding: 8px 4px 8px 8px;
    gap: 16px;
  }
  .hero {
    padding-top: 20px; padding-bottom: 20px;
    margin-bottom: 30px;
    border-radius: 0 0 27px 27px;
  }
  .section { padding: 28px 5px; margin-bottom: 35px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.25rem; }
}

/* ==== ANIMATION UTILITIES ==== */
.fade-in {
  opacity: 0; animation: fadeInElem .60s .2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInElem { from { opacity: 0; } to { opacity: 1; } }

/* ==== MISC ==== */
::-webkit-scrollbar-thumb { background: #B2C8A1; border-radius: 8px; }
::-webkit-scrollbar-track { background: #EFEDE8; }
::-webkit-scrollbar { width: 10px; }

/* ==== IMPLEMENTATION OF CRITICAL SPACING/ALIGNMENT CLASSES ==== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* ==== END OF STYLES ==== */
