/* =========================================================
   CSS RESET & BASE STYLES – Mobile First Minimalist
   ========================================================= */
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;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #205D39;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205D39;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #476B85;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205D39;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.12rem; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 1.5em;
}
strong, b {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========= HEADER, NAVIGATION & MOBILE MENU ========= */
header {
  background: #fff;
  border-bottom: 1px solid #F0F1F2;
  position: sticky;
  top: 0;
  z-index: 990;
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #205D39;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
  transition: color 0.15s;
}
header nav a:hover, header nav a:focus {
  color: #476B85;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  background: none;
  color: #205D39;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(32,93,57,0.06);
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  min-width: 140px;
}
.btn-primary {
  background: #205D39;
  color: #fff;
  box-shadow: 0 2px 24px rgba(32,93,57,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: #476B85;
  color: #fff;
  box-shadow: 0 4px 32px rgba(71,107,133,0.13);
}
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #205D39;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.16s, background 0.18s;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7F4E9;
  color: #476B85;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1200;
  padding: 40px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.87,.04,.42,.91), opacity 0.25s;
  box-shadow: -6px 0 24px rgba(32,93,57,.06);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #205D39;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  outline: none;
  transition: color 0.15s, background 0.16s;
  border-radius: 40px;
  width: 44px;
  height: 44px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7F4E9;
  color: #476B85;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205D39;
  font-size: 1.27rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7F4E9;
  color: #476B85;
}

/* Show/Hide Mobile Nav Elements */
@media (max-width: 1000px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  background: #F7F4E9;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(32,93,57,0.08);
  margin-bottom: 50px;
  padding: 50px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.15rem;
  line-height: 1.13;
  color: #205D39;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 18px;
  color: #205D39;
}
.hero .btn-primary {
  margin-top: 8px;
  font-size: 1.1rem;
}

/* =========================================================
   FLEX PATTERNS & CARDS
   ========================================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
  width: 100%;
  justify-content: flex-start;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(32,93,57,0.07);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 230px;
  max-width: 260px;
  min-height: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  border: 1px solid #F0F1F2;
}
.feature-card img {
  height: 42px;
  width: 42px;
  margin-bottom: 4px;
}
.feature-card h3 {
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205D39;
  margin-bottom: 7px;
}
.feature-card p {
  color: #205D39;
  font-size: 1rem;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 4px 18px rgba(102,128,113,0.13);
  transform: translateY(-3px) scale(1.017);
  border-color: #EAE6DC;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,93,57,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(32,93,57,0.14);
  transform: translateY(-2px) scale(1.011);
}
.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;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(32,93,57,0.08);
  color: #174460;
  padding: 20px 26px;
  margin-bottom: 20px;
  max-width: 600px;
  border-left: 4px solid #476B85;
}
.testimonial-card p {
  color: #174460;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5em;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #205D39;
  opacity: .8;
  font-style: normal;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Others */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.services-list a {
  color: #476B85;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding-left: 2px;
  transition: color 0.13s;
}
.services-list a:hover, .services-list a:focus {
  color: #205D39;
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #174460;
  font-size: 1.08rem;
}
.contact-details img {
  height: 20px;
  width: 20px;
}

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

/* CTA Section */
.cta {
  align-items: center;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #F7F4E9;
  border-top: 1px solid #EAE6DC;
  padding: 32px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #205D39;
  font-size: 1rem;
  opacity: .8;
  transition: color 0.15s, opacity 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #476B85;
  opacity: 1;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
.footer-contact {
  color: #205D39;
  font-size: 0.98rem;
  opacity: .93;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 2px;
}
.footer-contact a {
  color: #476B85;
  font-weight: 500;
  text-decoration: none;
  padding-left: 2px;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #205D39;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer-social a img {
  height: 24px;
  opacity: .78;
  transition: opacity 0.12s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1202;
  background: #fff;
  border-top: 1px solid #EAE6DC;
  box-shadow: 0 -2px 16px rgba(23,68,96,0.06);
  padding: 22px 10px 18px 10px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: transform 0.36s cubic-bezier(.87,.04,.42,.91), opacity 0.18s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #205D39;
  font-size: 1rem;
  text-align: center;
  margin: 0 0 10px 0;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #205D39;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.16s, box-shadow 0.12s;
  box-shadow: 0 1px 8px rgba(32,93,57,0.07);
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #476B85;
}
.cookie-settings-btn {
  background: #F7F4E9;
  color: #205D39;
  border: 1px solid #205D39;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #205D39;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,93,57,0.12);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  z-index: 1401;
  min-width: 310px;
  max-width: 98vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(23,68,96,0.20);
  padding: 36px 34px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.87,.04,.42,.91), opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F7F4E9;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  color: #205D39;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-right: 13px;
}
.cookie-toggle {
  min-width: 44px;
  height: 24px;
  appearance: none;
  border-radius: 12px;
  background: #EAE6DC;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #205D39;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(32,93,57,0.13);
  transition: left 0.13s, background 0.13s;
}
.cookie-toggle:checked:before {
  left: 23px;
  background: #fff;
}
/* Essential cookies always enabled style */
.cookie-category .essential {
  color: #476B85;
  font-size: 0.98rem;
  opacity: .7;
}
.cookie-modal-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* =========================================================
   RESPONSIVENESS
   ========================================================= */
@media (max-width: 900px) {
  .feature-grid,
  .card-container,
  .content-grid {
    gap: 16px;
  }
  .feature-card, .card {
    max-width: 100%;
    flex: 1 1 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero {
    padding: 34px 0 24px 0;
  }
  section {
    padding: 26px 7px;
    margin-bottom: 40px;
  }
  .feature-card, .card {
    padding: 20px 10px;
    border-radius: 13px;
    min-height: 120px;
  }
  .container {
    padding: 0 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
  .hero .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width:510px) {
  h1 {font-size: 1.33rem;}
  h2 {font-size: 1.07rem;}
  .hero {border-radius:12px;}
  .feature-card, .card {
    border-radius: 9px;
    padding: 14px 5px;
  }
  .testimonial-card {
    padding: 14px 9px;
    border-radius: 9px;
  }
  .cookie-modal {
    padding: 21px 6px 19px 6px;
    min-width: 0;
  }
}

/* ============= Misc Spacing/Utility ============= */
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* ============= Accessibility ============= */
:focus {
  outline: 2px solid #476B85 !important;
  outline-offset: 1px;
}
::-webkit-input-placeholder { color: #93a8a5; }
::-moz-placeholder { color: #93a8a5; }
:-ms-input-placeholder { color: #93a8a5; }
::placeholder { color: #93a8a5; }

/* ============= Animations ============= */
@media (prefers-reduced-motion: no-preference) {
  .feature-card, .card, .btn, .testimonial-card {
    transition: box-shadow .19s, transform .18s, background .16s, color .16s, border-color .13s;
  }
}
/* Hide scrollbars for mobile-menu if needed */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
