/* -----------------------------------------------------
   CSS RESET & BASELINE NORMALIZATION
----------------------------------------------------- */
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  box-sizing: border-box;
  background: #FFFDF5;
  color: #2D4739;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 8px;
  border: 1px solid #AEC29B;
  font-size: 16px;
  font-family: inherit;
  background: #FFFDF5;
}
th {
  font-weight: 600;
  background: #F6F6EF;
}

blockquote {
  color: #435844;
  border-left: 4px solid #AEC29B;
  padding-left: 20px;
  font-style: italic;
  margin: 16px 0;
}

/* -----------------------------------------------------
   BRAND FONTS & TYPOGRAPHY 
----------------------------------------------------- */
@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', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2D4739;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

p, li, a, span, table, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2D4739;
}
p {
  margin-bottom: 18px;
}

strong {
  font-weight: 600;
  color: #26402D;
}

/* -----------------------------------------------------
   CONTAINER & FLEX LAYOUTS
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF5;
  border-radius: 40px 40px 60px 20px / 45px 35px 40px 28px;
  box-shadow: 0 2px 12px 0 rgba(46,49,39,0.07);
  border: 1.5px solid #AEC29B;
  position: relative;
  /* Soft organic shape effect */
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  background: #F6F6EF;
  border-radius: 26px 34px 38px 20px/30px 28px 35px 26px;
  box-shadow: 0 1.5px 8px 0 rgba(46,49,39,0.06);
  border: 1.2px solid #AEC29B;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 28px -4px rgba(46,49,39,0.15);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
}
.text-image-section .text-block,
.text-image-section .image-block {
  flex: 1 1 320px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6EF;
  border-radius: 30px 20px 34px 28px/28px 36px 25px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1.2px 7px 0 rgba(46,49,39,0.09);
  border: 1.2px solid #AEC29B;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 16px 0 rgba(46,49,39,0.14);
  transform: scale(1.012);
}
.testimonial-card p {
  flex: 1;
  color: #2D4739;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #728165;
  font-size: 1rem;
  font-style: italic;
}

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

.confirmation-message,
.next-steps-info {
  padding: 18px 20px;
  margin-bottom: 20px;
  background: #F6F6EF;
  border-radius: 24px 20px 30px 18px/18px 28px 20px 16px;
  box-shadow: 0 1px 4px 0 rgba(46,49,39,0.08);
  border: 1.2px solid #AEC29B;
}

.map-placeholder {
  background: #F6F6EF;
  color: #2D4739;
  font-style: italic;
  border-radius: 14px 22px 19px 17px/17px 18px 13px 20px;
  min-height: 110px;
}

.footer-brand img {
  height: 56px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.social-links a img {
  width: 28px; height: 28px;
  transition: filter 0.2s;
}
.social-links a:hover img {
  filter: brightness(0.4) sepia(0.8) hue-rotate(38deg) saturate(2.5);
}

/******************************
   HEADER & NAVIGATION
 ******************************/
header {
  background: #FFFDF5;
  border-bottom: 1.5px solid #AEC29B;
  box-shadow: 0 0.5px 8px 0 rgba(46,49,39,0.04);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #26402D;
  padding: 7px 0 7px 0;
  border-radius: 6px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: #FFFDF5;
  background: #AEC29B;
}
header nav a.button.primary {
  color: #FFFDF5 !important;
  background: #2D4739;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 1.6px 8px 0 rgba(46,49,39,0.07);
  transition: box-shadow 0.2s, background 0.16s, color 0.16s;
}
header nav a.button.primary:hover,
header nav a.button.primary:focus {
  background: #AEC29B;
  color: #2D4739 !important;
  box-shadow: 0 4px 14px 0 rgba(46,49,39,0.13);
}

/* Burger button - mobile only */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2D4739;
  font-size: 2.6rem;
  padding: 4px 12px 4px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
  margin-left: 10px;
  line-height: 1;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #AEC29B;
  color: #FFFDF5;
  outline: none;
}

/******************************
   MOBILE MENU
 ******************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,71,57,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.63,.05,.2,1.03);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #FFFDF5;
  padding: 16px 20px 12px 20px;
  margin-top: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 10px;
  z-index: 250;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #AEC29B;
  color: #2D4739;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  color: #FFFDF5;
  padding: 8px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  margin-right: 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #AEC29B;
  color: #2D4739;
}

@media (max-width: 1024px) {
  header nav {
    gap: 16px;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    margin-bottom: 34px;
    padding: 25px 5px;
    border-radius: 24px 30px 32px 16px/14px 20px 25px 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 550px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.08rem; }
  .footer-brand img { height: 35px; }
}

/******************************
   BUTTONS & INTERACTIONS
 ******************************/
.button,
.button.primary,
.button.small {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 10px 28px;
  background: #2D4739;
  color: #FFFDF5 !important;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 1.4px 8px 0 rgba(46,49,39,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  vertical-align: middle;
}
.button.primary {
  background: #2D4739;
  color: #FFFDF5 !important;
}
.button.small {
  font-size: 1rem;
  padding: 7px 20px;
}
.button:hover, .button:focus,
.button.primary:hover, .button.primary:focus,
.button.small:hover, .button.small:focus {
  background: #AEC29B;
  color: #2D4739 !important;
  box-shadow: 0 6px 22px 0 rgba(46,49,39,0.18);
  transform: translateY(-1px) scale(1.03);
}
a.button {
  text-align: center;
  text-decoration: none;
}

/******************************
   LISTS, UL, OL
 ******************************/
ul,
ol {
  margin: 0 0 16px 22px;
  list-style: disc outside;
  font-size: 1rem;
  color: #325A35;
}
ul li,
ol li {
  margin-bottom: 10px;
  padding-left: 2px;
  line-height: 1.5;
}

/******************************
   FOOTER
 ******************************/
footer {
  background: #2D4739;
  color: #FFFDF5;
  padding: 42px 0 26px 0;
  font-size: 1rem;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #FFFDF5;
  opacity: 0.96;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color 0.17s, opacity 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #AEC29B;
  opacity: 1;
}
footer strong {
  color: #AEC29B;
  font-weight: 700;
}
footer a {
  color: #AEC29B;
  text-decoration: underline;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #FFFDF5;
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 550px) {
  footer {
    padding: 22px 0 12px 0;
    font-size: 0.97rem;
  }
  footer .content-wrapper {
    gap: 14px;
  }
}

/******************************
   COOKIE CONSENT BANNER
 ******************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFFDF5;
  color: #2D4739;
  border-top: 2px solid #AEC29B;
  box-shadow: 0 -3px 18px -4px rgba(46,49,39,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  padding: 24px 22px;
  font-size: 1.03rem;
  gap: 32px;
  flex-wrap: wrap;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.8,.34,.17,.88), opacity 0.25s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  color: #2D4739;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 23px;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.2s, transform 0.16s;
}
.cookie-banner .accept {
  background: #AEC29B;
  color: #2D4739;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #2D4739;
  color: #FFFDF5;
}
.cookie-banner .reject {
  background: #E1E5B7;
  color: #26402D;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #C1CE98;
  color: #26402D;
}
.cookie-banner .settings {
  background: transparent;
  color: #325A35;
  border: 1.3px solid #AEC29B;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #AEC29B;
  color: #2D4739;
}

@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    align-items: stretch;
    gap: 10px;
  }
}

/******************************
   COOKIE SETTINGS MODAL
 ******************************/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46,71,57,0.63);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #FFFDF5;
  border-radius: 28px 40px 36px 24px/21px 30px 32px 18px;
  box-shadow: 0 13px 32px -6px rgba(46,49,39,0.13);
  padding: 38px 32px 24px 32px;
  min-width: 290px;
  max-width: 94vw;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 410;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #2D4739;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6eedf;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #AEC29B;
  width: 1.2em;
  height: 1.2em;
  margin-right: 8px;
}
.cookie-modal .essential {
  color: #325A35;
  font-weight: 600;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.cookie-modal button {
  font-family: inherit;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 26px;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s, transform 0.16s;
}
.cookie-modal .save {
  background: #2D4739;
  color: #FFFDF5;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: #AEC29B;
  color: #2D4739;
}
.cookie-modal .cancel {
  background: #E1E5B7;
  color: #2D4739;
}
.cookie-modal .cancel:hover,
.cookie-modal .cancel:focus {
  background: #C1CE98;
  color: #26402D;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 9px; right: 12px;
  font-size: 1.7rem;
  color: #2D4739;
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  padding: 3px 10px;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #AEC29B;
  color: #FFFDF5;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 6vw 17px 6vw;
    min-width: 0;
    gap: 16px;
  }
}

/******************************
   ORGANIC DECORATIVE TEXTURES
 ******************************/
.section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -14px; right: -32px;
  width: 96px; height: 38px;
  background: radial-gradient(ellipse 60% 100% at top left, #AEC29B55 40%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.section:before {
  content: "";
  display: block;
  position: absolute;
  top: -18px; left: -30px;
  width: 45px; height: 80px;
  background: radial-gradient(ellipse 100% 60% at bottom right, #2D473933 38%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.card:before {
  content: "";
  display: block;
  position: absolute;
  left: 10px; bottom: 8px;
  width: 20px; height: 16px;
  z-index: 1;
  background: radial-gradient(circle at left top, #AEC29B33 55%, transparent 95%);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  right: 13px; top: 12px;
  width: 18px; height: 24px;
  z-index: 1;
  background: radial-gradient(ellipse 60% 80% at right top, #2D473922 44%, transparent 90%);
  pointer-events: none;
}

/******************************
   TABLE CUSTOMIZATION
 ******************************/
table th, table td {
  border-radius: 10px 16px 12px 18px/12px 10px 10px 15px;
  background: #F6F6EF;
  border: 1.5px solid #AEC29B;
}

/******************************
   ADDITIONAL STRUCTURE CLASSES (if used)
 ******************************/
.team-profiles ul {
  margin-bottom: 0;
}

/******************************
   VISUAL HIERARCHY SPACING & GAPS
 ******************************/
.spacing-8 { margin-bottom: 8px !important; }
.spacing-16 { margin-bottom: 16px !important; }
.spacing-24 { margin-bottom: 24px !important; }
.spacing-32 { margin-bottom: 32px !important; }
.spacing-40 { margin-bottom: 40px !important; }

/******************************
   FOCUS OUTLINE FOR ACCESSIBILITY
 ******************************/
:focus {
  outline: 2px solid #AEC29B !important;
  outline-offset: 2px;
}

/******************************
   SCROLLBAR STYLING
 ******************************/
body::-webkit-scrollbar {
  width: 12px;
  background: #ECEADF;
}
body::-webkit-scrollbar-thumb {
  background: #AEC29B;
  border-radius: 12px;
}
body {
  scrollbar-color: #AEC29B #ECEADF;
}

/******************************
   CUSTOM UTILITIES
 ******************************/
.sr-only {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==================== END OF CSS ==================== */
