/* === 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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAF5;
  color: #23524B;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #23524B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8A731B;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #23524B;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem; /* 20px */
}

p, ul, li {
  font-size: 1rem; /* 16px */
}
strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; margin-bottom: 32px; }
  h2 { font-size: 2.25rem; margin-bottom: 24px; }
}

/* === LAYOUT HELPERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(35, 82, 75, 0.07);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FAFAF5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35, 82, 75, 0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 240px;
  border: 2.5px solid #E4E9E1;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,82,75,0.14);
  border-color: #8A731B;
  transform: translateY(-4px) scale(1.02);
}

.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: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FAFAF5;
  border-radius: 16px;
  border: 2px solid #B39B62;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 600px;
  box-shadow: 0 4px 18px rgba(35, 82, 75, 0.10);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(35,82,75,0.14);
  border-color: #23524B;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.075rem;
  color: #333;
  line-height: 1.46;
  margin-bottom: 0;
  quotes: "\201E""\201C""\201E""\201C";
  position: relative;
  padding-left: 22px;
}
.testimonial-card blockquote:before {
  content: '\201E';
  font-size: 2rem;
  color: #8A731B;
  position: absolute;
  left: 0;
  top: -2px;
}
.testimonial-card p {
  color: #23524B;
  font-weight: 600;
}

/* == Feature item == */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAV === */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(35, 82, 75, 0.09);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  color: #23524B;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.015em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B39B62;
  color: #fff;
}
.main-nav .btn-primary {
  margin-left: 10px;
}

/* === BUTTONS === */
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  background: #23524B;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(35,82,75,0.15);
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s, transform 0.12s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #8A731B;
  color: #fff !important;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 18px rgba(35,82,75,0.19);
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background-color: #B39B62;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.17s, box-shadow 0.19s, color 0.14s;
  box-shadow: 0 1px 4px rgba(35,82,75,0.11);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #23524B;
  color: #fff;
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  padding: 8px;
  color: #23524B;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 31;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #8A731B;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
  padding-left: 0;
  padding-right: 0;
  transition: transform 0.33s cubic-bezier(.8,.44,.27,1.16);
  transform: translateX(100vw);
  box-shadow: 0 8px 48px rgba(35,82,75, 0.11);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.32s cubic-bezier(.77,.22,.33,1.06);
}
@keyframes slideInMenu {
  from { transform: translateX(100vw); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #23524B;
  z-index: 100;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8A731B;
  outline: 2px solid #B39B62;
  border-radius: 8px;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 56px 0 0 0;
  align-items: flex-start;
  height: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #23524B;
  background: none;
  padding: 18px 32px 14px 32px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B39B62;
  color: #fff;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
}

/* === SECTIONS WITH .feature-item, ICONS, ULs === */
ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.075rem;
  letter-spacing: 0.01em;
  color: #23524B;
  background: none;
}
ul img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: #E4E9E1;
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(35,82,75,0.07);
  margin-right: 5px;
  padding: 6px;
}

.text-section {
  margin-top: 12px;
  margin-bottom: 12px;
}
.text-section ul {
  margin-top: 10px;
  gap: 11px;
  padding-left: 12px;
}

/* === FOOTER === */
footer {
  background: #23524B;
  color: #fff;
  padding: 32px 0 24px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #B39B62;
  color: #fff;
}
footer p {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.08rem; }
  .main-nav, .footer-nav {
    gap: 10px;
    font-size: 0.99rem;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 0.99rem;
    padding: 14px;
  }
}

@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex: 1 1 320px;
    min-width: 320px;
  }
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23524B;
  color: #fff;
  z-index: 1200;
  box-shadow: 0 -8px 32px rgba(35, 82, 75, .16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 8px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: bannerAppear 0.5s cubic-bezier(.62,.09,.48,1.44);
}
@keyframes bannerAppear {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 8px;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.14s, color 0.16s;
}
.cookie-banner .accept {
  background: #8A731B;
  color: #FFF;
}
.cookie-banner .accept:hover {
  background: #B39B62;
}
.cookie-banner .reject {
  background: #B39B62;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #23524B;
  color: #B39B62;
}
.cookie-banner .settings {
  background: transparent;
  color: #B39B62;
  border: 1.5px solid #B39B62;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FAFAF5;
  color: #23524B;
  border-color: #8A731B;
}
@media (max-width: 600px) {
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(35, 82, 75, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #FFFFFF;
  color: #23524B;
  border-radius: 18px;
  padding: 36px 26px 28px;
  box-shadow: 0 12px 50px 0 rgba(35, 82, 75, 0.18);
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.33s cubic-bezier(.77,.21,.32,1.13);
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(48px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  color: #23524B;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: #8A731B;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-category label {
  flex: 1 1 40px;
  font-size: 1.025rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #8A731B;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}

/* Always ON badge */
.cookie-category .badge {
  margin-left: 8px;
  background: #8A731B;
  color: #fff;
  font-size: 0.98em;
  padding: 2px 8px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* === MISCELLANEOUS === */
::-webkit-input-placeholder { color: #B39B62; }
::-moz-placeholder { color: #B39B62; }
:-ms-input-placeholder { color: #B39B62; }
::placeholder { color: #B39B62; }

/* Error / Success Alerts */
.alert-success {
  background: #E4E9E1;
  color: #23524B;
  border-left: 4px solid #8A731B;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Section/Element Spacing */
section, .section {
  margin-bottom: 60px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 38px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* List links */
ul li a {
  color: #23524B;
  text-decoration: underline;
  padding: 2px 5px;
  border-radius: 5px;
  transition: background 0.11s, color 0.16s;
}
ul li a:hover {
  background: #E4E9E1;
  color: #8A731B;
}
/* Visual geometric deco markers for geometric_structured */
h2:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  width: 24px;
  height: 6px;
  background: #B39B62;
  border-radius: 3px;
  box-shadow: 12px 0 0 0 #8A731B;
}
@media (max-width: 600px) {
  h2:after { display: none; }
}
/* Stylized form fields, if any present in future */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid #B39B62;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: #FAFAF5;
  color: #23524B;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #23524B;
}

/* === GEOMETRIC STRUCTURAL ACCENTS === */
.card, .testimonial-card, .section, .content-wrapper, .btn-primary, .btn-secondary {
  /* add geometric accents and angular corners */
  border-radius: 0 18px 0 18px;
}

/* -- Utility spacing classes for geometric layout, if needed -- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* --- END --- */
