/* RESET & BASE TYPOGRAPHY */
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;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F4F7F5;
  color: #1C2833;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a {
  color: #65B3C6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1C2833;
}
b, strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}

/* STRUCTURE & GRIDING (Flex-only) */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav {
  justify-content: center;
  margin-bottom: 16px;
  gap: 20px;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  padding-bottom: 18px;
}

/***** TYPOGRAPHY *****/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1C2833;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/***** HERO SECTION *****/
.hero {
  background: #1C2833;
  color: #F4F7F5;
  border-radius: 0 0 44px 44px;
  position: relative;
  margin-bottom: 40px;
  padding: 56px 0 56px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1, .hero h2, .hero h3 {
  color: #F4F7F5;
}
.hero p {
  font-size: 1.13rem;
  max-width: 700px;
  margin-bottom: 18px;
  color: #F4F7F5;
}

/***** CTA BUTTONS *****/
.cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #65B3C6;
  color: #fff;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(28,40,51,0.08);
  transition: background 0.18s, transform 0.15s, box-shadow 0.21s;
}
.cta.primary {
  background: #1C2833;
  color: #F4F7F5;
}
.cta:hover, .cta:focus {
  background: #3695ad;
  color: #F4F7F5;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 18px rgba(28,40,51,0.13);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #232f3e;
  color: #F4F7F5;
}

/***** FEATURE GRIDS & CARDS *****/
.feature-grid, .criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
  list-style: none;
}
.feature-grid li, .criteria-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(101,179,198,0.09), 0 1.5px 3px rgba(28,40,51,0.04);
  padding: 28px 22px;
  flex: 1 1 230px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 2.5px solid #65B3C6;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li:hover, .criteria-grid li:hover {
  box-shadow: 0 4px 18px rgba(101,179,198,0.18), 0 2.5px 7px rgba(28,40,51,0.09);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid li img, .criteria-grid li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #E5F2F6;
  padding: 5px;
  border-radius: 10px;
}

/***** SERVICES (LIST STYLE) *****/
.services ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 10px;
  margin-bottom: 24px;
  list-style: disc inside;
}
.services ul li {
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  border-left: 6px solid #65B3C6;
  box-shadow: 0 1px 5px rgba(101,179,198,0.08);
  font-size: 1.06rem;
  margin-bottom: 13px;
  color: #1C2833;
}

/***** SECTION, CARD & FLEX SPACING *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2.5px solid #65B3C6;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 1px 8px rgba(101,179,198,0.10);
  padding: 26px 22px;
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(28,40,51,0.13);
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F4F7F5;
  border-left: 6px solid #65B3C6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(28,40,51,0.07);
  transition: box-shadow 0.15s, border-left 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(28,40,51,.17);
  border-left: 6px solid #1C2833;
}
.testimonial-card blockquote {
  color: #232f3e;
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.45;
  margin-right: 0;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-card div {
  min-width: 140px;
  color: #1C2833;
  text-align: left;
  font-size: 1rem;
}

/***** ABOUT/LEGAL - TEXT SECTION *****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.09rem;
}
.text-section ul {
  list-style-type: square;
  margin-left: 0.7em;
  padding-left: 1em;
}

/***** FOOTER *****/
footer {
  background: #F4F7F5;
  border-top: 2px solid #65B3C6;
  margin-top: 40px;
  padding: 12px 0 0 0;
  color: #1C2833;
  font-size: 1rem;
}
.footer-nav a {
  color: #65B3C6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.99rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #1C2833;
}
footer .footer-brand span {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #1C2833;
}
footer .footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

/***** HEADER *****/
header {
  background: #fff;
  position: relative;
  z-index: 200;
  box-shadow: 0 1px 14px rgba(101,179,198,0.08);
  border-bottom: 2px solid #65B3C6;
}
.main-nav {
  padding: 12px 20px 10px 20px;
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: flex-start;
}
.main-nav a {
  color: #1C2833;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background 0.13s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #65B3C6;
  color: #F4F7F5;
}
.main-nav a img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  margin-right: 9px;
  vertical-align: middle;
}

/***** MOBILE MENU (BURGER NAVIGATION) *****/
.mobile-menu-toggle {
  display: none;
  background: #65B3C6;
  color: #fff;
  border: none;
  font-size: 2.4rem;
  padding: 6px 14px;
  border-radius: 7px;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 900;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(28,40,51,.07);
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #1C2833;
  color: #F4F7F5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C2833;
  color: #fff;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.8,.2,.4,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #65B3C6;
  border: none;
  color: #F4F7F5;
  font-size: 2.1rem;
  margin: 24px 30px 0 0;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 16px 3px 16px;
  transition: background 0.14s,color 0.18s;
  z-index: 1002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4F7F5;
  color: #1C2833;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F4F7F5;
  background: none;
  padding: 14px 24px;
  border-radius: 9px;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  transition: background 0.15s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #65B3C6;
  color: #232f3e;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #1C2833;
  color: #F4F7F5;
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 32px 10% 26px 10%;
  align-items: flex-start;
  box-shadow: 0 -2px 16px rgba(28,40,51,0.14);
  transition: transform 0.28s, opacity 0.19s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-title {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 4px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 24px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 1rem;
  margin-right: 8px;
  margin-bottom: 6px;
  box-shadow: 0 1px 7px rgba(101,179,198,0.09);
  transition: background 0.14s, color 0.14s;
}
.cookie-accept {
  background: #65B3C6;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #1C2833;
  border: 2px solid #65B3C6;
}
.cookie-settings {
  background: #232f3e;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  opacity: 0.85;
  color: #232f3e;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%) scale(0.97);
  min-width: 360px;
  max-width: 98vw;
  z-index: 1300;
  background: #fff;
  color: #1C2833;
  box-shadow: 0 6px 36px rgba(28,40,51,0.22);
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.35rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  background: #F4F7F5;
  border-radius: 8px;
  padding: 14px 18px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #65B3C6;
  width: 22px;
  height: 22px;
  margin: 0;
}
.cookie-essentials {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  padding: 10px 24px;
  border-radius: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: #65B3C6;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0 1px 7px rgba(101,179,198,0.09);
}
.cookie-modal-actions .cookie-cancel {
  background: #1C2833;
  color: #fff;
}
.cookie-modal-actions .cookie-save {
  background: #65B3C6;
  color: #fff;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  opacity: 0.85;
}
.cookie-modal .close-modal {
  background: #65B3C6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  padding: 5px 18px;
  position: absolute;
  top: 20px;
  right: 32px;
  cursor: pointer;
  z-index: 2;
}

/* Utility Section/Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* RESPONSIVE STYLES ********/
@media (max-width: 1080px) {
  .container {
    max-width: 96vw;
  }
  .feature-grid li, .criteria-grid li {
    min-width: 180px;
    padding: 18px 8px;
  }
  .hero {
    padding: 32px 0 40px 0;
    border-radius: 0 0 32px 32px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .criteria-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  /* Flex direction for key sections */
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid, .criteria-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .criteria-grid li {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.33rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  body {
    font-size: 0.98rem;
  }
  .footer-nav, .footer-brand {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .services ul li {
    font-size: 1rem;
    padding: 12px 10px;
  }
  .cookie-banner {
    padding: 18px 6% 18px 6%;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 96vw;
    padding: 16px 6vw 16px 6vw;
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 18px 0 26px 0;
    border-radius: 0 0 18px 18px;
  }
  .feature-grid li, .criteria-grid li {
    padding: 14px 6px;
    font-size: 0.98rem;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}

/********* ANIMATION CLASSES *********/
.slide-in {
  transform: translateX(0%) !important;
  opacity: 1 !important;
}
.slide-out {
  transform: translateX(-100vw) !important;
  opacity: 0 !important;
}
.fade-in {
  opacity: 1 !important;
  transition: opacity 0.32s;
}
.fade-out {
  opacity: 0 !important;
  transition: opacity 0.23s;
}

/**** GEOMETRIC SHAPES (DECORATIVE for style) ****/
.hero:after {
  content: "";
  display: block;
  position: absolute;
  right: -90px;
  top: 14px;
  width: 110px;
  height: 110px;
  border-radius: 21% 79% 48% 52% / 37% 51% 49% 63%;
  background: #65B3C6;
  opacity: 0.17;
  z-index: 1;
  filter: blur(2.2px);
}
.hero:before {
  content: "";
  display: block;
  position: absolute;
  left: -60px;
  bottom: -32px;
  width: 90px;
  height: 90px;
  background: #65B3C6;
  border-radius: 55% 45% 28% 72% / 32% 38% 62% 68%;
  opacity: 0.14;
  z-index: 1;
  filter: blur(2px);
}
@media (max-width: 900px) {
  .hero:after,.hero:before { display:none; }
}

/* Hide scroll on modal open */
.cookie-modal.open, .mobile-menu.open {
  overscroll-behavior: contain;
}

/***** Utility classes *****/
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/***** THANK YOU & LEGAL PAGES *****/
.thankyou, .legal {
  margin: 0 auto;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 1px 20px rgba(101,179,198,0.09);
  padding: 32px 16px;
  max-width: 720px;
}

/***** Remove scrollbars on overlays *****/
.mobile-menu.open, .cookie-modal.open, .cookie-banner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu.open::-webkit-scrollbar, .cookie-modal.open::-webkit-scrollbar {
  width: 0 !important;
  background: transparent !important;
}
section {
  padding: 20px 0;
}
/* End */