/* 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, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #23272A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #1371C2;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #18A0A6;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.5em;
}
ul li, ol li {
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: 16px;
}
blockquote {
  border-left: 3px solid #1371C2;
  padding-left: 18px;
  margin: 0 0 10px 0;
  color: #22262C;
  background: #F9F9FB;
  font-size: 18px;
  font-style: italic;
}
cite {
  display: block;
  margin-top: 6px;
  color: #666;
  font-size: 15px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #23272A;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.16;
}
h1 { font-size: 2.6rem;  margin-bottom: 26px; }
h2 { font-size: 2rem;   margin-bottom: 22px; }
h3 { font-size: 1.35rem; margin-bottom: 18px; }
h4 { font-size: 1.1rem; margin-bottom: 14px; }
p {
  font-size: 17px;
  margin-bottom: 1.3em;
  color: #2A2F34;
}
section {
  background: #fff;
}

/* CONTAINER UTILITIES */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* SPACING & LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(20,32,56,0.03);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 12px 0 rgba(20,32,56,0.06);
  padding: 30px 24px;
  min-width: 280px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(20,32,56,0.10);
}
.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;
  background: #F9F9FB;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(20,32,56,0.04);
  padding: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  transition: box-shadow 0.2s;
  border: 1px solid #F0F2F8;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(20,32,56,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature icons special in / */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #F9F9FB;
  border-radius: 8px;
  padding: 7px 16px 7px 10px;
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1371C2;
  font-weight: 500;
}
.feature-icons img {
  height: 26px;
  width: 26px;
  opacity: 0.82;
}

/* HEADER */
header {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(20,32,56,0.05);
  border-bottom: 1px solid #F3F4F7;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
header a img {
  height: 42px;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.main-nav a {
  color: #23272A;
  position: relative;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  background: #F9F9FB;
  color: #1371C2;
}
.cta-primary {
  background: #1371C2;
  color: #fff;
  border-radius: 6px;
  padding: 13px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(20,32,56,0.08);
  transition: background 0.19s, box-shadow 0.2s, transform 0.13s;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  outline: none;
  margin-left: 14px;
}
.cta-primary:focus, .cta-primary:hover {
  background: #18A0A6;
  box-shadow: 0 7px 23px 0 rgba(20,32,56,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU: hamburger button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1371C2;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 10px;
  z-index: 902;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F1F7FB;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 44px 0 rgba(20,32,56,0.15);
  z-index: 901;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.61,.03,.57,.93);
  padding: 35px 32px 30px 30px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1371C2;
  cursor: pointer;
  margin-bottom: 12px;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F1F7FB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  margin-top: 14px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #23272A;
  padding: 12px 12px 12px 5px;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.16s, color 0.16s;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9F9FB;
  color: #1371C2;
}

/* ===================== */
/* HERO/CTA SECTIONS    */
section:first-of-type {
  margin-top: 35px;
}
/* CTA section at bottom */
.section-cta, section.cta {
  background: #F9F9FB;
  border-radius: 13px;
  margin-bottom: 54px;
  padding: 36px 20px 36px 20px;
  text-align: center;
}
.section-cta h2 {
  margin-bottom: 22px;
}
/* ===================== */

/* FORMS, LISTS, FAQ, DETAILS */
dl, dt, dd {
  margin: 0;
  padding: 0;
}
dl {
  margin-bottom: 1.6em;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1371C2;
  margin-top: 19px;
}
dd {
  color: #22262C;
  font-size: 16px;
  margin-left: 0;
  margin-bottom: 6px;
  margin-top: 3px;
  line-height: 1.6;
}

/* ===================== */
/* FOOTER */
footer {
  background: #fff;
  padding: 30px 0 18px 0;
  border-top: 1px solid #F3F4F7;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: #888D93;
}
.footer-branding img {
  height: 29px;
  opacity: 0.6;
}
.footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #767D83;
  font-size: 15px;
  border-radius: 5px;
  padding: 3px 7px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:focus, .footer-nav a:hover {
  background: #F9F9FB;
  color: #1371C2;
}

/* ===================== */
/* COOKIE CONSENT BANNER AND MODAL  */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #e1e4ea;
  box-shadow: 0 -2px 22px 0 rgba(20,32,56,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 25px 16px 25px;
  z-index: 9500;
  width: 100%;
  font-size: 16px;
  transition: transform 0.29s cubic-bezier(.74,.08,.39,.94), opacity 0.16s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-action, .cookie-settings-btn {
  font-size: 16px;
  padding: 8px 19px;
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-weight: 600;
  outline: none;
  transition: background 0.17s, color 0.16s;
}
.cookie-action.accept {
  background: #1371C2;
  color: #fff;
}
.cookie-action.accept:hover, .cookie-action.accept:focus {
  background: #18A0A6;
}
.cookie-action.reject {
  background: #fff;
  border: 1.5px solid #1371C2;
  color: #1371C2;
}
.cookie-action.reject:hover, .cookie-action.reject:focus {
  background: #F9F9FB;
  border-color: #18A0A6;
}
.cookie-settings-btn {
  background: #F9F9FB;
  color: #1371C2;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E7F5FB;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,56,74,0.38);
  z-index: 9957;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  min-width: 340px;
  max-width: 97vw;
  box-shadow: 0 12px 38px 0 rgba(20,32,56,0.18);
  padding: 35px 38px 25px 38px;
  z-index: 9958;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: fadeInScale 0.34s cubic-bezier(.43,.14,.62,.83) both;
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.88); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 19px;
  right: 16px;
  font-size: 1.35rem;
  background: none;
  border: none;
  color: #1371C2;
  cursor: pointer;
  border-radius: 4px;
  width: 35px;
  height: 35px;
  transition: background 0.14s;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
  background: #F3F5FA;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #1371C2;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-category label {
  font-size: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23272A;
  font-weight: 500;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: #1371C2;
}
.cookie-category .mandatory {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* ===================== */

/* ===================== */
/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding-left: 8px; padding-right: 8px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 14px;
    height: auto;
    align-items: flex-start;
  }
  .main-nav, .footer-nav {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .card, .section-cta, section.cta {
    padding-left: 11px; padding-right: 11px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 3vw; padding-right: 3vw;
  }
  section {
    padding-left: 1vw; padding-right: 1vw;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 48px;
  }
  .footer-branding {
    font-size: 14px;
    gap: 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  /* Make hero/cta centered */
  .section-cta, section.cta, .content-wrapper, .text-section {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.22rem; }
  nav.main-nav {
    font-size: 15px;
    gap: 10px;
  }
  .card, .section-cta, section.cta {
    padding: 16px 6px;
  }
}
@media (max-width: 992px) {
  .text-image-section, .content-grid, .feature-icons {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 12px;
  }
}
/* ACTUAL MOBILE: disables desktop navs, enables burger */
@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    padding: 12px 20px;
    font-size: 16px;
    margin-left: 0;
  }
}

/* For testimonials, keep text dark for contrast */
.testimonial-card blockquote {
  color: #23272A;
  background: none;
  border-left: 3px solid #18A0A6;
}
.testimonial-card cite {
  color: #1371C2;
  font-style: normal;
}

/* ===================== */
/* SCROLLBAR design for webkit browsers for modern minimal look */
::-webkit-scrollbar {
  width: 10px;
  background: #F2F4F7;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #E7EAF0;
  border-radius: 7px;
}

/* ===================== */
/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .testimonial-card, .cta-primary, .footer-nav a, .main-nav a, .mobile-nav a, .cookie-banner, .cookie-action, .cookie-settings-btn, .cookie-modal {
  transition: box-shadow 0.22s, background 0.18s, color 0.16s, transform 0.13s;
}

/* ===================== */
/* TYPOGRAPHY SCALE */
html { font-size: 16px; }
@media (max-width: 900px) { html { font-size: 15px; } }
@media (max-width: 650px) { html { font-size: 14px; } }

body, p, li, dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #23272A;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #23272A;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

/* ===================== */
/* GENERAL BUTTONS */
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 1rem;
  background: #fff;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
}
button:focus {
  outline: 3px dashed #18A0A6;
  outline-offset: 2px;
}

/* ============== */
/* UTILITY CLASSES */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============== */
/* Hide visually (for accessibility if needed) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Prevent card/text overlap at all breakpoints */
.card, .testimonial-card, .content-wrapper, .text-section {
  margin-bottom: 20px;
}
.section + .section {
  margin-top: 0;
}

/* ===================== */
/* END CSS */
