/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #1D3557;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #457B9D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; margin-bottom:24px; }
h2 { font-size: 2rem; margin-bottom:18px; }
h3 { font-size: 1.25rem; margin-bottom:12px; }
h4 { font-size: 1.125rem; }

/* Layout containers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.07), 0 1.5px 3px rgba(29, 53, 87, 0.04);
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(29,53,87,0.08);
  transition: box-shadow 0.2s, transform .18s;
  position: relative;
  flex: 1 1 250px;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(69,123,157,.12), 0 1.5px 6px rgba(29,53,87,0.10);
  transform: translateY(-4px) scale(1.016);
}

.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: center;
  gap: 20px;
  background: #F1FAEE;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 6px rgba(29,53,87,0.08);
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  color: #1D3557;
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #457B9D;
  font-weight: 700;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero Section */
.hero {
  background: linear-gradient(94deg, #f7f8fa 65%, #F1FAEE 100%);
  padding: 64px 0 48px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #1D3557;
  margin-bottom: 18px;
}
.hero .subheadline {
  font-size: 1.125rem;
  margin-bottom: 28px;
  color: #457B9D;
}

/* Features Section */
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: space-between;
  margin-top: 24px;
}
.features .content-wrapper > ul > li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.05);
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow .15s;
}
.features .content-wrapper > ul > li:hover {
  box-shadow: 0 6px 24px 0 rgba(29,53,87,0.14);
}
.features img {
  max-width: 34px;
  margin-bottom: 8px;
}
.features h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

/* Badges List */
.badges-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 18px;
  align-items: center;
}
.badges-list li {
  background: #F1FAEE;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 7px;
  padding: 8px 18px 8px 10px;
  font-weight: 500;
  color: #1D3557;
  font-size: 1rem;
}
.badges-list img {
  max-width: 24px;
}

/* Process Steps (Index) */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 28px;
}
.process-steps > li {
  flex: 1 1 220px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(29,53,87,0.08);
  border-radius: 10px;
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-steps img {
  max-width: 30px;
  margin-bottom: 8px;
}
.process-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* CTA Section */
.cta {
  background: #F1FAEE;
  text-align: center;
  border-radius: 10px;
  margin: 40px 0;
  padding: 40px 20px;
}
.cta h2 {
  margin-bottom: 16px;
}
.cta p {
  margin-top: 16px;
  color: #457B9D;
  font-size: 1rem;
}
.cta .btn-primary { margin-top: 10px; }

/* Footer */
footer {
  background: #1D3557;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px 30px 20px;
}
.footer-brand img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 160px;
}
.footer-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A9CEF4;
}
.footer-contact p, .footer-contact a {
  color: #E3EAF5;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
.footer-contact a:hover {
  color: #A9CEF4;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 22px 0 24px 0;
  font-size: 1rem;
}
thead th {
  text-align: left;
  background: #457B9D;
  color: #fff;
  padding: 12px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tbody td {
  padding: 12px 10px;
  border-top: 1px solid #E3EAF5;
}
tr:nth-child(even) td {
  background: #F7F8FA;
}

/* USP chips and lists */
.usp {
  display: flex;
  align-items: center;
  background: #F1FAEE;
  color: #1D3557;
  border-radius: 6px;
  padding: 7px 16px 7px 10px;
  font-weight: 500;
  margin: 0 0 8px 0;
  font-size: 1rem;
}

/* Strong Content Emphasis */
strong { font-weight: 700; }

/* FAQ (dt/dd) */
dl {
  margin-top: 18px;
  margin-bottom: 24px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 18px;
  color: #1D3557;
}
dd {
  margin-bottom: 8px;
  margin-left: 18px;
  color: #457B9D;
}

/* FAQ input */
input[type="search"] {
  width: 100%;
  max-width: 340px;
  padding: 10px 14px;
  border: 1px solid #A9CEF4;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.18s;
  color: #1D3557;
}
input[type="search"]:focus {
  border-color: #457B9D;
}

/* Buttons */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 30px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.1;
  background: #1D3557;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.08);
  cursor: pointer;
  transition: background .16s, transform .13s, box-shadow .16s;
  margin-bottom: 10px;
  min-width: 170px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #457B9D;
  box-shadow: 0 4px 18px rgba(69,123,157,.13);
  transform: translateY(-2px);
}

/* Home Button on Thank You */
.content-wrapper[style*="text-align:center"] .btn-primary {
  display: inline-flex;
  margin: 24px auto 8px auto;
}

/* Mobile menu toggle burger button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1D3557;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 48px;
  height: 48px;
  padding: 0;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(29,53,87,.98);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #fff;
  font-size: 2.25rem;
  position: absolute;
  top: 18px; right: 22px;
  cursor: pointer;
  z-index: 1060;
  transition: color .16s;
}
.mobile-menu-close:hover { color: #457B9D; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 90px 0 0 42px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.36rem;
  padding: 10px 0;
  text-decoration: none;
  transition: color .18s;
  border-radius: 6px;
}
.mobile-nav a:hover {
  color: #A9CEF4;
  background: #457B9D;
  padding-left: 16px;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(29,53,87,0.045);
  width: 100%;
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 0 20px;
}
.logo img {
  height: 44px;
  display: block;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex: 1 1 auto;
}
header nav a {
  color: #1D3557;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #F1FAEE;
  color: #457B9D;
}
header .btn-primary {
  margin-left: auto;
  min-width: 140px;
  font-size: 1.02rem;
  padding: 10px 24px;
}

/* List style for lists in contact, about, etc */
.text-section ul, .content-wrapper ul {
  list-style: none;
  padding: 0;
}
.text-section li, .content-wrapper ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.text-section img, .content-wrapper ul li img {
  max-width: 23px;
  height: auto;
}
.text-section h2 {
  margin-bottom: 10px;
  font-size: 1.36rem;
}

/* General spacing for section containers */
main > section, .main-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Simple modal overlay for cookies */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 10px;
  right: 10px;
  z-index: 1200;
  background: #1D3557;
  color: #fff;
  padding: 22px 28px 18px 28px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 24px rgba(29,53,87,.14);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.05rem;
  justify-content: space-between;
  animation: slideup-banner .36s cubic-bezier(.45,.29,.52,1.06);
}
@keyframes slideup-banner {
  from { transform: translateY(130px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 220px;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
.cookie-btn {
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .11s, color .12s;
  padding: 10px 22px;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: #457B9D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1D3557;
}
.cookie-btn.reject {
  background: #F1FAEE;
  color: #1D3557;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #457B9D;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #F1FAEE;
  padding: 10px 18px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #1D3557;
  background: #F1FAEE;
  border-color: #1D3557;
}

/* Cookie modal */
.cookie-settings-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(29,53,87,.90);
  z-index: 1250;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal .24s cubic-bezier(.37,.13,.65,1.05);
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 38px 30px 26px 30px;
  min-width: 340px;
  max-width: 98vw;
  box-shadow: 0 6px 60px rgba(29,53,87,0.20);
  color: #1D3557;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  border: none;
  background: none;
  color: #1D3557;
  font-size: 1.62rem;
  cursor: pointer;
  z-index: 6;
  line-height: 1;
  transition: color .17s;
}
.cookie-modal-close:hover { color: #457B9D; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #457B9D;
  margin-right: 6px;
  width: 19px; height: 19px;
}
.cookie-category.essential label { color: #1D3557; }
.cookie-category.essential input {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
@media (max-width:560px) {
  .cookie-modal-content {
    min-width: 92vw;
    padding: 20px 8px 20px 8px;
  }
}

/* Responsive Design - Mobile First */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .features .content-wrapper > ul > li, .process-steps > li {
    max-width: 100%;
  }
  .badges-list {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
}
@media (max-width: 800px) {
  .features .content-wrapper > ul {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .process-steps {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .badges-list {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  .hero .content-wrapper, .content-grid,
  .footer-nav, .footer-contact,
  .section, main > section, .main-section {
    padding: 24px 8px;
  }
  header .container {
    padding: 0 8px;
    min-height: 58px;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .process-steps {
    flex-direction: column;
    gap: 13px;
  }
  .section, main > section, .main-section {
    margin-bottom: 44px;
  }
  .cta {
    padding: 32px 8px;
    margin: 24px 0;
  }
}
@media (max-width: 540px) {
  .container, .footer .container {
    padding: 0 4px;
  }
  .hero, .section, main > section, .main-section {
    padding: 15px 2px;
  }
  .cta {
    padding: 18px 4px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 11px 10px 13px;
  }
}

/* Nice scrollbars for overflow on desktop */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #A9CEF4;
  border-radius: 7px;
}
body::-webkit-scrollbar-track {
  background: #F7F8FA;
}

/* Subtle animations for cards */
.card, .features .content-wrapper > ul > li, .testimonial-card,
.process-steps > li {
  transition: box-shadow .18s, transform .12s;
}
.card:focus, .features .content-wrapper > ul > li:focus, .testimonial-card:focus, .process-steps > li:focus {
  box-shadow: 0 4px 40px rgba(69,123,157,.15), 0 1.5px 8px rgba(69,123,157,0.09);
  outline: 2px solid #457B9D;
}

/* Z-Index stack for overlays */
.mobile-menu { z-index: 1050; }
.cookie-consent-banner { z-index: 1200; }
.cookie-settings-modal { z-index: 1250; }

/* Utility: visually hidden for accessibility (ignore if not needed) */
.visually-hidden {
  position:absolute !important;
  width:1px; height:1px;
  margin:-1px; padding:0; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

/* Ensure at least 20px vertical margin between all content blocks */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* Prevent content overlap in all wrappers */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* END of MarkenWeg – Professional Corporate CSS */