/* ============================================================
   CSS RESET & NORMALIZATION (MOBILE-FIRST)
   ============================================================ */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background-color: #F7FAFB;
  color: #303841;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #176A99;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #35C8E2;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 10px 8px;
}

/* ============================================================
   BRAND TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #176A99;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #303841;
}
strong {
  font-weight: 700;
}
.text-section h2, .text-section h3 {
  margin-top: 18px;
}
.text-section p {
  margin-bottom: 12px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: 1140px;
  width: 100%;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(23,106,153, 0.03);
}
@media (max-width: 900px) {
  .section { padding: 28px 8px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(23,106,153, 0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width:900px) {
  .card-container { gap: 12px; }
  .card { padding: 18px 10px; }
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FAFB;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px 0 rgba(23,106,153,0.06);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #224e67;
}
.testimonial-card strong, .testimonial-card div strong {
  color: #176A99;
  font-size: 1rem;
}
.testimonial-card span {
  color: #757875;
  font-size: .95rem;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .testimonial-card { gap: 12px; padding: 16px; }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section {
  margin-bottom: 16px;
}
.map-location {
  margin-top: 18px;
}
.contact-information ul, .contact-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topic-navigation {
  margin-top: 20px;
  margin-bottom: 8px;
}
.topic-navigation a {
  font-size: 1rem;
  color: #176A99;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.topic-navigation a:hover {
  background: #E7F3F7;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  width: 100%;
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #E0ECF2;
  box-shadow: 0px 1px 16px 0 rgba(23,106,153,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 16px 18px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #176A99;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #F2F8FB;
  color: #35C8E2;
}
.btn-primary {
  display: inline-block;
  background: #176A99;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .5px;
  padding: 12px 30px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(23,106,153,0.12);
  cursor: pointer;
  outline: none;
  margin-left: 16px;
  transition: background 0.18s, transform .14s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1199cc;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* --- Logo --- */
header img {
  max-height: 38px;
  vertical-align: middle;
  margin-right: 8px;
}

/* HIDE MOBILE MENU TOGGLE by default for larger viewports */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #176A99;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1203;
  padding: 6px 14px 6px 6px;
  border-radius: 10px;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E7F3F7;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1222;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(.92,.01,.34,1.11), opacity 0.3s;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #176A99;
  cursor: pointer;
  z-index: 1225;
  padding: 3px 10px;
  border-radius: 10px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E7F3F7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  margin-top: 80px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: #176A99;
  background: none;
  padding: 12px 30px;
  border-radius: 20px;
  width: 80vw;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F8FB;
  color: #1199cc;
}

@media (max-width: 1024px) {
  header .container nav, header .container .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ============================================================
   MAIN, SECTIONS, CTA, BUTTONS
   ============================================================ */
main {
  min-height: 60vh;
  width: 100%;
  background: none;
}

section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 900px) {
  section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
}

/* --- Icon in Li pattern --- */
ul li img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
}
ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Special Card Patterns --- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* --- CTA Buttons --- */
.btn-primary:active {
  background: #176A99;
  box-shadow: 0 1px 3px rgba(23,106,153,0.13);
}
a.btn-primary {
  text-align: center;
}

/* ============================================================
   TABLE STYLING
   ============================================================ */
table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px 0 rgba(23,106,153,0.05);
}
th {
  background: #F2F8FB;
  color: #176A99;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .03em;
  padding: 14px 12px;
}
td {
  color: #224e67;
  padding: 12px 10px;
  vertical-align: middle;
}
tr:nth-child(even) td {
  background: #F7FAFB;
}
tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   FOOTER 
   ============================================================ */
footer {
  width: 100%;
  background: #F7FAFB;
  padding: 38px 0 14px 0;
  border-top: 1px solid #E0ECF2;
  font-size: .98rem;
  box-shadow: 0 1.5px 16px rgba(23,106,153,0.04);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  color: #176A99;
  margin-bottom: 8px;
}
.footer-brand img {
  max-height: 42px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
}
footer nav a {
  color: #176A99;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: .98rem;
  transition: background 0.13s;
}
footer nav a:hover {
  background: #E0ECF2;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #224e67;
  font-size: 1rem;
}
.contact-footer a {
  color: #176A99;
  font-weight: 500;
}
.contact-footer img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .footer-brand { flex-direction: column; align-items: flex-start; }
  footer .container { gap: 18px; }
}

/* ============================================================
   COOKIE BANNER & PREFERENCES MODAL
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 17000;
  background: #f7fbfc;
  color: #224e67;
  box-shadow: 0px -3px 15px rgba(23,106,153,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px 16px 14px;
  transition: transform 0.34s cubic-bezier(.52,.02,.85,.53);
}
.cookie-banner.closed {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.01;
}
.cookie-banner.open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 22px;
  border-radius: 18px;
  border: 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  transition: background 0.18s, color 0.12s, transform .13s;
}
.cookie-btn.accept {
  background: #176A99;
  color: #fff;
}
.cookie-btn.accept:hover { background: #1199cc; }
.cookie-btn.reject {
  background: #ECEFF1;
  color: #176A99;
}
.cookie-btn.reject:hover {
  background: #e2eaf3;
}
.cookie-btn.settings {
  background: #fff;
  color: #176A99;
  border: 1px solid #176A99;
}
.cookie-btn.settings:hover {
  background: #F2F8FB;
}

.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(44,65,82, .18);
  z-index: 18000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  min-width: 320px;
  max-width: 97vw;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 44px rgba(23,106,153,.10);
  padding: 38px 24px 24px 24px;
  position: relative;
  z-index: 18100;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiePopup 0.34s ease;
}
@keyframes cookiePopup {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 22px;
  background: none;
  border: none;
  color: #176A99;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 5px 0 5px 0;
}
.cookie-pref-category label {
  font-size: 1rem;
  margin-left: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #224e67;
  font-weight: 400;
}
.cookie-pref-switch {
  width: 36px;
  height: 20px;
  background: #e7f3f7;
  border-radius: 18px;
  position: relative;
  outline: 0;
  border: 1.7px solid #d1e6f2;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
  margin-right: 3px;
}
.cookie-pref-switch[data-checked='true'] {
  background: #35C8E2;
  border-color: #35C8E2;
}
.cookie-pref-switch[data-checked='false'] {
  background: #e7f3f7;
  border-color: #d1e6f2;
}
.cookie-pref-switch-indicator {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 3px;
  transition: left 0.17s;
}
.cookie-pref-switch[data-checked='true'] .cookie-pref-switch-indicator {
  left: 17px;
}
.cookie-pref-switch[aria-disabled='true'] {
  opacity: 0.65;
  cursor: not-allowed;
}
/* ============================================================
   TRANSITIONS, SHADOWS, ANIMATIONS
   ============================================================ */
.card, .section, .testimonial-card, .btn-primary, .cookie-modal {
  transition: box-shadow 0.19s, background 0.16s, transform 0.10s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(23,106,153,.08);
  transform: translateY(-2px) scale(1.01);
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width:900px) {
  h1 { font-size: 1.65rem; }
  .section, section { padding: 16px 0; }
  .content-wrapper { gap: 18px; }
  .testimonial-card { padding: 11px; gap: 8px; }
  .card { padding: 15px 6px; }
}
@media (max-width:600px) {
  .container { padding: 0 3vw; }
  h2 { font-size: 1.18rem; margin-bottom: 14px; }
  h1 { font-size: 1.23rem; margin-bottom: 16px; }
  .btn-primary, .cookie-btn { font-size: 1rem; padding: 10px 13px; }
  footer nav { flex-direction: column; gap: 3px; }
  .footer-brand { font-size: .98rem; gap: 6px;} 
}
@media (max-width:420px) {
  .footer-brand img, header img {
    max-height:28px;
  }
}

/* ============================================================
   SCANDINAVIAN CLEAN EXTRAS
   ============================================================ */
body, .section, .card, .testimonial-card {
  background-color: #F7FAFB;
}
.section, .card, .testimonial-card, table {
  box-shadow: 0 2px 12px 0 rgba(23,106,153,0.03);
}
.card, .section, .testimonial-card, table {
  border-radius: 14px;
}

::-webkit-scrollbar { width: 10px; background: #E7F3F7; }
::-webkit-scrollbar-thumb { background: #bdd9ef; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #35C8E2; }

/* Accessibility: ensure all focusable get a visible focus indicator */
:focus {
  outline: 2.3px dotted #35C8E2;
  outline-offset: 1.5px;
}

/* Fix for always minimum gaps between cards/sections (MANDATORY) */
.section + .section, .testimonial-card + .testimonial-card, .card + .card {
  margin-top: 24px !important;
}

/* Distinctive testimonial/review block readability (MANDATORY CONTRAST) */
.testimonial-card, #testimonials .testimonial-card {
  background: #ecf6fa;
  border-left: 5px solid #35C8E2;
  color: #224e67;
}
.testimonial-card p, .testimonial-card strong, .testimonial-card span {
  color: #224e67;
}

/* Utility spacings for min margin between cards/sections*/
.card, .section {
  margin-bottom: 20px;
}

/* =================== END OF STYLE.CSS =================== */
