/* 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 {
  /* Set base font-size for hierarchical scale */
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #183154;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
b, strong { font-weight: 600; }

/* BRAND FONTS & HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #183154;
  margin-bottom: 0.6em;
  line-height: 1.1;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
p {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #183154;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
  font-size: 1.125rem;
  color: #183154;
}
ul li, ol li {
  margin-bottom: 12px;
}

/* CONTAINER & CONTENT WRAPPER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid #EEF2F4;
  box-shadow: 0 1px 12px rgba(24,49,84,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
.logo img {
  height: 38px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183154;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  padding: 8px 0;
}
nav a:hover, nav a:focus {
  color: #51A6A9;
  outline: none;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #51A6A9;
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 1.125rem;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(81,166,169,0.08);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #183154;
  color: #fff;
  box-shadow: 0 4px 24px rgba(24,49,84,0.12);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183154;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 21px;
  z-index: 150;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #51A6A9;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 400px;
  background: #fff;
  box-shadow: 8px 0 32px rgba(24,49,84,0.09);
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  padding: 32px 26px 32px 26px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #183154;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 30px;
  width: 38px;
  height: 38px;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #51A6A9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #183154;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2EFEA;
  color: #51A6A9;
}

/* HERO SECTION */
.hero {
  background: #F2EFEA;
  padding: 56px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1, .hero h2 {
  color: #183154;
}
.hero p {
  color: #183154;
}

/* SECTION SPACING & LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.cta {
  background: #F2EFEA;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24,49,84,0.04);
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24,49,84,0.06);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(24,49,84,0.08);
  transform: translateY(-2px) scale(1.01);
}
.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: 14px;
  background: #fff;
  border-left: 5px solid #51A6A9;
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(24,49,84,0.07);
  max-width: 600px;
  transition: box-shadow 0.25s, border-color 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(24,49,84,0.13);
  border-color: #183154;
}
.testimonial-card p {
  color: #212536;
  font-style: italic;
  font-size: 1.15rem;
}
.testimonial-card strong {
  color: #51A6A9;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIFIC LISTS */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.feature-grid li, .service-list li {
  background: #F2EFEA;
  padding: 20px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #183154;
  font-size: 1.07rem;
  min-width: 240px;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 10px rgba(24,49,84,0.04);
}
.feature-grid img, .service-list img, ul li img {
  height: 30px;
  width: 30px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details {
  list-style: none;
  padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #EEF2F4;
  margin-top: 32px;
  padding: 0 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 32px 20px 8px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 120px;
  margin-bottom: 12px;
}
.footer-contact {
  flex: 2 1 200px;
  font-size: 1rem;
  color: #465068;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #465068;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 2px;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #51A6A9;
}

/* BUTTONS & LINKS */
button, .cta-btn, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  outline: none;
}
button:active, .cta-btn:active, input[type="submit"]:active {
  transform: scale(0.98);
}
a { color: #183154; text-decoration: underline; }
a:hover, a:focus { color: #51A6A9; text-decoration: none; }

/* GENERAL UTILITY */
.hidden {
  display: none !important;
}
[tabindex="0"]:focus {
  outline: 2px solid #183154;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #183154;
  box-shadow: 0 -3px 24px rgba(24,49,84,0.11);
  z-index: 9999;
  padding: 22px 20px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  transition: transform 0.28s cubic-bezier(0.77,0,0.175,1), opacity 0.22s;
  width: 100vw;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  font-size: 1rem;
  line-height: 1.5;
  flex: 1 1 320px;
  min-width: 200px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: #51A6A9;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 11px 24px;
  font-size: 1rem;
  border-radius: 16px;
  transition: background 0.22s, transform 0.13s;
  cursor: pointer;
  margin-right: 0;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #183154;
}
.cookie-btn-alt {
  background: #F2EFEA;
  color: #183154;
  border: 1px solid #51A6A9;
}
.cookie-btn-alt:focus, .cookie-btn-alt:hover {
  background: #51A6A9;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(24,49,84,0.18);
}
.cookie-modal-bg.active {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 380px;
  width: 94vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(24,49,84,0.16);
  transform: translate(-50%, -50%) scale(1);
  z-index: 10002;
  padding: 36px 22px 22px 22px;
  opacity: 1;
  transition: opacity 0.22s;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-section {
  background: #F2EFEA;
  padding: 14px 14px 10px 14px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #183154;
}
.cookie-modal input[type="checkbox"]:disabled {
  accent-color: #183154;
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* CHECKBOX CUSTOMIZATION (non-strict, due to compatibility) */
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #51A6A9;
  margin-right: 4px;
}

/* ANIMATIONS */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner, .cookie-modal {
  animation: fade-in-up .28s;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN */
@media (max-width: 1050px) {
  .hero h1 { font-size: 2.1rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid, .service-list {
    gap: 16px;
    flex-direction: column;
  }
  .content-grid {
    gap: 13px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 62px;
    padding-right: 48px;
  }
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand, .footer-contact, footer nav {
    flex: 1 1 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 19px 13px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 30px 0;
  }
  section {
    padding: 24px 8px;
    margin-bottom: 37px;
  }
  .cta {
    border-radius: 8px;
    padding: 20px 7px;
  }
  .testimonial-card {
    padding: 14px 12px;
    font-size: 1rem;
  }
  .feature-grid li, .service-list li {
    min-width: 0;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 525px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.08rem; }
  nav, .cta-btn { display: none; }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .footer-brand img {
    height: 28px;
  }
  .cookie-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  .cookie-banner__text {
    font-size: 0.98rem;
  }
}

/* FOCUS & ACCESSIBILITY */
:focus {
  outline: 2px solid #51A6A9;
  outline-offset: 2px;
}

/* GENERAL MICRO-INTERACTIONS */
.cta-btn:active { transform: scale(0.97); }
header nav a {
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #51A6A9;
  transition: width .22s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  left: 0;
  bottom: -3px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
/* End of CSS */
