/* 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, main, 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, main, menu, nav, section {
  display: block;
}
body {line-height: 1; background: #F7F9FB; color: #283B5B;}
ol, ul {list-style: none;}
a {text-decoration: none; color: inherit;}
img { max-width: 100%; height: auto; display: block;}
button {font: inherit; border: none; cursor: pointer; background: none;}


/* Brand Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #283B5B;
  background: linear-gradient(135deg, #C9D1D9 0%, #F7F9FB 100%);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #283B5B;
}
h1 {font-size: 2.5rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.3rem; margin-bottom: 12px;}
h4, h5, h6 {margin-bottom: 8px;}
p, ul, ol {margin-bottom: 12px;}
strong {font-weight: 700;}

/* Container and Layout */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 28px;
  box-shadow: none;
}
.hero .container, .features .container, .services .container, .cta .container {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Header, Navigation, Logo */
header {
  background: linear-gradient(90deg, #C9D1D9 0%, #F7F9FB 100%);
  box-shadow: 0 3px 10px rgba(40,59,91,0.06);
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 31;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo img {height: 44px;}

.main-nav {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #283B5B;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FEDC56;
  color: #283B5B;
}

.btn-primary {
  background: linear-gradient(90deg, #FEDC56 0%, #FFF7C1 100%);
  color: #283B5B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 12px 32px;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(254,220,86, 0.10), 0 2px 8px rgba(40,59,91,0.12);
  border: none;
  transition: background 0.25s, box-shadow 0.25s, color 0.22s;
  display: inline-block;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFC93E 0%, #FEDC56 90%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(254,220,86, 0.20), 0 2px 12px rgba(40,59,91,0.15);
}

/* Mobile Menu Burger */
.mobile-menu-toggle {
  display: none;
  background: #FEDC56;
  color: #283B5B;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 16px;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: auto;
  z-index: 34;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFC93E;
  box-shadow: 0 0 0 3px rgba(254,220,86,0.25);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #f7f9fb 60%, #FEDC56 100%);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.48,.25,.34,1.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 28px 28px 28px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  margin-top: 26px;
  margin-bottom: 30px;
  color: #283B5B;
  background: none;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFC93E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #283B5B;
  font-size: 1.3rem;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FEDC56;
  color: #fff;
}

/* Responsive Navigation Behaviors */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 960px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #C9D1D9 0%, #F7F9FB 100%);
  border-radius: 36px;
  box-shadow: 0 6px 32px rgba(40,59,91,0.05);
  margin: 32px 0 60px 0;
  padding: 64px 0 58px 0;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #283B5B;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #283B5B 70%, #FEDC56 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.hero .tagline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  color: #283B5B;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 0 35px 0;
    margin: 20px 0 40px 0;
    border-radius: 18px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* Feature List / Feature Items */
.features .content-wrapper, .services .content-wrapper {
  gap: 28px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(40,59,91,0.04);
  padding: 18px 28px 18px 18px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: #283B5B;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.16s, background 0.18s;
  margin-bottom: 0; /* gap handles spacing */
}
.feature-list li img {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.feature-list li:hover, .feature-list li:focus {
  background: #f7f9fb;
  box-shadow: 0 6px 28px rgba(254,220,86,0.13);
}
@media (max-width: 768px) {
  .feature-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-list li {
    min-width: 0;
    width: 100%;
  }
}


/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,59,91,0.04);
  padding: 16px 22px 16px 18px;
  font-size: 1.05rem;
  color: #283B5B;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.price {
  background: #FEDC56;
  color: #283B5B;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 12px;
  margin-left: 12px;
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-list li {
    width: 100%;
    min-width: 0;
  }
}

/* Card & Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,59,91,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.20s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 36px rgba(254,220,86,0.13);
  transform: translateY(-4px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.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: 16px;
  }
}

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

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

/* CTA Section */
.cta {
  background: linear-gradient(90deg, #FEDC56 6%, #F7F9FB 95%);
  border-radius: 32px;
  box-shadow: 0 6px 24px rgba(254,220,86, 0.12);
  margin-bottom: 52px;
}
.cta h2 {
  color: #283B5B;
  margin-bottom: 10px;
}
.cta p {
  color: #283B5B;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .cta {
    border-radius: 18px;
    margin-bottom: 32px;
    padding: 26px 0;
  }
}

/* Testimonial Card */
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 21px rgba(40,59,91,0.07);
  margin-bottom: 0;
  position: relative;
  flex-wrap: wrap;
  font-size: 1.1rem;
  color: #283B5B;
  transition: box-shadow 0.13s, transform 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 28px rgba(254,220,86,0.13);
  transform: translateY(-2px) scale(1.005);
}
.testimonial-card p {
  margin: 0 0 0 0;
  line-height: 1.5;
  flex: 1 1 100%;
  color: #283B5B;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 600;
  color: #FEDC56;
  margin-left: 2px;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 12px;
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background: #283B5B;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 30px;
  border-radius: 28px 28px 0 0;
  margin-top: 52px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.85;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FEDC56;
  color: #283B5B;
}
.footer-info {
  text-align: center;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.74;
}

@media (max-width: 768px) {
  footer {
    border-radius: 16px 16px 0 0;
    padding-top: 22px;
    padding-bottom: 14px;
    margin-top: 28px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* Blog Listings */
.blog-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.blog-listings article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(40,59,91,0.045);
  padding: 18px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.13s, transform 0.15s;
}
.blog-listings article:hover {
  box-shadow: 0 8px 32px rgba(254,220,86,0.10);
  transform: translateY(-2px) scale(1.01);
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.categories-filter a {
  color: #FEDC56;
  font-weight: 600;
  transition: color 0.13s;
}
.categories-filter a:hover {
  color: #FFC93E;
}
@media (max-width: 700px) {
  .blog-listings {
    flex-direction: column;
    gap: 8px;
  }
  .blog-listings article {
    min-width: unset;
  }
}

/* Contact/Privacy/Terms (General Purpose) */
.text-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.map-embed, .accessibility-info, .plan-descriptions, .innovation-highlight, .service-guarantee {
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(40,59,91,0.040);
  padding: 15px 18px;
  margin-top: 10px; margin-bottom: 10px;
  font-size: 1.01rem;
  color: #283B5B;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #FEDC56 10%, #C9D1D9 100%);
  color: #283B5B;
  box-shadow: 0 -2px 18px rgba(40,59,91,0.10);
  padding: 18px 12px 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 99;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.35s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-content {
  font-size: 1.07rem;
  color: #283B5B;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: #283B5B;
  color: #fff;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  margin: 0;
  box-shadow: 0 2px 8px rgba(40,59,91,0.16);
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #283B5B;
  box-shadow: 0 2px 8px rgba(254,220,86,0.11);
  border: 2px solid #FEDC56;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FEDC56;
  color: #283B5B;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #283B5B;
  color: #fff;
}
@media (max-width: 520px) {
  .cookie-banner {
    padding: 10px 2px 18px 2px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}

/* Cookie Modal (Settings) */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40,59,91,0.62);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 110;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(40,59,91,0.18);
  padding: 38px 28px 26px 28px;
  min-width: 280px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #283B5B;
  font-size: 1.33rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-category label {
  flex: 1 1 60%;
  font-weight: 500;
  color: #283B5B;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #C9D1D9;
  position: relative;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.23s;
  box-shadow: 0 1px 4px rgba(40,59,91,0.11);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #FEDC56;
}
.cookie-toggle input:checked ~ .cookie-toggle-bg {
  background: #FEDC56;
}
.cookie-category.essential .cookie-toggle {
  cursor: not-allowed;
  opacity: 0.62;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-close-btn {
  position: absolute;
  right: 18px; top: 16px;
  background: none;
  font-size: 1.6rem;
  color: #283B5B;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-close-btn:hover, .cookie-close-btn:focus {
  color: #FEDC56;
}
@media (max-width: 500px) {
  .cookie-modal-dialog {
    max-width: 98vw;
    padding: 20px 4px 16px 8px;
  }
}

/* Animations, Micro-Interactions */
.btn-primary, .cookie-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.21s, color 0.21s, box-shadow 0.20s, transform 0.17s;
}
.card, .testimonial-card, .feature-list li, .blog-listings article {
  transition: box-shadow 0.13s, transform 0.15s, background 0.15s;
}

/* Focus States */
a:focus, button:focus {
  outline: 2px solid #FEDC56;
  outline-offset: 2px;
}

/* General Utility Spacing */
.mb-20 {margin-bottom: 20px;}
.mb-40 {margin-bottom: 40px;}
.mb-60 {margin-bottom: 60px;}
.pb-20 {padding-bottom: 20px;}
.pb-40 {padding-bottom: 40px;}
.pt-20 {padding-top: 20px;}
.pt-40 {padding-top: 40px;}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.1rem;}
  h3 {font-size: 1rem;}
  .section, .cta, .hero {padding: 18px 2px;}
  .about .text-section, .privacy-policy .text-section, .gdpr-info .text-section, .cookies-policy .text-section, .terms .text-section {
    padding-left: 0; padding-right: 0;
  }
}

/* Misc */
::-webkit-scrollbar {
  width: 8px;
  background: #F7F9FB;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #C9D1D9;
  border-radius: 8px;
}

/* Accent Details */
.innovation-highlight, .service-guarantee {
  background: #FEDC56;
  color: #283B5B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  margin-top: 12px;
  margin-bottom: 8px;
}

/* Accessibility: Ensure color contrast in testimonial & review cards */
.testimonial-card, .innovation-highlight, .service-guarantee {
  color: #283B5B;
  background: #fff;
}

/* Form (Kontakt placeholder) */
.contact-form .btn-primary {
  margin-top: 14px;
}

/* Map Accessibility Info block fix */
.accessibility-info ul {margin-bottom: 0;}
.accessibility-info li {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Plan Descriptions */
.plan-descriptions p {
  margin-bottom: 0;
}


/* END OF CSS */
