/* 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 { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { min-height: 100vh; background: #FEFEFD; color: #2f2f2f; }
img, video { max-width: 100%; height: auto; display: block; border-radius: 16px; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; text-align: left; }

/* BRAND FONTS & BASE TYPE SCALE */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: #FEFEFD;
  color: #28304d;
}
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #26397D;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #26397D;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #26397D;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #333;
}
strong {
  font-weight: 600;
  color: #26397D;
}

/* CONTAINERS & FLEX STRUCTURE */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(98,195,203, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(38,57,125,0.06);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(98,195,203,0.18);
  transform: translateY(-5px) 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;
  border-radius: 18px;
  background: #EAF0FA;
  box-shadow: 0 2px 20px rgba(98,195,203,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(38,57,125,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LAYOUT SECTION -- HOMEPAGE SPECIFIC */
.hero {
  background: linear-gradient(90deg, #FCE3BA 0%, #EAF0FA 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 32px rgba(98,195,203,0.10);
  padding: 80px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #273f7a;
}
.hero .cta-button {
  margin-top: 32px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(98,195,203,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow 0.15s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(98,195,203,0.20);
}
.features .feature-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}

section.cta {
  background: linear-gradient(90deg, #FFE8C9 0%, #EAF0FA 100%);
  border-radius: 24px;
  box-shadow: 0 0 0 1px #eaf0fa,0 10px 36px rgba(255,199,128,0.18);
  padding: 50px 20px;
  margin-bottom: 60px;
  text-align: center;
}
section.cta .cta-button {
  font-size: 1.13rem;
}

section.services ul,
section.solutions ul,
section.benefits ul,
section.team ul,
.text-section ul {
  margin-left: 18px;
  margin-bottom: 18px;
}
section.services ul li,
section.solutions ul li,
section.benefits ul li,
section.team ul li,
.text-section ul li {
  list-style: disc inside;
  font-size: 1rem;
  margin-bottom: 8px;
}
section.process ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
section.process ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* TABLE STYLE */
table {
  margin-top: 12px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(98,195,203,0.10);
}
th {
  background: #26397D;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
td {
  background: #FAFAFE;
  font-size: 1rem;
}
tr:nth-child(even) td { background: #f1f6fb; }

/* ABOUT, TEAM, FAQs, LEGAL */
.text-section {
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(98,195,203,0.06);
  padding: 24px 18px;
}
.faq-entry {
  margin-bottom: 28px;
  border-radius: 14px;
  padding: 22px 18px;
  background: #EAF0FA;
  box-shadow: 0 2px 14px rgba(98,195,203,0.08);
  transition: box-shadow 0.18s;
}
.faq-entry:hover { box-shadow: 0 7px 20px rgba(98,195,203,0.15); }

/* ICON ROWS */
.solution-icons, .benefit-icons {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 16px 0;
}
.solution-icons img, .benefit-icons img {
  width: 54px;
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
.contact-details img {
  width: 28px;
  height: 28px;
}
.location-map {
  background: #FFF6EC;
  border-radius: 12px;
  padding: 18px;
  margin-top: 14px;
  font-size: 1rem;
}

.confirmation .thank-you-message,
.confirmation .next-steps {
  background: #EAF0FA;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(98,195,203,0.06);
  margin-bottom: 20px;
  padding: 18px 14px;
}
.confirmation .next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* BUTTONS, CTA & LINKS */
.cta-button, .button, button, .cookie-btn {
  display: inline-block;
  background: #62C3CB;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 24px;
  padding: 13px 40px;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(98,195,203, 0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.cta-button:hover, .button:hover, button:hover, .cookie-btn:hover,
.cta-button:focus, .button:focus, button:focus, .cookie-btn:focus {
  background: #26397D;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-shadow: 0 2px 12px rgba(98,195,203,0.11);
  position: relative;
  z-index: 50;
}
.logo-header img {
  max-height: 48px;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #273f7a;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  background: #EAF0FA;
  color: #62C3CB;
}
.main-nav .cta-button {
  background: #62C3CB;
  color: #fff;
  margin-left: 12px;
  margin-bottom: 0;
  border-radius: 24px;
  padding: 9px 30px;
  font-size: 1.03rem;
  box-shadow: 0 2px 12px rgba(98,195,203,0.13);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #62C3CB;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 151;
  margin-left: 14px;
  transition: background 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 14px rgba(98,195,203,0.13);
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #26397D;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(234, 240, 250, 0.96);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  z-index: 2000;
  padding: 32px 28px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 5px 0 20px rgba(38,57,125,0.07);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #62C3CB;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #26397D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #26397D;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 7px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #62C3CB;
  background: #EAF0FA;
}

/* MAIN & SKELETON SPACING */
main {
  min-height: 60vh;
  margin-top: 24px;
  margin-bottom: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(98,195,203, 0.06);
}

/* FOOTER */
footer {
  background: #26397D;
  color: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 18px rgba(98,195,203,0.10);
  padding: 40px 20px 22px 20px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  background: rgba(98,195,203,0.12);
  padding: 7px 15px;
  border-radius: 16px;
  font-size: 0.95rem;
  margin-bottom: 7px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover {
  background: #62C3CB;
  color: #fffbe8;
}
.footer-contact {
  text-align: center;
  font-size: 0.99rem;
  background: #62c2cbba;
}
.footer-logo img {
  height: 36px;
  margin: 0 auto;
  filter: drop-shadow(1px 1px 3px #101b39bb);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbe8;
  color: #2E2E2E;
  box-shadow: 0 -4px 24px rgba(98,195,203,0.09);
  border-radius: 24px 24px 0 0;
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 3500;
  font-size: 1rem;
  transition: transform 0.38s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #62C3CB;
  color: #fff;
  border-radius: 24px;
  border: none;
  padding: 8px 24px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 7px rgba(98,195,203,0.09);
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-btn.secondary {
  background: transparent;
  color: #26397D;
  border: 2px solid #62C3CB;
  font-weight: 500;
}
.cookie-btn:focus {
  outline: 2px solid #62C3CB;
  outline-offset: 1px;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,51,84,0.45);
  z-index: 3700;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 36px rgba(38,57,125,0.15);
  padding: 44px 28px 24px 28px;
  max-width: 410px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookiePopIn 0.34s cubic-bezier(0.5, .97, .7, 1.35);
}
@keyframes cookiePopIn {
  from { transform: scale(0.7) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #26397D;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EAF0FA;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #273f7a;
}
/* Styled cookie toggles */
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #eaf0fa;
  border-radius: 24px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 2px solid #62C3CB;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #62C3CB;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(38,57,125,0.13);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-category.disabled {
  opacity: 0.5;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}

.cookie-modal .close-modal-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  background: #62C3CB;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px; height: 28px;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close-modal-btn:hover { background: #26397D; }

/* SHADOWS & HIERARCHY */
.box-shadow {
  box-shadow: 0 4px 24px rgba(98,195,203,0.13) !important;
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .faq-entry {
  transition: box-shadow 0.20s, transform 0.16s;
}
.card:hover, .testimonial-card:hover, .faq-entry:hover {
  transform: scale(1.025) translateY(-3px);
}
.cta-button:active, .button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
  .container { padding: 0 8px; }
  .features .feature-grid { gap: 18px; }
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .card-container { gap: 16px; }
}
@media (max-width: 800px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  main { margin-top: 14px; }
  .cta-button, .button { font-size: 1rem; padding: 12px 20px; }
  .hero { padding: 60px 0 35px 0; }
  .features .feature-grid > div { padding: 18px 8px; min-width: 150px; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .container, .section {
    padding-left: 8px; padding-right: 8px;
  }
  .hero { padding: 36px 0 25px 0; border-radius: 0 0 18px 18px; }
  .features .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { width: 100%; }
  .section { padding: 24px 6px; margin-bottom: 38px; border-radius: 12px; }
  section.cta { padding: 32px 6px; border-radius: 14px; }
  .solution-icons, .benefit-icons { gap: 10px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 520px) {
  header {flex-direction: column; gap: 6px;}
  .footer-nav { gap: 9px; }
  .footer-contact { font-size: 0.94rem; }
  .footer-logo img { height: 26px; }
  th, td { padding: 8px 4px; }
}

/* VISUAL HIERARCHY UTILITIES */
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* UTILITIES */
.rounded { border-radius: 16px !important; }
.bg-accent { background: #EAF0FA !important; }
.bg-primary { background: #26397D !important; color: #fff !important; }
.text-accent { color: #62C3CB !important; }
.text-primary { color: #26397D !important; }

/* STATS / NUMBERS SECTION */
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0;
}
.stats ul li {
  background: #FFE8C9;
  border-radius: 12px;
  color: #273f7a;
  font-size: 1.12rem;
  padding: 14px 18px;
  margin-bottom: 8px;
  min-width: 185px;
  box-shadow: 0 2px 10px rgba(98,195,203,0.09);
}

/* ACCESSIBILITY (focus visible) */
a:focus, .cta-button:focus, .button:focus, .cookie-btn:focus {
  outline: 2px solid #62C3CB;
  outline-offset: 2px;
}

/* Color contrast for testimonial/review text (always dark text on light background) */
.testimonial-card p, .testimonial-card span,
.faq-entry p, .faq-entry h3 {
  color: #273f7a;
}

/* Hide cookie banner initially off screen by default for JS fade in UX */
.cookie-banner.hide { transform: translateY(120%); transition: transform 0.38s; pointer-events: none; }

/* END CSS */
