/* === 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.4;
  background: #F4F7FA;
  color: #152143;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #0B3D91;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #40BCA6;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* === TYPOGRAPHY - creative_artistic === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
  color: #0B3D91;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.625rem;
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(64,188,166,0.12);
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.125rem;
  font-style: italic;
  color: #40BCA6;
  margin-bottom: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}
p, li, label {
  font-size: 1rem;
  line-height: 1.6;
}

.tagline {
  color: #40BCA6;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

strong, b {
  font-weight: 700;
  color: #0B3D91;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}
.text-section li {
  margin-bottom: 12px;
}


/* === GENERAL CONTAINER LAYOUTS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(11,61,145,0.02), 0 1.5px 8px rgba(64,188,166,0.04);
  padding: 24px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(11,61,145,0.10), 0 2px 20px rgba(64,188,166,0.15);
  transform: translateY(-2px) scale(1.015);
}

/* === FEATURES GRID & FLEXBOX RULES === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(64, 188, 166, 0.10);
  padding: 22px 20px 20px;
  width: calc(33.333% - 22px);
  min-width: 230px;
  min-height: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 2.2px solid #40BCA6;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(11,61,145,0.10));
}
.feature-item:hover {
  box-shadow: 0 6px 26px rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.02);
  border-color: #0B3D91;
}

/* === TESTIMONIAL CARDS === */
#testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 18px rgba(11,61,145,0.10);
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
  border-left: 8px solid #40BCA6;
}
.testimonial-card p {
  color: #0B3D91;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
}
.testimonial-card span {
  color: #40BCA6;
  font-size: 1rem;
  font-style: normal;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-left: auto;
}
.testimonial-card:hover {
  box-shadow: 0 9px 36px rgba(11,61,145,0.13);
}

/* === SERVICE LIST (ANGEBOTE) === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(11,61,145,0.06);
  border: 2px solid #0B3D91;
  padding: 18px 24px 22px;
  min-width: 230px;
  width: calc(33.333% - 18px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.24s;
  position: relative;
}
.service-item span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #40BCA6;
  color: #fff;
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.service-item:hover {
  box-shadow: 0 9px 30px rgba(64,188,166,0.12);
  border-color: #40BCA6;
  transform: translateY(-2px) scale(1.017);
}

/* === BUTTONS & CTA === */
.cta, .service-item a.cta, a.cta, button.cta {
  background: #0B3D91;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 36px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 1px;
  box-shadow: 0 3px 18px rgba(64,188,166,0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta:hover, .cta:focus {
  background: #40BCA6;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* === HEADER, NAVIGATION & BURGER MENU === */
header {
  width: 100%;
  background: #0B3D91;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 22;
  box-shadow: 0 2.5px 12px rgba(11,61,145,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.01rem;
  letter-spacing: 1.1px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.19s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #40BCA6;
  color: #fff;
}
header nav a.cta {
  background: #40BCA6;
  color: #fff;
  border-radius: 18px;
  padding: 10px 24px;
  font-weight: 800;
  font-size: 1.09rem;
  box-shadow: 0 2px 10px rgba(11,61,145,0.20);
  transition: background 0.22s, color 0.22s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #fff;
  color: #0B3D91;
}
.mobile-menu-toggle {
  display: none;
  background: #40BCA6;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border-radius: 14px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  transition: background 0.22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #0B3D91;
}

/* === MOBILE MENU STYLES & ANIMATION === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11,61,145,0.96);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.57,0.21,0.69,1.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  color: #fff;
  background: #40BCA6;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 700;
  position: absolute;
  top: 16px;
  right: 29px;
  width: 44px;
  height: 44px;
  z-index: 10001;
  transition: background 0.21s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #0B3D91;
  color: #40BCA6;
}
.mobile-nav {
  width: 100%;
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 33px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 0 8px 8px;
  border-radius: 8px;
  transition: color 0.16s, background 0.18s;
  min-width: 210px;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #40BCA6;
  color: #fff;
}


/* === MAIN & SECTIONS === */
main {
  margin-top: 0;
  padding-top: 14px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 1px #40BCA6);
  margin-right: 5px;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #0B3D91;
  color: #fff;
  padding: 36px 0 12px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover,
footer nav a:focus {
  background: #40BCA6;
  color: #fff;
}
footer img {
  height: 40px;
}
footer .contact-info {
  color: #b9d7f2;
  font-size: 0.99rem;
}


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #0B3D91;
  border-top: 4px solid #40BCA6;
  box-shadow: 0 -8px 24px rgba(64, 188, 166, 0.09);
  z-index: 99910;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px 18px 18px 18px;
  animation: slideUp 0.52s cubic-bezier(.42,-0.21,.58,1.42);
}
@keyframes slideUp {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  font-size: 1rem;
  flex: 1 1 220px;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #0B3D91;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
.cookie-btn.accept {
  background: #40BCA6;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #0B3D91;
  border: 2px solid #40BCA6;
}
.cookie-btn.reject {
  background: #fff;
  color: #b92f2f;
  border: 2px solid #b92f2f;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #0B3D91;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #40BCA6;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #b92f2f;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none; /* show by JS when active */
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(11,61,145,0.58);
  z-index: 100000;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #0B3D91;
  border-radius: 18px;
  padding: 34px 28px 24px 28px;
  max-width: 380px;
  width: 95vw;
  box-shadow: 0 11px 50px rgba(11,61,145,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeModal 0.48s cubic-bezier(.47,-0.21,.62,1.52);
}
@keyframes fadeModal {
  from {opacity:0; transform: scale(0.92);}
  to {opacity:1; transform: scale(1);}
}
.cookie-modal h2 {
  color: #0B3D91;
  font-size: 1.36rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.09rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #152143;
}
.cookie-modal input[type="checkbox"]:disabled + label {
  color: #b9d7f2;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 990px) {
  .features-grid, .service-list {
    gap: 22px;
  }
  .feature-item, .service-item {
    width: calc(50% - 16px);
    min-width: 190px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .features-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item,
  .service-item {
    width: 100%;
    min-width: 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section, section {
    padding: 25px 8px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav {
    display: none;
  }
  .contact-info {
    font-size: 0.97rem;
    gap: 6px;
    margin-bottom: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 13px 7px 9px 7px;
  }
  .cookie-banner p {
    margin-right: 0;
    font-size: 0.98rem;
  }
  .cookie-btn {
    font-size: 0.98rem;
    padding: 7px 12px;
  }
  .cookie-modal {
    padding: 22px 6vw 15px 6vw;
    max-width: 97vw;
  }
  .feature-item, .service-item {
    padding: 14px 8px 16px 8px;
  }
}

/* === MICRO-INTERACTIONS === */
.card a, .feature-item a, .service-item a {
  transition: color 0.15s, text-decoration 0.15s;
  color: #0B3D91;
}
.card a:hover, .feature-item a:hover, .service-item a:hover {
  color: #40BCA6;
  text-decoration: underline;
}

/* === ACCESSIBILITY & VISUAL FEEDBACK === */
:focus {
  outline: 2.5px dashed #40BCA6;
  outline-offset: 2px;
}

::selection {
  background: #40BCA6;
  color: #fff;
}

/* === UNIQUE CREATIVE_ARTISTIC ELEMENTS === */
section {
  position: relative;
  /* Artistic top accent bar */
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top:0; left: 20px;
  right:20px; height: 6px;
  border-radius: 3px;
  background: #40BCA6;
  opacity: 0.25;
  z-index: 0;
}
section:nth-child(even):before {
  background: #0B3D91;
  opacity: 0.18;
}

.feature-item:after {
  content: '';
  display: block;
  position: absolute;
  right: -22px; bottom: -22px;
  width: 34px; height: 34px;
  border-radius: 80% 40% 60% 100%;
  background: #40BCA6;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.service-item:after {
  content: '';
  display: block;
  position: absolute;
  top: -14px; left: -16px;
  width: 28px; height: 18px;
  border-radius: 80% 20% 60% 90%;
  background: #0B3D91;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

h1, h2, h3 {
  position: relative;
  z-index: 2;
}

/* Artistic marker accent on feature titles */
.feature-item h3, .service-item h3, .testimonial-card p {
  position: relative;
  z-index: 2;
}
.feature-item h3:after, .service-item h3:after {
  content: '';
  display: block;
  width: 38px;
  height: 3.8px;
  background: #40BCA6;
  border-radius: 2.5px;
  opacity: 0.51;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
}

/* === COLOR PALETTE - fallback for old browsers === */
body {
  background: #F4F7FA;
}

/* END OF FILE */
