/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F8FAFD;
  color: #273448;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

/* MONTSERRAT FOR HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263059;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 24px; }
h3 { font-size: 1.375rem; font-weight: 500; margin-bottom: 16px; }
h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 8px; }
p, ul, ol, blockquote {
  font-size: 1rem;
  color: #38405C;
  margin-bottom: 16px;
}
ul, ol { padding-left: 22px; }
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}
blockquote {
  background: #eef7fa;
  border-left: 5px solid #8FCB9B;
  border-radius: 12px;
  padding: 22px 28px;
  color: #364870;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* LINKS */
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  text-decoration: underline;
  color: #65b189;
}

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(32,77,94,0.08);
  padding: 32px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.text-section {
  background: #f5fafe;
}

/* SECTIONS SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* NAVIGATION */
header {
  background: linear-gradient(90deg, #f8fafd 0%, #ece8ff 100%);
  box-shadow: 0 2px 14px 0 rgba(40,63,84,0.06);
  position: relative;
  z-index: 50;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
}
header nav a img {
  height: 40px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  list-style: none;
  margin: 0 0 0 40px;
}
header nav ul li {
  margin: 0;
}
header nav ul li a {
  position: relative;
  padding: 6px 2px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #36537a;
  transition: color 0.16s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #1B365D;
}
.btn-primary, .btn-secondary {
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(32,77,94,0.11);
  transition: background 0.17s, color 0.17s, box-shadow 0.20s;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 0;
}
.btn-primary {
  color: #fff;
  background: #8FCB9B;
}
.btn-primary:hover, .btn-primary:focus {
  background: #67b481;
  color: #fff;
  box-shadow: 0 4px 18px rgba(143,203,155,0.12);
  text-decoration: none;
}
.btn-secondary {
  color: #1B365D;
  background: #e2ebfd;
  border: 1.5px solid #b4cee6;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #d4e4f6;
  color: #1B365D;
  border-color: #8FCB9B;
}

/* FLEX UTILITY CONTAINERS (MANDATORY CLASSES) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(25,64,82,0.08);
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5faf7;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(78,158,123,0.09);
  margin-bottom: 32px;
  padding: 20px 32px;
  min-height: 120px;
  max-width: 650px;
  color: #1B365D;
}
.testimonial-card .content-wrapper {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.testimonial-card p {
  font-size: 1.125rem;
  color: #314764;
  margin-bottom: 8px;
}
.testimonial-card em {
  font-size: 1rem;
  color: #84a980;
  font-style: italic;
  margin-left: 0;
}
.testimonial-card div[aria-label],
.testimonial-card div {
  color: #45a07d;
  font-size: 1.2em;
  margin-bottom: 0.1em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ STYLES */
.faq-list h3 {
  font-size: 1.13rem;
  margin: 24px 0 10px 0;
  color: #285389;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list p {
  margin-bottom: 24px;
}
.faq-list h3:first-child { margin-top: 0; }

/* FOOTER */
footer {
  background: #e8f9f3;
  border-top: 2px solid #b3dae2;
  padding: 38px 0 22px 0;
  margin-top: 40px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  font-size: 0.97rem;
  color: #467672;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #1B365D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.98rem;
  color: #364870;
}
.footer-contact a {
  color: #285389;
}

/* MAP PLACEHOLDER */
.placeholder-map {
  background: #E8F0F5;
  border-radius: 14px;
  color: #8a95a2;
  font-size: 1.1rem;
}

/* ----------- MOBILE MENU ----------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  padding: 9px 18px 7px 18px;
  border-radius: 7px;
  color: #1B365D;
  box-shadow: 0 2px 8px rgba(31,83,138,0.12);
  cursor: pointer;
  z-index: 151;
  margin-left: 20px;
  transition: background 0.16s, color 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #8FCB9B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 92vw;
  max-width: 360px;
  height: 100vh;
  background: #f8fafb;
  box-shadow: 4px 0 24px 0 rgba(40,60,100,0.12);
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.32,1.35,.52,1);
  z-index: 200;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #8FCB9B;
  padding: 16px 24px 8px 0;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1B365D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 28px;
}
.mobile-nav a {
  display: block;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #364870;
  border-bottom: 1px solid #e3efeb;
  transition: background 0.16s, color 0.13s;
  min-width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e2f0e7;
  color: #1B365D;
}

/* OVERLAY FOR MOBILE MENU (NO absolute content!) */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  header nav ul {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 22px 8px;
    border-radius: 14px;
  }
  section {
    padding: 28px 0 0 0;
    margin-bottom: 44px;
  }
  .testimonial-card {
    padding: 18px 12px;
    font-size: 0.95rem;
    max-width: 98vw;
    flex-direction: column;
    gap: 10px;
  }
  .card {
    padding: 12px 8px;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .section, .container, .content-grid, .card-container {
    gap: 14px;
  }
  .content-grid {
    gap: 10px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* SECTION BUTTON/FLEX PANEL RESPONSIVE */
@media (max-width: 520px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2100;
  background: rgba(241,253,251,0.98);
  box-shadow: 0 -2px 28px 0 rgba(31,110,114,0.09);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.25s cubic-bezier(.41,0,.6,1) 0s, opacity 0.25s;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    font-size: 0.96rem;
  }
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 17px;
  background: #8FCB9B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 26px;
  margin: 0 0 0 0;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 1px 8px rgba(52,92,54,0.08);
  transition: background 0.13s, color 0.13s, box-shadow 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #67b481;
}
.cookie-btn.cookie-settings {
  background: #e9f4ef;
  border: 1.5px solid #8FCB9B;
  color: #2b4e40;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #d6efe3;
  color: #1B365D;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,49,63,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2400;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #f6fff7;
  border-radius: 22px;
  box-shadow: 0 6px 38px 0 rgba(50,148,103,0.19);
  padding: 35px 32px 28px 32px;
  max-width: 380px;
  width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  color: #213f35;
}
.cookie-modal-content h2 {
  margin-bottom: 12px;
  font-size: 1.27rem;
  color: #1B365D;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #8FCB9B;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  position: relative;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 40px;
  height: 22px;
  margin: 0;
}
.cookie-switch-label {
  background: #e0edf0;
  border-radius: 21px;
  width: 40px;
  height: 22px;
  display: inline-block;
  position: absolute;
  top: 0; left: 0;
  transition: background 0.16s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch-label {
  background: #8FCB9B;
}
.cookie-switch .cookie-switch-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 9px;
  background: #fff;
  transition: transform 0.16s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-switch-label .cookie-switch-slider {
  transform: translateX(18px);
  background: #fff;
}
.cookie-modal-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
}

/* -------- Utilities -------- */
.hide {
  display: none !important;
}

/* Subtle hover, focus ring for a dreamy look */
*:focus-visible {
  outline: 2px solid #8FCB9B;
  outline-offset: 2px;
  transition: outline 0.12s;
}

/* ANIMATIONS/MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.19s, border 0.17s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(46,156,149,0.13);
  transform: translateY(-2px) scale(1.0125);
  transition: box-shadow 0.18s, transform 0.19s;
}
.testimonial-card:active {
  transform: scale(0.978);
}

/* DREAMY SOFT-PASTEL DECORATION (subtle, not disturbing) */
body {
  background: linear-gradient(90deg, #f8fafd 0%, #f7f6ff 100%);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #f0feee;
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background: #f8fafb;
}

/* DARK TEXT ON LIGHT BG FOR ALL BLOCKS WHERE READABILITY IS CRUCIAL */
.testimonial-card, .content-wrapper, .text-section, .footer-contact, .faq-list, .cookie-banner, .cookie-modal-content {
  color: #1B365D;
}

/* Make sure minimum tap size for all interactive elements on mobile */
@media (max-width: 550px) {
  .btn-primary, .btn-secondary, .cookie-btn, .mobile-nav a {
    font-size: 1rem;
    padding: 13px 16px;
    min-height: 44px;
  }
}
