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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #343D3F;
  background: #F5EFE4;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul,ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #7D9E7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #343D3F;
  text-decoration: underline;
}
hr {
  border: 0;
  height: 1px;
  background: #ded9cd;
  margin: 32px 0;
}

/* Container utility for layout */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #343D3F;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.22;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 16px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

p, li {
  font-size: 1rem; /* 16px */
  font-family: 'Roboto', Arial, sans-serif;
  color: #343D3F;
}
p {
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  .container { padding: 0 14px; }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #ffffffee;
  box-shadow: 0 2px 12px 0 rgba(52,61,63,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 20px;
}
.nav-bar img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  color: #343D3F;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5EFE4;
  color: #7D9E7C;
}

.cta-button {
  background: #7D9E7C;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin-left: 12px;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
  box-shadow: 0 2px 12px 0 rgba(52,61,63,0.07);
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #343D3F;
  color: #F5EFE4 !important;
  box-shadow: 0 4px 18px 0 rgba(52,61,63,0.08);
}

/* Hamburger Menu */
.mobile-menu-toggle {
  background: #F5EFE4;
  color: #343D3F;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 5px 12px;
  display: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ded9cd;
  outline: none;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fffffffa;
  box-shadow: 0 12px 24px 0 rgba(52,61,63,0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #ded9cd;
  color: #343D3F;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  margin: 24px 24px 0 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #7D9E7C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 32px;
  margin-top: 44px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #343D3F;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  padding: 13px 0;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5EFE4;
  color: #7D9E7C;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 851px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- SECTIONS AND LAYOUTS --- */
section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(52,61,63,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(52,61,63,0.04);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(52,61,63,0.10);
  transform: translateY(-6px) scale(1.03);
}

.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 {
  background: #F5EFE4;
  border-left: 5px solid #7D9E7C;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(52,61,63,0.05);
  max-width: 370px;
}
.testimonial-card p {
  color: #343D3F;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #343D3F;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  color: #7D9E7C;
  font-size: 1.2rem;
  letter-spacing: 2.5px;
}

/* Flex row for testimonials */
.content-wrapper > .testimonial-card {
  flex: 1 1 260px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 0 0;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1.5px solid #ded9cd;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px 18px 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 1rem;
  color: #343D3F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #7D9E7C;
}
.footer-contact {
  font-size: 0.95rem;
  color: #343D3F;
  margin-bottom: 8px;
}
.footer-legal {
  font-size: 0.92rem;
  color: #7D9E7C;
}
.footer-legal a {
  color: #7D9E7C;
  margin: 0 2px;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #343D3F;
  text-decoration: underline;
}

/* --- BUTTONS & INTERACTIONS --- */
button, .cta-button {
  outline: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* --- CARD SYSTEM --- */
.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  padding: 12px;
  border-bottom: 1px solid #ded9cd;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F5EFE4;
  color: #343D3F;
  font-weight: 600;
}

/* --- LISTS / ICON LISTS --- */
ul > li, ol > li {
  padding-left: 0;  
}
ul img, ol img {
  vertical-align: middle;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  margin-top: -3px;
}

/* --- UTILITIES / GENERAL SPACING --- */
.mt-0 { margin-top: 0!important; }
.mt-8 { margin-top: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mt-24 { margin-top: 24px!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #343D3F;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 20px 18px 20px;
  z-index: 1400;
  box-shadow: 0 -2px 16px 0 rgba(52,61,63,0.17);
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  animation: slideUp 0.4s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  border: none;
  margin: 0 10px;
  padding: 8px 22px;
  font-weight: 600;
  cursor: pointer;
  background: #7D9E7C;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px 0 rgba(125,158,124,0.02);
}
.cookie-banner .cookie-reject {
  background: #F5EFE4;
  color: #343D3F;
}
.cookie-banner .cookie-settings {
  background: #ded9cd;
  color: #343D3F;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #343D3F;
  color: #F5EFE4;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #7D9E7C;
  color: #fff;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #7D9E7C;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(52,61,63,0.65);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-content {
  background: #fff;
  color: #343D3F;
  padding: 38px 30px 28px 30px;
  border-radius: 18px;
  width: 100%;
  max-width: 425px;
  box-shadow: 0 6px 28px 0 rgba(52,61,63,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPop 0.35s cubic-bezier(.23,1.25,.32,1) forwards;
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #343D3F;
}
.cookie-category {
  padding: 12px 0;
  border-bottom: 1px solid #ded9cd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal-content label {
  font-weight: 500;
}
.cookie-toggle {
  margin-left: 10px;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #7D9E7C;
  border-radius: 14px;
  width: 38px;
  height: 22px;
  background: #ded9cd;
  position: relative;
  outline: none;
  transition: background 0.17s, border-color 0.17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #7D9E7C;
  border-color: #7D9E7C;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(.36,1.6,.58,1), background 0.2s;
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
  background: #F5EFE4;
}
.cookie-modal-actionbar {
  margin: 18px 0 0 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actionbar button {
  min-width: 105px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 950px) {
  .container {
    max-width: 95vw;
    padding: 0 14px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-contact { font-size: 0.88rem; }
}
@media (max-width: 700px) {
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links { flex-wrap: wrap; gap: 8px; }
  footer .container { padding: 22px 8px 11px 8px; }
}
@media (max-width: 600px) {
  .testimonial-card { max-width: 95vw; padding: 14px; }
  .section { padding: 24px 6px; margin-bottom: 38px; }
  .card { padding: 16px 8px; min-width: 170px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 30px 14px;
  }
  .cookie-modal-content {
    padding: 24px 5px 18px 5px;
    max-width: 97vw;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, .card, .card-content, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.22s, background 0.22s, color 0.17s, border-color 0.16s, transform 0.19s;
}

.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(52,61,63,0.12);
  transform: translateY(-3px) scale(1.016);
}

/* --- MISC --- */
::-webkit-input-placeholder {color: #7D9E7C; opacity: 1;}
::-moz-placeholder {color: #7D9E7C; opacity: 1;}
:-ms-input-placeholder {color: #7D9E7C; opacity: 1;}
::placeholder {color: #7D9E7C; opacity: 1;}

/**** END OF STYLE.CSS ****/
