/* RESET & BASE TYPOGRAPHY */
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;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #2A4D3E;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}

/* Font faces (loaded from Google Fonts if desired) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2A4D3E;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

p, ul, ol, li, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #344a3d;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #2A4D3E;
}

/* GENERAL SPACING / CONTAINERS / FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .content-wrapper { gap: 24px; }
}

.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px rgba(42, 77, 62, 0.05); }
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F9EBE2;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(42,77,62,0.08);
  margin-bottom: 20px;
  min-width: 240px;
  color: #2A4D3E;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(42,77,62,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ul {
  list-style: none;
  margin: 0; padding: 0;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
ul li img {
  width: 24px; height: 24px; object-fit: contain;
}

/* BUTTONS & CTA */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  background: #2A4D3E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 28px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(42,77,62,0.09);
  transition: background .2s, box-shadow .2s, color .2s, transform .15s;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: none;
}
.cta.primary {
  background: #2A4D3E;
  color: #fff!important;
}
.cta:hover, .cta.primary:hover, .cta:focus {
  background: #92B6A5;
  color: #2A4D3E!important;
  box-shadow: 0 6px 24px rgba(42,77,62,0.13);
  transform: translateY(-2px);
  outline: none;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px 14px 20px;
  min-height: 64px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #2A4D3E;
  text-decoration: none;
  padding: 4px 14px;
  border-radius: 16px;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9EBE2;
  color: #2A4D3E;
}

/* Hide burger and mobile menu on desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #2A4D3E;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 100;
  padding: 8px 12px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,77,62,0.98);
  color: #fff;
  z-index: 101;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.33,1,.68,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 60px rgba(42,77,62,0.20);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 28px 8px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 0 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  border: none;
  transition: color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #92B6A5;
}

@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta.primary {
    font-size: 1rem;
    padding: 10px 22px;
  }
}
/* On mobile: container col, content-stack, menu visible */
@media (max-width: 700px) {
  .container { max-width: 100vw; }
  .content-wrapper, .text-section {
    gap: 12px;
    padding: 0;
  }
  section { padding: 32px 0 0 0; }
}

/* FOOTER */
footer {
  padding: 0 0 24px 0;
  background: #fff;
  border-top: 1px solid #ECECEC;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 20px 10px 20px;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1 1 160px;
}
footer .footer-nav a {
  color: #2A4D3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  padding: 4px 8px;
  transition: background .1s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  background: #F9EBE2;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1em;
  color: #344a3d;
}
footer a img {
  height: 36px;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 10px 12px 10px;
  }
  footer a img {
    align-self: flex-start;
  }
}

/* TABLE STYLES (price list) */
table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(42,77,62,0.04);
}
th, td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #F9EBE2;
}
th {
  background: #F9EBE2;
  color: #2A4D3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}

/* LINKS */
a {
  color: #2A4D3E;
  text-decoration: underline;
  transition: color .2s;
}
a:hover, a:focus {
  color: #92B6A5;
  outline: none;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* FORMS (if any) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border: 1px solid #BCCFC5;
  border-radius: 6px;
  margin-bottom: 12px;
  outline: none;
  transition: border .14s;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2A4D3E;
}

/* MICRO INTERACTIONS & ANIMATIONS */
button, .cta, .cta.primary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
}

/* MICRO SHADOWS ON HOVER */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .19s, transform .13s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 4px 18px rgba(42, 77, 62, 0.13);
  transform: translateY(-2px);
}

/* RESPONSIVE FLEX DIRECTION FOR TEXT-IMAGE-SECTIONS */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* RESPONSIVE STACKING FOR FLEX GRIDS */
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column!important;
    gap: 24px!important;
    justify-content: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2A4D3E;
  color: #fff;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -2px 32px rgba(42,77,62,0.10);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: slideInBanner .48s cubic-bezier(.33,1,.68,1);
}
@keyframes slideInBanner {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner button, .cookie-consent-banner .cookie-settings-btn {
  padding: 8px 22px;
  border-radius: 22px;
  border: none;
  background: #92B6A5;
  color: #2A4D3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 10px;
  margin-top: 7px;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-consent-banner button.accept {
  background: #fff;
  color: #2A4D3E;
  border: 1.5px solid #2A4D3E;
}
.cookie-consent-banner button.reject {
  background: #F9EBE2;
  color: #2A4D3E;
  border: 1px solid #92B6A5;
}
.cookie-consent-banner button:hover {
  background: #2A4D3E;
  color: #fff;
}

/* Cookie Preference Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(42,77,62,0.48);
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .24s cubic-bezier(.33,1,.68,1);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #2A4D3E;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(42,77,62,0.13);
  padding: 36px 26px 22px 26px;
  max-width: 430px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalContentSlideIn .35s cubic-bezier(.33,1,.68,1);
}
@keyframes modalContentSlideIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 7px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-modal-content input[type=checkbox] {
  width: 17px; height: 17px;
  accent-color: #92B6A5;
  margin-right: 5px;
}
.cookie-modal-content .modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-content .modal-actions button {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 21px;
  border: none;
  cursor: pointer;
  background: #92B6A5;
  color: #2A4D3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .13s;
}
.cookie-modal-content .modal-actions button.save {
  background: #2A4D3E;
  color: #fff;
}
.cookie-modal-content .modal-actions button.save:hover {
  background: #344a3d;
}
.cookie-modal-content .modal-actions button.cancel {
  background: #ECECEC;
  color: #2A4D3E;
}

/* -- End Cookie Consent Banner -- */

/* VISUAL ENHANCEMENTS & MINIMAL SHADOWS */
section, .card, .testimonial-card {
  box-shadow: 0 2px 14px rgba(42,77,62,0.03);
}

/* UTILITIES */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.hide { display: none!important; }

/* SCROLLBAR & INTERACTIONS */
::-webkit-scrollbar {
  width: 8px;
  background: #F9EBE2;
}
::-webkit-scrollbar-thumb {
  background: #E0E0E0;
  border-radius: 4px;
}

/* FOCUS RING FOR ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #92B6A5;
  outline-offset: 1px;
}

/* SECTION SPECIFICS (if card-grid/section etc. get used) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* RESPONSIVE FONTS */
@media (max-width: 700px) {
 h1 { font-size: 2rem; }
 h2 { font-size: 1.22rem; }
 h3 { font-size: 1rem; }
 body { font-size: 0.98rem; }
 .cta, .cta.primary { font-size: 1rem; padding: 11px 20px; }
}

/* ENSURE MINIMALIST WHITESPACE */
section, .section {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(146,182,165,0.07);
}

/* MAKE SURE ELEMENTS NEVER OVERLAP: Adequate vertical margins */
section + section, .section + .section {
  margin-top: 32px;
}

/* Remove list bullets in minimal style */
ul {
  list-style: none;
}

/* Hide mobile menu on desktop, only show for < 800px */
@media (min-width: 801px) {
  .mobile-menu {
    display: none !important;
  }
}

/* PRINT (for price tables etc. if needed) */
@media print {
  nav, .main-nav, .footer-nav, .mobile-menu, .cookie-consent-banner {display:none!important;}
  section, .container, body, html {box-shadow:none!important; margin:0!important; padding:0!important;}
}

/* END OF CSS */
