/* =============================
   CSS RESET & NORMALIZE
============================= */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  color: #2C3E4F;
  background: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button { cursor: pointer; }

/* =============================
   BRAND TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2C3E4F;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 30px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  font-weight: 600;
}
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2C3E4F;
  max-width: 760px;
}
strong {
  font-weight: 700;
  color: #2C3E4F;
}

/* =============================
   CONTAINER & LAYOUT
============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,79,0.06);
  padding: 32px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(44,62,79,0.16);
  transform: translateY(-4px) scale(1.015);
}

.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: 8px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(44,62,79,0.08);
  font-size: 1.08rem;
  transition: box-shadow 0.22s;
  border: 1px solid #F3EEE5;
}
.testimonial-card p {
  color: #222;
}
.testimonial-card strong {
  letter-spacing: 0.01em;
  color: #2C3E4F;
  font-size: .98rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(44,62,79,0.20);
}

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

/* Feature grid for the / */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #F3EEE5;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,79,.08);
  padding: 28px 18px 18px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  opacity: .92;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(44,62,79,0.21);
  transform: translateY(-5px) scale(1.018);
}
/* =============================
   HEADER & NAVIGATION
============================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 16px rgba(44,62,79,.05);
  position: sticky;
  top: 0;
  z-index: 120;
  padding-top: 8px;
  padding-bottom: 8px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
header nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #2C3E4F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: .88;
  transition: background .13s, color .18s;
}
header nav a:hover,
header nav a:focus {
  background: #F3EEE5;
  color: #2C3E4F;
  opacity: 1;
}
header a.cta-button {
  margin-left: 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}

/*
    MOBILE BURGER MENU
 */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #2C3E4F;
  padding: 5px 12px;
  border-radius: 8px;
  border: none;
  z-index: 201;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F3EEE5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 32px rgba(44,62,79,0.10);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #2C3E4F;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 26px 8px 0;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 202;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F3EEE5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 36px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #2C3E4F;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  transition: background .15s, color .16s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F3EEE5;
  color: #2C3E4F;
}

/* Hide nav and show burger on mobile */
@media (max-width: 990px) {
  header nav, header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================
   BUTTONS & CTA
============================= */
.cta-button {
  background: #2C3E4F;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 24px;
  display: inline-block;
  border: none;
  box-shadow: 0 2px 8px rgba(44,62,79,0.06);
  outline: none;
  transition: background .18s, color .18s, box-shadow 0.21s, transform .18s;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.cta-button:focus,
.cta-button:hover {
  background: #9DB670;
  color: #2C3E4F;
  box-shadow: 0 4px 22px 0 rgba(44,62,79,0.17);
  transform: translateY(-2px) scale(1.025);
}

button, .button {
  background: #2C3E4F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  padding: 10px 30px;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow 0.18s;
}
button:focus,
button:hover,
.button:focus,
.button:hover {
  background: #9DB670;
  color: #2C3E4F;
  box-shadow: 0 3px 14px 0 rgba(157,182,112,0.09);
}

/* =============================
   SECTIONS, UL, LI, SPACING
============================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(44,62,79,0.07);
}
@media (max-width:680px) {
  section {
    padding: 26px 6px;
    margin-bottom: 32px;
    border-radius: 0;
  }
}
ul, ol {
  margin-left: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  padding-left: 0.5em;
  line-height: 1.65;
}
ul li strong, ol li strong {
  color: #2C3E4F;
}


/* =============================
   FOOTER
============================= */
footer {
  background: #F3EEE5;
  padding: 44px 0 20px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 12px 0 12px 0;
  justify-content: center;
}
footer nav a {
  color: #2C3E4F;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: .9;
  transition: background .14s, color .14s;
}
footer nav a:hover,
footer nav a:focus {
  color: #9DB670;
  background: #fff;
}
footer img {
  height: 42px;
  margin-bottom: 10px;
}
footer p {
  font-size: 0.97rem;
  color: #2C3E4F;
  line-height: 1.6;
  text-align: center;
}
footer a {
  color: #2C3E4F;
  opacity: .91;
  text-decoration: underline dotted 1.5px #9DB670;
  transition: color .15s;
}
footer a:hover {
  color: #9DB670;
}

/* =============================
   RESPONSIVE LAYOUT
============================= */
@media (max-width: 990px) {
  .feature-grid {
    gap: 20px;
    justify-content: center;
  }
  .feature-grid > div {
    min-width: calc(50vw - 40px);
    max-width: 90vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  section {
    padding: 16px 4px;
  }
  .feature-grid > div {
    min-width: 90vw;
    max-width: 98vw;
    padding: 18px 8px 12px 8px;
  }
}

/* =============================
   TABLE
============================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
th, td {
  padding: 10px 14px;
  border-bottom: 1px solid #F3EEE5;
  text-align: left;
  font-size: 1rem;
  color: #2C3E4F;
}

/* =============================
   FORM ELEMENTS
============================= */
input, textarea, select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #F3EEE5;
  border: 1px solid #ddd;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3E4F;
  transition: border .14s, box-shadow .13s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2C3E4F;
  box-shadow: 0 2px 10px rgba(44,62,79,.08);
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2C3E4F;
}

/* =============================
   ICONS & IMAGES
============================= */
ul li img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.9;
}

/* =============================
   MICRO-INTERACTIONS (hover/focus, subtle transitions)
============================= */
a, button, .cta-button, .card, .feature-grid > div, .testimonial-card {
  transition: background 0.19s, color 0.17s, box-shadow 0.22s, transform 0.17s, opacity 0.13s;
}

/* =============================
   COOKIE CONSENT BANNER + MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #2C3E4F;
  box-shadow: 0 -2px 18px rgba(44,62,79,0.08);
  border-top: 1.5px solid #F3EEE5;
  z-index: 1002;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 36px 18px 24px;
  min-height: 75px;
  font-size: 1rem;
  animation: cookie-slide-in 0.38s cubic-bezier(.53,.09,.33,1) 1;
}
@keyframes cookie-slide-in {
  0% {transform: translateY(100%);} 100% {transform: translateY(0);}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button, .cookie-banner .button {
  background: #2C3E4F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  border: none;
  padding: 8px 22px;
  font-size: 1rem;
  margin: 0;
  transition: background .14s, color .14s;
}
.cookie-banner button.cookie-settings {
  background: #9DB670;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #2C3E4F;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #2C3E4F;
  border: 1px solid #2C3E4F;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #F3EEE5;
}
.cookie-banner button.accept {
  background: #2C3E4F;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #9DB670;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px 6px 14px 10px;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,62,79,0.16);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fade-in 0.23s forwards;
}
@keyframes fade-in {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #F3EEE5;
  box-shadow: 0 8px 40px 0 rgba(44,62,79,0.20);
  max-width: 95vw;
  width: 440px;
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1101;
  position: relative;
  animation: modal-pop-in 0.32s cubic-bezier(.38,1.57,.36,1.02);
}
.cookie-modal h2 {
  font-size: 1.30rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #F3EEE5;
  border-radius: 12px;
  padding: 10px 14px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  margin: 0 8px 0 0;
  accent-color: #9DB670;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 12px;
  background: transparent;
  color: #2C3E4F;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #F3EEE5;
}
@keyframes modal-pop-in {
  0% {transform: scale(0.88); opacity: 0.6;} 100% {transform: scale(1); opacity:1;}
}
@media (max-width: 560px) {
  .cookie-modal {
    width: 98vw;
    padding: 18px 2vw 14px 2vw;
  }
}

/* =============================
   ACCESSIBILITY & HIDE
============================= */
.sr-only { /* for screen-reader only text */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================
   Utilities
============================= */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-0 { padding-top: 0 !important; }

/* =============================
   Print Styles
============================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #111; }
}

/* =============================
   END
============================= */
