/* RESET & BASE STYLES */
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 {
  scroll-behavior: smooth;
}

body {
  background: #F2F6F7;
  color: #18212A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

*, *::before, *::after { box-sizing: inherit; }

/* TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #336C85;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; color: #18212A; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }
p, ul, ol, li { font-size: 1rem; }
strong { font-weight: 700; }

ul, ol { margin-left: 24px; margin-bottom: 16px; }
ul li, ol li { margin-bottom: 8px; }
a { color: #336C85; text-decoration: none; transition: color .2s; font-weight: 500; }
a:hover, a:focus { color: #80B09A; }

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* SECTIONS, LAYOUTS, FLEXBOX */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(51,108,133,0.08);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 30px 0 rgba(51,108,133,.22);
  transform: translateY(-3px) scale(1.02);
}
.content-grid, .feature-grid, .service-overview-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-overview-grid > div {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(51,108,133,0.10);
  padding: 28px 20px 24px 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
}
.feature-grid > div:hover, .service-overview-grid > div:hover {
  box-shadow: 0 6px 30px rgba(51,108,133,0.20);
  transform: translateY(-2px) scale(1.01);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 30px 20px 30px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(51,108,133,0.10);
  min-width: 270px;
  max-width: 380px;
  position: relative;
}
.testimonial-card p {
  color: #19232e;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #336C85;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.faq-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list h3 {
  color: #336C85;
  margin-bottom: 5px;
}
.faq-list p {
  margin-bottom: 0;
}

.service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-overview-grid > div {
  flex: 1 1 calc(30% - 24px);
  min-width: 250px;
  max-width: 330px;
  background: #FFF;
  border-radius: 14px;
  padding: 28px 18px 24px 18px;
  box-shadow: 0 2px 12px rgba(51,108,133,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  transition: box-shadow .25s, transform .25s;
}
.service-overview-grid > div:hover {
  box-shadow: 0 6px 28px rgba(51,108,133,0.20);
  transform: translateY(-2px) scale(1.01);
}
.price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #80B09A;
  color: #FFF;
  border-radius: 10px;
  padding: 5px 15px;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* BUTTONS, CTAs */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 13px 34px;
  display: inline-block;
  transition: background .23s, color .23s, box-shadow .23s, transform .18s;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 6px rgba(51,108,133,0.09);
  outline: none;
}
.cta.primary {
  background: #336C85;
  color: #FFF;
}
.cta.primary:hover, .cta.primary:focus {
  background: #80B09A;
  color: #FFF;
  box-shadow: 0 3px 22px 0 rgba(51,108,133,0.16);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #FFF;
  color: #336C85;
  border: 2px solid #336C85;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #336C85;
  color: #FFF;
  border-color: #80B09A;
  box-shadow: 0 3px 22px 0 rgba(51,108,133,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* NAVIGATION */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 3px 20px 0 rgba(51,108,133,0.10);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 18px;
}
header img {
  height: 52px;
  margin-right: 26px;
  flex-shrink: 0;
}
nav.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav.main-nav a {
  color: #336C85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 16px;
  padding: 7px 20px;
  transition: background .2s, color .2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #336C85;
  color: #FFF;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #daeef6;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.93;
  transition: color .2s;
}
.footer-nav a:hover {
  color: #80B09A;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #336C85;
  background: none;
  border: none;
  padding: 5px 14px;
  cursor: pointer;
  border-radius: 8px;
  line-height: 1;
  transition: background .2s, color .2s;
  z-index: 1010;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2F6F7;
  color: #80B09A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.87,-0.41,.19,1.36);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: -4px 0 22px rgba(51,108,133,.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #336C85;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 24px 28px 6px 0;
  cursor: pointer;
  z-index: 1230;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #80B09A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  width: 100%;
  padding: 0 40px 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #336C85;
  padding: 10px 0;
  transition: color .2s;
  width: 100%;
}
.mobile-nav a:hover {
  color: #80B09A;
}

/* Hamburger visible only on mobile */
@media (max-width: 1050px) {
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1051px) {
  .mobile-menu { display: none !important; }
}

/* MOBILE ONLY RESPONSIVE NAV */
@media (max-width: 1050px) {
  header .container {
    flex-wrap: wrap;
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    min-height: 64px;
  }
}

/* FOOTER */
footer {
  width: 100%;
  background: #336C85;
  color: #FFF;
  padding-top: 34px;
  padding-bottom: 26px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer img {
  height: 48px;
  margin-bottom: 8px;
}
footer p {
  color: #e6eef2;
  font-size: 1rem;
  margin-top: 4px;
  opacity: 0.95;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: #336C85;
  color: #FFF;
  padding: 28px 30px 20px 30px;
  width: 100vw;
  box-shadow: 0 -5px 24px rgba(51,108,133,0.18);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: transform .4s cubic-bezier(.7,.03,.36,.98);
  font-size: 1rem;
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  margin-right: 0;
  transition: background .21s, color .21s, box-shadow .15s;
}
.cookie-banner .accept {
  background: #80B09A;
  color: #FFF;
}
.cookie-banner .accept:hover {
  background: #FFF;
  color: #336C85;
  box-shadow: 0 1px 7px #80B09A44;
}
.cookie-banner .reject {
  background: transparent;
  color: #FFF;
  border: 2px solid #FFF;
}
.cookie-banner .reject:hover {
  background: #FFF;
  color: #336C85;
}
.cookie-banner .settings {
  background: #FFF;
  color: #336C85;
  border: 2px solid #80B09A;
}
.cookie-banner .settings:hover {
  background: #80B09A;
  color: #FFF;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,33,42,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100vw);
  transition: transform .33s cubic-bezier(.7,.03,.36,.98);
}
.cookie-modal.open {
  transform: translateY(0);
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 10px 48px 0 rgba(51,108,133,0.22);
  color: #18212A;
  width: 98vw;
  max-width: 430px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.55rem;
  color: #336C85;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #336C85;
}
.cookie-modal-content .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 1.45rem;
  color: #336C85;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #80B09A;
}

/* SECTIONS - OVERRIDES FOR SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING FIXES */
main > section {
  margin-bottom: 60px;
}
.content-wrapper > * {
  margin-bottom: 0;
}

/* FORMS and INTERACTIONS (If any forms added) */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
}
input, select, textarea {
  border: 1.5px solid #A9BCC5;
  padding: 10px 14px;
  margin-bottom: 12px;
  outline: none;
  background: #FFF;
  transition: border .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #336C85;
}

/* IMAGES & ICONS */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.feature-grid img, .service-overview-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 9px;
  border-radius: 10px;
  background: #F2F6F7;
  box-shadow: 0 2px 6px #E8EFF2;
  object-fit: contain;
  padding: 5px;
}

/* UTILITY: GEOMETRIC SHAPES */
.geometric-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  background: #80B09A;
  opacity: .09;
  border-radius: 14px 50% 40% 30%;
  z-index: 0;
  pointer-events: none;
}

/* HOVER/FOCUS MICROINTERACTIONS */
button, .cta, input, a, .card, .feature-grid > div, .service-overview-grid > div {
  transition: background .21s, color .21s, border .16s, box-shadow .21s, transform .13s;
}
button:focus-visible, .cta:focus-visible, a:focus-visible {
  outline: 2.5px solid #336C85;
  outline-offset: 2.5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .feature-grid, .service-overview-grid, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid > div, .service-overview-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 10px;
  }
  section, .section {
    padding: 30px 0 26px 0;
    margin-bottom: 38px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .footer-nav {
    gap: 13px;
    font-size: 0.93rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 22px;
  }
  nav.main-nav {
    gap: 10px;
  }
  .feature-item {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 20px 14px 16px 14px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-banner-buttons { gap: 10px; }
}
@media (max-width: 420px) {
  .cookie-modal-content {
    padding: 18px 5px 11px 5px;
    max-width: 97vw;
  }
}

/* PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container { padding: 0 !important; }
}
