/* RESET AND 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F6F2EC;
  color: #25374B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  outline: none;
  border-radius: 0;
}
a {
  color: #25374B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8DB769;
  outline: none;
}

ul, ol {
  padding-left: 1.2em;
  margin-top: 12px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 10px;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #25374B;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, span, li {
  color: #32445b;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
}
section ul li strong {
  color: #25374B;
}

/* SECTIONS AND CARDS */
.section {
  padding: 40px 20px;
  margin-bottom: 60px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(37,55,75,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(37,55,75,0.10);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(37,55,75,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f6f2ec;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(37,55,75,0.06);
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
}
.testimonial-card p {
  color: #25374B;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #25374B;
  font-size: 1rem;
  font-weight: 600;
}

/* HERO ACTION BUTTON STYLES */
.cta {
  display: inline-block;
  font-family: 'Montserrat',Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 13px 36px;
  margin-top: 10px;
  font-size: 1.18rem;
  box-shadow: 0 2px 10px rgba(37,55,75,0.08);
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  outline: none;
}
.cta.primary {
  background: #25374B;
  color: #fff;
  border: 2px solid #25374B;
}
.cta.primary:hover, .cta.primary:focus {
  background: #182331;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,55,75,0.13);
}
.cta.secondary {
  background: #fff;
  color: #25374B;
  border: 2px solid #8DB769;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #8DB769;
  color: #fff;
  border-color: #8DB769;
  box-shadow: 0 4px 18px rgba(141,183,105,0.10);
}


/* NAV MENUS */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 40;
  transition: box-shadow 0.22s;
  box-shadow: 0 2px 16px rgba(37,55,75,0.04);
  display: flex;
  flex-direction: column;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  padding: 14px 0;
}
.main-nav img {
  height: 38px;
  margin-right: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 1.07rem;
  transition: background 0.18s, color 0.18s;
  color: #25374B;
}
.main-nav a:hover, .main-nav a.active {
  background: #8DB769;
  color: #fff;
}
.main-nav .cta {
  margin-left: auto;
  margin-right: 0;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.05rem;
  color: #25374B;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 120;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e2e6ea;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #25374B;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.6,.05,.15,.95);
  display: flex;
  flex-direction: column;
  padding: 0 0 40px 0;
  box-shadow: 0 2px 24px rgba(37,55,75,0.22);
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 22px 14px auto;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8DB769;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 48px;
  padding-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.03em;
  padding: 9px 0;
  transition: color 0.16s;
  min-width: 180px;
  margin-bottom: 6px;
}
.mobile-nav a.active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #8DB769;
}

/* Responsive Nav */
@media (max-width: 1024px) {
  .main-nav .cta {
    margin-left: 0;
    order: 1;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav img {
    margin-right: 12px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* LAYOUTS AND SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(37,55,75,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* THANK YOU LINKS */
.thank-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  font-size: 1.1rem;
  margin-top: 16px;
  flex-wrap: wrap;
}
.thank-links a {
  color: #25374B;
  padding: 2px 8px;
  border-radius: 10px;
}
.thank-links a:hover {
  background: #e4ead8;
  color: #8DB769;
}

/* FOOTER */
footer {
  background: #25374B;
  color: #fff;
  padding: 40px 0 20px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav, .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-nav a, .footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  opacity: 0.92;
  padding: 3px 0;
}
.footer-nav a:hover, .footer-menu a:hover {
  color: #8DB769;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  background-color: #e5e9ef;
  opacity: 0.97;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}

/* FORM ELEMENTS (future proof, even if not shown here) */
input, textarea, select {
  padding: 12px 13px;
  border: 1px solid #b7bac6;
  border-radius: 6px;
  font-size: 1rem;
  background: #f6f2ec;
  color: #25374B;
  margin-bottom: 20px;
  transition: border-color 0.17s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #25374B;
  background: #fff;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ICON ALIGN */
ul li img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
  width: 20px;
}

/* MICRO INTERACTIONS */
.cta, .footer-menu a, .footer-nav a, .card, .testimonial-card, .main-nav a {
  transition: 
    background 0.20s cubic-bezier(.38,.13,.51,.99), 
    color 0.18s, 
    box-shadow 0.17s, 
    border-color 0.17s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(37,55,75,0.14);
}

/* VISUAL ELEMENTS - SHADOWS AND RADIUS */
.section, .card, .testimonial-card {
  box-shadow: 0 2px 12px rgba(37,55,75,0.07);
  border-radius: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  section, .section {
    padding: 32px 10px;
  }
  .container {
    padding: 0 10px;
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
    max-width: 100vw;
    gap: 0 !important;
  }
  section, .section {
    padding: 28px 0;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.42rem; margin-bottom: 13px; }
  h2 { font-size: 1.13rem; margin-bottom: 8px; }
  .cta, .cta.primary, .cta.secondary { font-size: 1.01rem; padding: 12px 22px; }
  .testimonials, .testimonial-card { font-size: 0.98rem; }
  .footer-contact {
    font-size: 0.93rem;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #25374B;
  color: #fff;
  padding: 24px 20px 22px 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 22px rgba(37,55,75,0.16);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}
.cookie-banner button {
  padding: 10px 18px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept {
  background: #8DB769;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #6b964a;
}
.cookie-banner .reject {
  background: #fff;
  color: #25374B;
  border: 1px solid #C0C7CE;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e2e6ea;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px solid #8DB769;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #8DB769;
  background: #f6f2ec;
}

/* COOKIE CONSENT MODAL (PREFERENCES) */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  background: rgba(37,55,75,.44);
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.17s linear;
}
.cookie-modal {
  max-width: 440px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(37,55,75,.22);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #25374B;
  animation: slideUp 0.23s cubic-bezier(.6,.05,.15,.95);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.09rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #8DB769;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  margin-left: 0;
}
.cookie-modal .essential-label {
  font-weight: 600;
  color: #25374B;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-buttons button {
  padding: 9px 18px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
.cookie-modal button.save {
  background: #25374B;
  color: #fff;
}
.cookie-modal button.save:hover {
  background: #182331;
}
.cookie-modal button.cancel {
  background: #e2e6ea;
  color: #25374B;
}
.cookie-modal button.cancel:hover {
  background: #f6f2ec;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #25374B;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .modal-close:hover {
  color: #8DB769;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 8vw 10px 8vw;
    max-width: 98vw;
    font-size: 0.97rem;
  }
}

/* UTILITIES */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.gap-24 {
  gap: 24px;
}
.gap-20 {
  gap: 20px;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Extra minor touch for accessibility focus */
a:focus, button:focus, .cta:focus {
  outline: 2px dotted #8DB769;
  outline-offset: 2px;
}

/* Hide visually (e.g., for accessibility skip links) */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* END OF CSS */
