/* --- 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, menu, 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,
main, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #133643;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #13BF8B;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #144C66;
}
ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #144C66;
  line-height: 1.15;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0 #DCE6EA;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 0 #DCE6EA;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #133643;
  margin-bottom: 14px;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #13BF8B;
  background: #DCE6EA;
  border-left: 4px solid #13BF8B;
  padding: 22px 28px 18px 20px;
  margin: 30px 0 20px 0;
  border-radius: 12px 24px 12px 4px;
  box-shadow: 0 2px 10px 2px rgba(17,191,139,0.10);
}
blockquote span {
  color: #144C66;
  display: block;
  margin-top: 8px;
  font-weight: 400;
}

strong {
  color: #144C66;
  font-weight: 700;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 2px 14px 2px rgba(20,76,102,0.09), 0 1.5px 8px 2px #dce6ea66;
  position: relative;
  transition: box-shadow .32s, transform .2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 32px 5px rgba(17,191,139,0.13), 0 2.5px 9px 2px #13BF8B22;
  z-index: 2;
}

.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 28px;
  background: #FFF;
  border: 2.5px dashed #13BF8B;
  border-radius: 20px 32px 20px 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px 0 rgba(20,76,102,0.08), 0 3.5px 11px 0 #DCE6EA33;
  color: #133643;
  transition: box-shadow .2s, border-color .21s;
}
.testimonial-card:hover {
  border-color: #144C66;
  background: #DCE6EA;
  box-shadow: 0 6px 36px 5px rgba(20,76,102,0.13);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #DCE6EA;
  border-radius: 18px 40px 22px 10px;
  box-shadow: 0 4px 16px 3px rgba(20,76,102,0.08);
  padding: 28px 22px;
  flex: 1 1 200px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px #13BF8B40);
  margin-bottom: 8px;
}
.feature-item h3 {
  margin-bottom: 4px;
  color: #118765;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item:hover {
  box-shadow: 0 7px 30px 5px #13BF8B33, 0 1.5px 5px 1px #DCE6EA44;
  background: #fff;
}

.fact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 10px 0;
}
.fact-boxes > div {
  flex: 1 1 210px;
  border-radius: 14px 34px 14px 12px;
  background: #13BF8B11;
  color: #144C66;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 18px 16px;
  box-shadow: 0 1.5px 7px 1px #13BF8B18;
  border-left: 4px solid #13BF8B;
}

.benefit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 0 0;
}
.benefit-points span {
  color: #13BF8B;
  background: #DCE6EA;
  padding: 8px 18px;
  border-radius: 22px 8px 16px 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  display: inline-block;
  letter-spacing: .5px;
  box-shadow: 0 1px 5px 0 #13BF8B12;
}

/* --- Header & Navigation --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #DCE6EA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 9px 0 #13BF8B13;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #144C66;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .17s, color .18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #13BF8B18;
  color: #13BF8B;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .6px;
  text-decoration: none;
  border-radius: 32px 7px 25px 12px;
  box-shadow: 0 3px 12px 0 #13bf8b1a;
  transition: background .18s, color .16s, transform .16s, box-shadow .18s;
  outline: none;
  border: 0;
  cursor: pointer;
}
.cta-primary {
  background: #13BF8B;
  color: #fff;
  font-size: 1.13rem;
  padding: 12px 30px;
  margin-left: 28px;
  border: 2.5px solid #13BF8B;
}
.cta-primary:hover, .cta-primary:focus {
  background: #118765;
  color: #fff;
  transform: translateY(-2px) scale(1.047);
  box-shadow: 0 2.5px 24px 4px #13BF8B33;
}
.cta-secondary {
  background: #144C66;
  color: #fff;
  font-size: 1rem;
  padding: 10px 22px;
  margin-top: 14px;
  border: 2px solid #144C66;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #13BF8B;
  border-color: #13BF8B;
  color: #fff;
  transform: scale(1.035);
}

/* --- Mobile Navigation --- */
.mobile-menu-toggle {
  display: none;
  background: #13BF8B;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 7px 19px 7px 14px;
  border-radius: 14px 32px 12px 4px;
  margin-left: 12px;
  cursor: pointer;
  transition: background .21s;
  z-index: 60;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #144C66;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 98vw;
  height: 100vh;
  background: #144c668f;
  z-index: 160;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.69,1.34,.36,.98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: transparent;
  color: #fff;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 16px 0;
  cursor: pointer;
  z-index: 200;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 30px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  padding: 13px 18px;
  border-radius: 17px 6px 12px 3px;
  background: rgba(20,76,102,0.70);
  margin-right: 18px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .16s, color .16s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #13BF8B;
  color: #fff;
}

/* --- Main --- */
main {
  min-height: 62vh;
  padding: 36px 0 90px 0;
  background: #fff;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-list li,
.usp-list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 36px;
  font-size: 1.08rem;
}
.usp-list li img,
.contact-info li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
}
.usp-list li strong {
  margin-left: 6px;
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: #133643;
}
.contact-info li img {
  width: 22px;
  height: 22px;
  margin-right: 3px;
}

/* --- Footer --- */
footer {
  width: 100%;
  background: #DCE6EA;
  border-top: 2px solid #13BF8B44;
  padding: 30px 0 18px 0;
  box-shadow: 0 -3px 18px -6px #13BF8B15;
  font-size: 0.95rem;
  color: #144C66;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #144C66;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background .15s;
}
footer nav a:hover, footer nav a:focus {
  background: #13BF8B44;
}
footer img {
  height: 34px;
}
.contact-brief {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #144C66;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.contact-brief img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

/* --- Animations & Transitions --- */
@keyframes popIn {
  0% { transform: scale(0.94) translateY(22px); opacity: 0.3; }
  60% { opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.feature-item, .testimonial-card, .card {
  animation: popIn .72s cubic-bezier(.16,1.26,.44,.99) both;
}
.cta-primary, .cta-secondary, .mobile-menu-toggle {
  transition: background .18s, color .16s, transform .18s, box-shadow .13s;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1210;
  background: #144C66;
  color: #fff;
  padding: 26px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 18px 3px #13364325;
  border-radius: 18px 18px 0 0;
  animation: popIn .7s;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner p {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-btns .cta-cookie {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 18px 8px 10px 3px;
  border: none;
  outline: none;
  margin: 0;
  background: #13BF8B;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #144C6611;
  transition: background .16s;
}
.cookie-banner button.accept {
  background: #13BF8B;
}
.cookie-banner button.reject {
  background: #d94d4d;
}
.cookie-banner button.settings {
  background: #144C66;
  border: 2px solid #13BF8B;
  color: #13BF8B;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #118765;
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #13BF8B;
  color: #fff;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1300;
  align-items: center;
  justify-content: center;
  background: #144C66D8;
  animation: popIn .5s;
}
.cookie-modal.open {
  display: flex;
  animation: popIn .35s;
}
.cookie-modal-dialog {
  background: #fff;
  color: #133643;
  border-radius: 28px 18px 16px 6px;
  box-shadow: 0 6px 30px 7px #13BF8B1A;
  padding: 40px 36px 32px 36px;
  min-width: 360px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: #144C66;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #144C66;
}
.cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.cookie-category[data-essential] {
  background: #13BF8B1A;
  color: #13BF8B;
}
.cookie-category input[type="checkbox"] {
  transform: scale(1.35);
  accent-color: #13BF8B;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 12px 7px 12px 3px;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 19px;
  border: inherit;
  background: #13BF8B;
  color: #fff;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-actions button.save {
  background: #13BF8B;
}
.cookie-modal-actions button.cancel {
  background: #d94d4d;
}
.cookie-modal-actions button:focus, .cookie-modal-actions button:hover {
  background: #144C66;
  color: #fff;
}

/* --- Responsive Layout & Spacing --- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  .content-wrapper {
    max-width: 95vw;
  }
  .feature-item, .fact-boxes > div {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 21px !important;
  }
  .feature-grid, .fact-boxes {
    flex-direction: column !important;
    gap: 17px !important;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  main {
    padding: 18px 0 72px 0;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  header nav, footer nav {
    gap: 11px;
    flex-wrap: wrap;
  }
  .cta-primary {
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.06rem;
    padding: 10px 18px;
  }
}
@media (max-width: 650px) {
  .section {
    padding: 28px 1vw;
    margin-bottom: 44px;
  }
  .content-wrapper, .container {
    max-width: 99vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .text-image-section, .content-grid, .feature-grid, .card-container, .fact-boxes {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.05rem !important;
  }
  .benefit-points {
    gap: 9px;
  }
  .testimonial-card, .feature-item, .card {
    padding: 17px 8vw 17px 5vw;
    font-size: 1rem;
  }
  .service-list li, .usp-list li {
    font-size: .97rem;
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .feature-item img {
    width: 40px;
    height: 40px;
  }
  .footer .contact-brief {
    font-size: .90rem;
  }
}
@media (max-width: 510px) {
  h1 { font-size: 1.36rem; }
  .card, .feature-item, .testimonial-card {
    padding: 11px 4vw 11px 4vw;
    font-size: .99rem;
  }
  .cookie-modal-dialog {
    min-width: 90vw;
    padding: 25px 7vw;
  }
  .cookie-banner {
    font-size: .94rem;
    padding: 17px 2vw 11px 2vw;
  }
  body {
    font-size: 15px;
  }
}

/* --- Burger Menu Display Rules --- */
@media (max-width: 860px) {
  header nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu overlay on large screens */
@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Custom Artistic Touches --- */
h1, h2, h3 {
  background: none;
  background-clip: unset;
  color: #144C66;
}
.section, .card, .testimonial-card, .feature-item, .fact-boxes > div {
  position: relative;
  overflow: visible;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  left: 12px; top: -20px;
  width: 60px; height: 10px;
  background: #13BF8B;
  border-radius: 45px 4px 25px 4px;
  opacity: .12;
  z-index: 0;
  pointer-events: none;
}
.card::before, .testimonial-card::before, .feature-item::after {
  content: '';
  display: block;
  position: absolute;
  right: -18px; top: 18px;
  width: 36px; height: 36px;
  background: #DCE6EA;
  border-radius: 35px 10px 28px 12px;
  opacity: 0.18;
  z-index: 0;
}
.feature-item::after {
  right: -8px; top: -12px;
  width: 32px; height: 14px;
  background: #13BF8B;
  opacity: .17;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.hide { display: none !important; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* --- Accessibility --- */
:focus-visible {
  outline: 2.5px dashed #13BF8B;
  outline-offset: 2.5px;
}

/* --- End CSS --- */
