/* 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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F6F7F9;
  color: #1D2940;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: #28A17B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #179667;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1D2940;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1D2940;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1D2940;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
p, li, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  color: #313A4D;
}
strong {
  font-weight: 700;
  color: #1D2940;
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(36,60,82,0.08);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* NAVBAR & HEADER */
header {
  background: linear-gradient(90deg, #1D2940 0%, #28A17B 100%);
  padding: 0;
  box-shadow: 0 2px 32px rgba(29, 41, 64, 0.04);
  position: relative;
  z-index: 1000;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
  gap: 24px;
}
header .logo img {
  height: 40px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  opacity: 0.95;
  transition: opacity 0.18s, color 0.18s;
  position: relative;
  padding: 8px 4px;
}
header nav ul li a:hover, header nav ul li a:focus {
  opacity: 1;
  color: #FFEB3B;
}
header .cta-btn {
  background: linear-gradient(90deg, #28A17B 0%, #32d8b3 100%);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(40,161,123,0.11);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
  margin-left: 16px;
  outline: none;
  display: inline-block;
  letter-spacing: 0.01em;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: linear-gradient(90deg, #179667 0%, #28A17B 80%);
  box-shadow: 0 4px 18px rgba(40,161,123,0.17);
  transform: translateY(-2px) scale(1.035);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #1D2940;
  border: none;
  font-size: 2rem;
  padding: 6px 22px 6px 10px;
  border-radius: 24px;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 12px rgba(36,60,82,0.07);
  z-index: 1102;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #28A17B;
}
/* Only visible under 950px */
@media (max-width: 950px) {
  header nav ul, header nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #1D2940;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 16px 26px;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.4,.39,.1,1), opacity 0.13s;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFEB3B;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #fff;
  padding: 16px 0 5px 0;
  border-bottom: 1px solid #26344B;
  transition: color 0.18s, background 0.16s;
  display: block;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #28A17B;
  background: rgba(40,161,123,0.08);
  outline: none;
}


/* HERO & BACKGROUND GRADIENTS */
section:first-of-type {
  background: linear-gradient(96deg, #F6F7F9 55%, #e0fbf6 99%);
  position: relative;
  margin-top: 0;
}
section:first-of-type .content-wrapper {
  padding-top: 44px;
  padding-bottom: 32px;
  align-items: flex-start;
}
@media (max-width: 700px) {
  section:first-of-type .content-wrapper {
    padding-top: 24px;
    padding-bottom: 19px;
  }
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 820px) {
  .feature-grid {
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 2px 16px 0 rgba(40,161,123, 0.07);
  gap: 15px;
  min-width: 260px;
  min-height: 260px;
  max-width: 340px;
  flex: 1 1 270px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.feature-item img {
  width: 40px;height: 40px;
}
.feature-item:hover {
  box-shadow: 0 6px 28px 0 rgba(40,161,123,0.13);
  transform: translateY(-3px) scale(1.03);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #F6F7F9;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(29,41,64,0.04);
  margin-bottom: 20px;
  border: 1.5px solid #dde7e2;
  transition: box-shadow 0.17s, border 0.17s;
  margin-top: 0;
}
.testimonial-card p {
  font-size: 1.10rem;
  font-style: italic;
  color: #242932;
  font-weight: 500;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1D2940;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(40,161,123,0.09);
  border: 1.5px solid #28A17B;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0;
}
.faq-item {
  background: #F6F7F9;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(29,41,64,0.03);
  padding: 18px 18px 13px 18px;
  border-left: 4px solid #28A17B;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: #1D2940;
  margin-bottom: 4px;
}
.faq-item p {
  font-size: 1rem;
  color: #313A4D;
}

/* CARD, CARD CONTAINER, GRID */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29,41,64,0.07);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(40,161,123,0.09);
  transform: scale(1.019);
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .section, section {
    padding: 28px 5px !important;
  }
  .container {
    padding: 0 5px;
  }
}

/* HERO CTA BUTTON (duplicate for main, re-uses .cta-btn) */
.cta-btn {
  background: linear-gradient(90deg, #28A17B 0%, #32d8b3 100%);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 38px;
  border-radius: 32px;
  box-shadow: 0 2px 6px rgba(40,161,123,0.10);
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.20s, transform 0.13s;
  margin-top: 20px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #179667 0%, #28A17B 80%);
  box-shadow: 0 8px 20px rgba(40,161,123,0.15);
  transform: translateY(-1px) scale(1.031);
}

/* LISTS & OL */
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 14px;
}
ul > li, ol > li {
  margin-bottom: 8px;
}
ul > li img {
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 3px;
}

/* TRUST SIGNALS */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  align-items: flex-start;
}
.trust-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ECFBF4;
  color: #179667;
  padding: 5px 16px 5px 10px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #1D2940;
  color: #fff;
  padding: 44px 0 30px 0;
  display: flex;
  justify-content: center;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer .logo img {
  height: 38px;
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}
footer ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.87;
  transition: opacity 0.14s;
}
footer ul li a:hover, footer ul li a:focus {
  opacity: 1;
  color: #28A17B;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #F6F7F9;
  font-size: 0.98rem;
  margin-top: 8px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
  color: #F6F7F9;
  font-weight: 500;
}
.footer-contact img {
  width: 18px; height: 18px;
  opacity: 0.80;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F6F7F9;
  border-radius: 8px;
  padding: 16px 18px 12px 18px;
  box-shadow: 0 2px 12px 0 rgba(40,161,123,0.045);
  margin-bottom: 18px;
}
.contact-details p {
  margin: 0 0 2px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 20px; height: 20px;
}

/* BUTTONS GENERIC */
button, .button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #28A17B;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
  box-shadow: 0 2px 8px rgba(40,161,123,0.09);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #179667;
  outline: none;
  transform: translateY(-1px) scale(1.015);
}

/* MODALS & OVERLAYS GENERIC */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(29, 41, 64, 0.43);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(29,41,64,0.18);
  padding: 34px 28px;
  z-index: 2200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.21s, transform 0.16s;
  max-width: 98vw;
  width: 375px;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.modal .modal-close {
  display: inline-block;
  background: none;
  border: none;
  color: #1D2940;
  font-size: 1.7rem;
  position: absolute;
  right: 16px; top: 15px;
  cursor: pointer;
  transition: color 0.13s;
}
.modal .modal-close:hover, .modal .modal-close:focus {
  color: #28A17B;
}

/* RESPONSIVE GENERAL */
@media (max-width: 600px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.30rem; }
  h3 { font-size: 1.10rem; }
  .feature-item { padding: 20px 12px 18px 12px; min-width: 0;}
  .section, section { padding: 18px 2px!important; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #1D2940;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 15px 18px 15px;
  gap: 24px;
  z-index: 1400;
  box-shadow: 0 -2px 18px rgba(29,41,64,0.09);
  font-size: 1rem;
  transition: transform 0.28s, opacity 0.14s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  max-width: 670px;
  color: #fff;
}
.cookie-banner .cookie-btn {
  margin-left: 14px;
  background: #28A17B;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, transform 0.13s;
  cursor: pointer;
  outline: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #179667;
  transform: scale(1.03);
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #1D2940;
  border: 1.5px solid #d7e4e0;
  margin-left: 8px;
  font-weight: 600;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #F6F7F9;
  color: #179667;
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal .category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1D2940;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  transition: 0.25s;
  border-radius: 22px;
}
.cookie-modal .switch input:checked + .slider {
  background: #28A17B;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 4px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(14px);
}

/* MISC */
::-webkit-scrollbar {
  width: 9px;
  background: #f0f4f7;
}
::-webkit-scrollbar-thumb {
  background:#c7dbd2;
  border-radius:8px;
}
::selection {
  background: #28A17B;
  color: #fff;
}

/* UTILITIES */
.gap-20 {
  gap:20px !important;
}
.gap-24 {
  gap:24px !important;
}
.pt-20 {
  padding-top:20px !important;
}
.mb-20 {
  margin-bottom:20px !important;
}
.text-center {
  text-align:center;
}
.mt-20 {margin-top:20px !important;}
.mt-40 {margin-top:40px !important;}
.mb-40 {margin-bottom:40px !important;}

/* For accessibility: focus ring */
:focus-visible {
  outline: 2.5px solid #28A17B !important;
  outline-offset:2px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  border: 0!important; clip: rect(0 0 0 0)!important;
  height: 1px!important; margin: -1px!important; overflow: hidden!important; padding: 0!important; position: absolute!important; width: 1px!important;
}

/* ENSURE NO GRID, NO COLUMNS */
/* (NO display:grid, grid-* or column-* anywhere used) */