/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  background: #F2F8FB;
  color: #185B8F;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(24,91,143,0.08);
}
a {
  color: #185B8F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C28500;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #185B8F;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.16; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.17rem; margin-bottom: 12px; }
.section h1, .section h2, .section h3, .section h4 { margin-top: 0; }
p { font-size: 1rem; color: #1B2942; margin-bottom: 16px; }
strong { font-weight: 700; color: #1B2942; }

/* LAYOUT CONTAINERS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(24,91,143,0.05);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(24,91,143,0.07);
  position: relative;
  flex: 1 1 240px;
  min-width: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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;
  background: #F2F8FB;
  border-left: 5px solid #185B8F;
  border-radius: 14px;
  padding: 20px 32px 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(24,91,143,0.07);
  color: #1B2942;
}
.testimonial-card strong {
  color: #185B8F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #185B8F;
  margin-top: 18px;
}
dd {
  margin-left: 0;
  margin-bottom: 14px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(24,91,143,0.06);
  position: relative;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 20px;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover:not(.cta), header nav a:focus:not(.cta) {
  background: #F2F8FB;
  color: #C28500;
}
header nav a.cta {
  color: #fff;
  background: #185B8F;
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 800;
  margin-left: 10px;
  border: 2px solid #185B8F;
  box-shadow: 0 2px 7px rgba(24,91,143,0.12);
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #C28500;
  border-color: #C28500;
  color: #fff;
}

header nav img {
  height: 48px;
  margin-right: 18px;
  margin-bottom: 0 !important;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #185B8F;
  margin-left: auto;
  cursor: pointer;
  z-index: 301;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: none;
  color: #C28500;
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(-100%);
  z-index: 300;
  transition: transform 0.35s cubic-bezier(0.77,0,.18,1);
  box-shadow: 4px 0 28px rgba(24,91,143,0.13);
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #185B8F;
  background: none;
  border: none;
  margin: 22px 22px 0 auto;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #C28500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 36px 36px 36px;
}
.mobile-nav a {
  color: #185B8F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 0 6px 0;
  width: 100%;
  border-radius: 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C28500;
  text-decoration: underline;
}

@media (max-width: 991px) {
  header nav {
    gap: 5px;
    flex-wrap: wrap;
    font-size: 0.97rem;
  }
  header nav img {
    height: 39px;
    margin-right: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* BUTTONS, CTA's AND INTERACTIVE */
.cta, .button, button, input[type='submit'] {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #185B8F;
  border: 2px solid #185B8F;
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 6px rgba(24,91,143,0.13);
}
.cta:hover, .cta:focus,
.button:hover, .button:focus,
button:hover, button:focus,
input[type='submit']:hover, input[type='submit']:focus {
  background: #C28500;
  color: #fff;
  border-color: #C28500;
  box-shadow: 0 3px 12px rgba(194,133,0,0.12);
}

/* ICONS */
ul li img, ol li img, .text-section p img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}

/* LISTS */
ul, ol {
  margin-bottom: 14px;
  padding-left: 0;
}
ul li,
ol li {
  position: relative;
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
  font-size: 1rem;
  color: #1B2942;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

/* SPECIAL FLEX CONTAINERS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* FOOTER */
footer {
  background: #185B8F;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: 45px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline transparent;
  transition: color 0.17s, text-decoration 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFB400;
  text-decoration: underline #FFB400 2px;
}
footer p {
  color: #F2F8FB;
  font-size: 1rem;
  margin: 3px 0 0 0;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 24px rgba(24,91,143,0.11);
  border-top: 4px solid #185B8F;
  z-index: 5000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookieIntro 0.6s cubic-bezier(0.32,0,0.67,0) both;
}
@keyframes cookieIntro {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.cookie-banner p {
  color: #185B8F;
  font-size: 1.05rem;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-actions .cookie-accept {
  background: #185B8F;
  border: 2px solid #185B8F;
}
.cookie-actions .cookie-reject {
  background: #fff;
  color: #185B8F;
  border: 2px solid #185B8F;
}
.cookie-actions .cookie-reject:hover, .cookie-actions .cookie-reject:focus {
  background: #185B8F;
  color: #fff;
}
.cookie-actions .cookie-settings {
  background: #F2F8FB;
  color: #1B2942;
  border: 2px solid #C28500;
}
.cookie-actions .cookie-settings:hover, .cookie-actions .cookie-settings:focus {
  background: #C28500;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,91,143,0.24);
  z-index: 7000;
  animation: fadeIn 0.2s;
  display: none;
}
.cookie-modal-backdrop.open { display: block; }
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  box-shadow: 0 14px 60px rgba(24,91,143,0.13);
  z-index: 7500;
  width: 95vw;
  max-width: 432px;
  padding: 38px 28px 32px 28px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: modalFadeIn 0.28s cubic-bezier(0.72,0.04,0.58,1.15);
}
.cookie-modal.open { display: flex; }
@keyframes modalFadeIn {
  from { opacity:0; transform: translate(-50%,-40%) scale(.95); }
  to   { opacity:1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  margin-bottom: 5px;
  color: #185B8F;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal label {
  font-weight: 600;
  color: #1B2942;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal input[type=checkbox]:disabled {
  accent-color: #C28500;
  opacity: 0.48;
  cursor: not-allowed;
}
.cookie-category-desc {
  font-size: 0.98rem;
  color: #284A69;
  margin-left: 0.7em;
}
.cookie-modal .button-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.cta, .button, button, input[type='submit'] {
  transition: background 0.18s, color 0.16s, border-color 0.16s, box-shadow 0.14s, transform 0.15s;
}
.cta:active, .button:active, button:active, input[type='submit']:active {
  transform: scale(0.97);
}
.mobile-menu, .mobile-menu-close {
  transition: all 0.32s cubic-bezier(.79,.01,.24,1.19);
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 768px) {
  h1    { font-size: 2rem; }
  h2    { font-size: 1.5rem; }
  h3    { font-size: 1.13rem; }
  .container { padding: 0 8px; }
  .section {
    padding: 22px 6px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .card {
    min-width: 90vw;
    padding: 19px 10px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px 12px 16px 15px;
    border-radius: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card-container,
  .content-grid,
  .feature-item {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===== GEOMETRIC/STRUCTURED DESIGN ELEMENTS ===== */
.section {
  border-radius: 18px 4px 18px 4px;
  border: 2.5px solid #185B8F;
  overflow: hidden;
}
.card {
  border-radius: 14px 4px 14px 4px;
  border: 2px solid #FFB400;
}
.testimonial-card {
  border-radius: 12px 5px 12px 5px;
}
.cta, .button, button, input[type='submit'] {
  border-radius: 8px 0 14px 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(24,91,143,0.10);
  font-size: 1.025rem;
}

/* DECORATIVE SHAPES and ANGLES */
.section:before {
  content: '';
  display: block;
  position: absolute;
  width: 54px; height: 54px;
  background: #FFB400;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 85%);
  left: -10px; top: -12px;
  opacity: 0.16;
  z-index: 0;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  width: 40px; height: 40px;
  background: #185B8F;
  clip-path: polygon(0 25%, 80% 0, 100% 100%, 5% 95%);
  right: -8px; bottom: -12px;
  opacity: 0.10;
  z-index: 0;
}
.card:before {
  content: '';
  position: absolute;
  right: 14px; top: 14px;
  width: 28px; height: 11px;
  background: #185B8F;
  opacity: 0.09;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 9% 100%);
}

@media (max-width: 768px) {
  .section:before, .section:after, .card:before {display: none;}
}

/* ==== FORM and FAQ ==== */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #185B8F;
  margin-bottom: 6px;
}
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 11px 12px;
  border-radius: 7px;
  border: 1.5px solid #C3D5E6;
  background: #F2F8FB;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 5px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #185B8F;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2.5px solid #C28500;
  outline-offset: 1.5px;
}

/* Z-INDEX/STACKING */
header, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-backdrop {
  z-index: 1000;
}

/* MISC */
::-webkit-input-placeholder { color: #54799E; opacity:1; }
::-moz-placeholder { color: #54799E; opacity:1; }
:-ms-input-placeholder { color: #54799E; opacity:1; }
::placeholder { color: #54799E; opacity:1; }

/* HIDE / SHOW Utility */
.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block; } }

/* Extra Spacing on body for cookie banner */
body.has-cookie-banner {
  padding-bottom: 92px;
}

/* Prevent elements from overlapping: minimum spacing */
.section + .section, .card + .card, .testimonial-card + .testimonial-card, .content-wrapper > * + * {
  margin-top: 20px !important;
}

/* Utility classes */
.mt-32 { margin-top: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100%!important; }

/* END OF STYLE.CSS */
