/* RESET & NORMALIZATION */
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: linear-gradient(135deg, #e5efff 0%, #f8fafc 100%);
  color: #205072;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #205072;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F6C915;
}
ul, ol {
  list-style: none;
}

/* BASE TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #205072;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 16px;
}
p, ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #205072;
}
strong {
  font-weight: 700;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(32, 80, 114, 0.07);
  padding: 32px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  background: #f7fafc;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(32,80,114,.07);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 235px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px 0 rgba(32,80,114,0.14);
  transform: translateY(-4px) scale(1.02);
}

.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: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fafcff;
  box-shadow: 0 1px 7px 0 rgba(32,80,114,0.06);
  max-width: 600px;
  border-left: 6px solid #F6C915;
}
.testimonial-card p {
  color: #183146;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #607d8b;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* BRAND COLORS & GRADIENTS */
.bg-primary {
  background: #205072;
  color: #fff;
}
.bg-secondary {
  background: #F6C915;
  color: #205072;
}
.bg-accent {
  background: #fff;
  color: #205072;
}
.gradient-header {
  background-image: linear-gradient(90deg, #205072 10%, #329d9c 100%);
  color: #fff;
}
.gradient-cta {
  background-image: linear-gradient(90deg, #F6C915 30%, #fed85b 100%);
  color: #205072;
}

/* HEADER */
header {
  width: 100%;
  background: #205072;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.1);
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 0;
}
header img {
  height: 46px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 12px;
  padding: 7px 14px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a:focus {
  background: #F6C915;
  color: #205072;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #F6C915;
  font-size: 2.2rem;
  padding: 4px 8px;
  cursor: pointer;
  z-index: 301;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(115deg,#205072 60%, #F6C915 180%);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.87,-0.41,.19,1.44);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 999;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 24px 34px 24px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 1001;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6C915;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  margin-right: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: transparent;
  border-radius: 12px;
  padding: 12px 24px 12px 14px;
  margin-bottom: 2px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6C915;
  color: #205072;
}

/* MAIN BUTTONS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  background: linear-gradient(90deg, #F6C915 70%, #fed85b 100%);
  color: #205072;
  padding: 13px 36px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(246,201,21,.08);
  transition: background 0.2s, color 0.2s, box-shadow .17s, transform 0.19s;
  text-align: center;
  margin-top: 15px;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #fed85b 0%, #F6C915 80%);
  color: #205072;
  box-shadow: 0 8px 32px 0 rgba(246,201,21,0.17);
  transform: translateY(-2px) scale(1.03);
}

/* FEATURE GRID & TEASER-GRID */
.feature-grid, .teaser-grid, .value-list, .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-grid li, .value-list li, .contact-list li {
  background: #f2f6fa;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.teaser-grid > div {
  background: #fffefa;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(246,201,21,0.04);
  padding: 20px 18px 20px 22px;
  min-width: 200px;
  max-width: 270px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.teaser-grid > div:hover, .teaser-grid > div:focus {
  box-shadow: 0 8px 32px 0 rgba(246,201,21,0.18);
  transform: translateY(-2px) scale(1.03);
}
.teaser-grid h3 a {
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* SPACING UTILS */
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }

/* FOOTER */
footer {
  background: #205072;
  color: #fff;
  padding: 38px 0 28px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 4px 12px;
  margin-bottom: 3px;
  transition: background 0.15s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F6C915;
  color: #205072;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}
.contact-short img {
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: -3px;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.social-links a img {
  height: 30px;
  transition: filter 0.16s, transform 0.15s;
  filter: grayscale(0.2);
}
.social-links a:hover img, .social-links a:focus img {
  filter: grayscale(0) brightness(1.35);
  transform: scale(1.11);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1020px) {
  .container {
    max-width: 99vw;
  }
  .footer-menu {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 18px 6px;
    margin-bottom: 28px;
  }
  .feature-grid, .teaser-grid, .value-list, .contact-list {
    flex-direction: column;
    gap: 14px;
  }
  .teaser-grid > div {
    min-width: 0;
    max-width: 100%;
    padding: 16px 9px 16px 14px;
  }
  .social-links {
    margin-top: 8px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 30px 5px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    max-width: 100vw;
    padding: 14px;
  }
  .content-grid, .card-container, .card {
    flex-direction: column !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  h1, .h1 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  h2, .h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  h3, .h3 {
    font-size: 0.99rem;
    margin-bottom: 7px;
  }
  .card, .teaser-grid > div {
    padding: 12px 4px 12px 8px;
    border-radius: 13px;
  }
  .content-wrapper {
    padding: 11px 2px;
  }
  .testimonial-card {
    padding: 9px 6px;
    border-radius: 11px;
  }
}

/* HIGHLIGHTS & BADGES */
.badge {
  display: inline-block;
  background: #F6C915;
  color: #205072;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9px;
  margin-right: 8px;
  margin-bottom: 6px;
}

/* ICONS */
.feature-grid img, .value-list img, .contact-list img, .content-wrapper img {
  height: 28px;
  width: 28px;
  margin-right: 10px;
}

/* TABLES (for completeness) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
th, td {
  border: 1px solid #cde7fc;
  padding: 10px 7px;
  text-align: left;
}
th {
  background: #e9f3fb;
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 22px;
  background: #f7fafc;
  color: #205072;
  box-shadow: 0 4px 28px 0 rgba(32,80,114,0.13);
  border-radius: 18px;
  z-index: 2002;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.2s, opacity 0.2s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner-text {
  flex: 1 1 auto;
  margin-right: 14px;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-shrink: 0;
}
.cookie-btn, .cookie-btn-alt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-btn {
  background: #205072;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6C915;
  color: #205072;
}
.cookie-btn-alt {
  background: transparent;
  color: #205072;
  border: 2px solid #205072;
}
.cookie-btn-alt:hover {
  background: #F6C915;
  color: #205072;
  border-color: #F6C915;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(32,80,114,0.30);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 38px 30px 20px 30px;
  box-shadow: 0 8px 48px 0 rgba(32,80,114,0.16);
  min-width: 313px;
  max-width: 96vw;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205072;
  font-weight: 700;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #205072;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: #e0e5ec;
  position: relative;
  outline: none;
  transition: background 0.14s;
  margin-right: 0;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #F6C915;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.18s;
  box-shadow: 0 2px 8px rgba(32,80,114,0.08);
}
.cookie-toggle:checked::before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #205072;
  cursor: pointer;
}

@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 9px 9px 14px 12px;
    font-size: .96rem;
  }
  .cookie-banner-actions {
    margin: 10px 0 0 0;
    flex-direction: column;
    gap: 5px;
  }
  .cookie-modal {
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    min-width: 0;
  }
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn .38s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* MICRO-INTERACTIONS */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #cde7fc;
  background: #f8fafc;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.16s;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus {
  border-color: #F6C915;
  box-shadow: 0 0 0 2px #F6C91511;
}

/* SCROLLBARS */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb { 
  background: #cde7fc;
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #eef7fa;
}

/* VISUAL HIERARCHY */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper:not(:last-child) {
  margin-bottom: 32px;
}

/* ACCESSIBILITY: FOCUS & CONTRAST */
a:focus-visible, button:focus-visible {
  outline: 2px solid #205072;
  outline-offset: 2px;
}

/* SPECIAL CASES */
.text-section h1, .text-section h2, .text-section h3 {
  color: #205072;
}
.value-list li, .contact-list li {
  background: #f9f8ee;
}

/* ENSURE FLEXBOX: No grid at all, see all flex containers above */
