/* RESET AND NORMALIZATION */
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,
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, 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;
}

/* Set core body defaults */
body {
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 16px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #24395E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #11998E;
  outline: none;
}

ul, ol {
  margin-left: 1.3em;
}

strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24395E;
  line-height: 1.2;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.24rem; font-weight: 500; }
h4 { font-size: 1.08rem; font-weight: 500; }
h5, h6 { font-size: 1rem; font-weight: 500; }
p {
  margin-bottom: 1.2em;
  color: #24395E;
  font-size: 1rem;
}

body, button, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
}

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

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

.text-section {
  max-width: 740px;
}

main {
  margin-bottom: 60px;
}


/* LAYOUT & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(36,57,94,0.07);
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(17,153,142,0.11);
  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: 20px;
  padding: 20px 28px;
  background: #FDF6EA;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px rgba(36,57,94,0.05);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 400px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #11998E;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.feature {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 20px rgba(36,57,94,0.08);
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: grayscale(0.12) opacity(0.8);
}
.feature h3 {
  font-size: 1.14rem;
  margin-bottom: 0.34em;
}
.feature:hover {
  box-shadow: 0 7px 24px rgba(17,153,142,0.13);
  transform: translateY(-4px) scale(1.01);
}

.quote-highlight {
  font-size: 1.24rem;
  color: #24395E;
  background: #FDF6EA;
  border-left: 4px solid #11998E;
  padding: 18px 24px;
  border-radius: 10px;
  margin-top: 24px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.cta-section {
  background: #FDF6EA;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 38px 12px;
}

.trust-signals {
  margin-top: 18px;
  background: #FDF6EA;
  color: #24395E;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 1rem;
}


/* HERO SECTION */
.hero {
  padding: 44px 0 44px 0;
  min-height: 320px;
  background: #FDF6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  text-align: left;
  align-items: flex-start;
  max-width: 740px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.6em;
}
.hero p {
  color: #24395E;
  font-size: 1.18rem;
  margin-bottom: 1.5em;
}


/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 0.5px 10px rgba(36,57,94,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 44px;
  width: auto;
}

nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  padding: 5px 13px;
  border-radius: 6px;
  color: #24395E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, background 0.2s;
}
nav a.cta {
  background: #11998E;
  color: #fff;
  font-weight: 700;
  padding: 7px 24px;
  border-radius: 28px;
  margin-left: 8px;
  box-shadow: 0 1.5px 7px rgba(17,153,142,0.08);
  transition: background 0.18s, color 0.2s, box-shadow 0.22s;
}
nav a.cta:hover, nav a.cta:focus {
  background: #24395E;
  color: #fff;
  box-shadow: 0 4px 16px rgba(36,57,94,0.13);
}
nav a:hover, nav a:focus:not(.cta) {
  background: #FDF6EA;
  color: #11998E;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  padding: 2px 6px;
  margin-left: 14px;
  color: #11998E;
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  transition: background 0.11s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FDF6EA;
}

/* MOBILE MENU NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(36,57,94,0.91);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(.74,0,.21,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 32px 30px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  opacity: 0.86;
  transition: color 0.13s, background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FDF6EA;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.mobile-nav {
  width: 88vw;
  max-width: 340px;
  background: #fff;
  border-radius: 20px 0 0 20px;
  padding: 30px 26px 40px 32px;
  margin-right: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-shadow: -2px 0 30px rgba(17,153,142,0.09);
}
.mobile-nav a {
  color: #24395E;
  font-size: 1.1rem;
  padding: 9px 7px;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.13s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDF6EA;
  color: #11998E;
}

@media (max-width: 1024px) {
  header .container {
    max-width: 100vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

@media (max-width: 890px) {
  nav {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .content-wrapper,
  .content-wrapper { max-width: 100%; }
  .features-grid, .card-container, .testimonials {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .section {
    padding: 26px 6vw;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 12px;
  }
  .content-grid,
  .card-container,
  .text-image-section,
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { gap: 18px; }
  .hero {
    padding: 32px 0 32px 0;
    min-height: 220px;
  }
  .cta-section {
    padding: 24px 4vw;
  }
  nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 430px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 1.3rem; }
  .container { padding: 0 5px; }
}


/* BUTTONS & CTA */
button, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #11998E;
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 9px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.14s;
  outline: none;
  display: inline-block;
  line-height: normal;
  box-shadow: 0 2.5px 16px rgba(17,153,142,0.05);
  text-decoration: none;
}
.cta:hover, .cta:focus, button:hover, button:focus {
  background: #24395E;
  color: #fff;
  box-shadow: 0 4px 20px rgba(36,57,94,0.15);
  transform: translateY(-1px) scale(1.025);
}

/*---- FOOTER ----*/
footer {
  margin-top: 34px;
  border-top: 1px solid #E6E8EB;
  background: #fff;
  padding: 32px 0 34px 0;
  font-size: 0.98rem;
  color: #24395E;
  box-shadow: 0 -1.5px 8px rgba(36,57,94,0.045);
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
footer nav {
  gap: 12px;
  margin-bottom: 15px;
}
footer nav a {
  color: #11998E;
  padding: 3px 10px;
  font-size: 1rem;
  background: none;
}
footer nav a:hover, footer nav a:focus {
  background: #FDF6EA;
  color: #24395E;
}
address {
  color: #24395E;
  font-style: normal;
  margin-top: 8px;
}
address p {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
}
address img {
  width: 18px;
  height: 18px;
  display: inline-block;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1001;
  background: #fff;
  box-shadow: 0 -8px 48px rgba(36,57,94,0.11);
  border-top: 1.5px solid #FDF6EA;
  padding: 24px 16px 18px 16px;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s, transform 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(70px);
}
.cookie-banner .cookie-content {
  color: #24395E;
  font-size: 0.97rem;
  flex: 1 1 260px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 115px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 19px;
  padding: 7px 16px;
  border: none;
}
.cookie-banner .accept {
  background: #11998E;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #24395E;
}
.cookie-banner .reject {
  background: #FDF6EA;
  color: #24395E;
  border: 1.3px solid #FDF6EA;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #11998E;
  border-color: #11998E;
}
.cookie-banner .settings {
  background: none;
  color: #11998E;
  border: 1.3px solid #11998E;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FDF6EA;
  color: #24395E;
  border-color: #24395E;
}

/* COOKIE PREFS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(36,57,94,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-dialog {
  background: #fff;
  border-radius: 19px;
  max-width: 400px;
  width: 94vw;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 8px 48px rgba(36, 57, 94, 0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieModalIn 0.4s cubic-bezier(.74,0,.21,1);
}
@keyframes cookieModalIn {
  0% { transform: translateY(60px) scale(0.93); }
  100% { transform: translateY(0) scale(1); }
}

.cookie-modal .modal-dialog h3 {
  font-size: 1.2rem;
  color: #24395E;
  margin-bottom: 8px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 7px;
  margin-top: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.01rem;
  color: #24395E;
  gap: 12px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #11998E;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  cursor: pointer;
}
.cookie-modal .enabled {
  color: #11998E;
  font-weight: 500;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  min-width: 106px;
  border-radius: 19px;
  padding: 7px 16px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.18s, color 0.19s;
}
.cookie-modal .accept {
  background: #11998E;
  color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #24395E;
}
.cookie-modal .close {
  background: #FDF6EA;
  color: #11998E;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #fff;
  color: #24395E;
}


/* MISC */
::-webkit-input-placeholder { color: #AAA; }
::-moz-placeholder { color: #AAA; }
:-ms-input-placeholder { color: #AAA; }
::placeholder { color: #AAA; }

::-webkit-scrollbar {
  width: 8px;
  background: #F8F8FA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #E3E9F1;
  border-radius: 8px;
}

hr {
  border: none;
  border-top: 1px solid #F1F2F5;
  margin: 36px 0 26px 0;
}

/* Accessibility & hidden elements */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Utility classes */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

@media (max-width: 460px) {
  .cookie-modal .modal-dialog {
    padding: 19px 9px 16px 9px;
  }
}
