/* -------------------------------------------------------------------
   CSS RESET & BASE (Mobile-First, Flexbox-Only, Compatible Reset)
   ------------------------------------------------------------------- */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh; width: 100vw;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px; font-weight: 400;
  line-height: 1.75;
  color: #222;
  background: #F2F4F7;
  overflow-x: hidden;
}
img {
  max-width: 100%; height: auto; display: block;
}
a { color: #457EC2; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #1A2530; text-decoration: underline; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2530;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol { margin-bottom: 16px; }
strong { font-weight: 600; }

/* Creative Artistic Font Pairing Fallback */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

/* ----------- Main Containers and Layout --------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* --- Artistic/Creative Vibrant Theme --- */
:root {
  --primary: #1A2530;
  --secondary: #457EC2;
  --accent: #F2F4F7;
  --pink: #e94680;
  --yellow: #ffe35b;
  --aqua: #32ded4;
  --shadow: 0 4px 20px rgba(31,37,51,0.11);
  --card-radius: 18px;
}

/* ----------- Header & Navigation ----------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(69,126,194,.07);
  position: relative;
  z-index: 25;
  margin-bottom: 20px;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}
header .container > a img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 2px 8px;
  letter-spacing: 0.01em;
  font-size: 1rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.button.primary, .button.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s, transform .13s;
  box-shadow: 0 2px 8px rgba(69,126,194,0.13);
  position: relative;
  z-index: 1;
  margin-left: 10px;
}
.button.primary {
  background: linear-gradient(90deg, #e94680 0%, #457EC2 95%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow);
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg, #457EC2 10%, #e94680 100%);
  color: #fff;
  transform: scale(1.04);
}
.button.secondary {
  background: #F2F4F7;
  color: #457EC2;
  border: 2px solid #457EC2;
  box-shadow: none;
}
.button.secondary:hover, .button.secondary:focus {
  background: #457EC2;
  color: #fff;
  border: 2px solid #e94680;
  transform: scale(1.04);
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: flex;
  background: #fff;
  color: #457EC2;
  border: none;
  font-size: 2.1rem;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px; height: 48px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 41;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(233,70,128,0.05);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffe35b;
  color: #1A2530;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(69, 126, 194, .94);
  z-index: 999;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.8,0.6,0.2,1), opacity 0.26s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #fff;
  border: none;
  align-self: flex-end;
  margin: 20px 22px 10px 0;
  cursor: pointer;
  z-index: 1000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 40px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  border-radius: 6px;
  padding: 7px 13px;
  margin-bottom: 8px;
  transition: background .19s, color .18s;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe35b;
  color: #1A2530;
}

/* Hide burger on desktop, menu default closed */
@media (min-width: 1000px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}
@media (max-width: 999px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu {
    display: flex !important;
  }
}


/* ---------- Section Patterns & Spacing ---------- */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 20px rgba(69,126,194,0.07);
  overflow: hidden;
}

.card-container, .card-grid, .feature-grid, .service-cards, .example-blocks, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  position: relative;
  margin-bottom: 20px;
  transition: transform .16s, box-shadow .16s;
}
.card:hover, .service-card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 7px 36px rgba(69,126,194,0.12);
  z-index: 5;
}
.card-content, .service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.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;
  padding: 28px 28px 18px 28px;
  background: #ffe35b;
  border-radius: 1.2em;
  box-shadow: 0 8px 30px rgba(233,70,128,0.15);
  margin-bottom: 32px;
}
.testimonial-card p {
  color: #1A2530;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: #457EC2;
  font-weight: 600;
}
.testimonial-card:last-child { margin-bottom: 0; }

.feature-item,
.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: var(--shadow);
  padding: 32px 24px 22px 24px;
  min-width: 220px; 
  max-width: 360px;
  transition: transform .16s, box-shadow .16s;
}
.feature-icon img {
  width: 38px;
  height: auto;
  margin-bottom: 8px;
}
.feature-icon h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #e94680;
  margin-bottom: 7px;
}
.feature-icon p {
  color: #1A2530;
  font-size: 1rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.service-card {
  background: #ffe35b;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 18px rgba(50,222,212,.12);
  padding: 22px 20px 24px 20px;
  flex: 1 1 250px;
  min-width: 230px; max-width: 340px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.service-card img {
  width: 42px; height: 42px; margin-bottom: 16px;
}
.service-card h2 {
  font-size: 1.2rem; color: #e94680; margin-bottom: 10px;
}
.service-card p {
  color: #1A2530;
  margin-bottom: 10px;
}

.example-blocks {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  border-radius: 1.2em;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.example-blocks blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #e94680;
  border-left: 4px solid #457EC2;
  padding-left: 16px;
  margin: 18px 0 0 0;
  background: #F2F4F7;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-left: 4px solid #e94680;
  border-radius: 1em;
  box-shadow: 0 3px 22px rgba(50,222,212,0.06);
  padding: 18px 22px;
  transition: box-shadow 0.16s;
}
.faq-item:hover {
  box-shadow: 0 7px 22px rgba(233,70,128,0.17);
  border-left: 4px solid #457EC2;
}
.faq-item h2 {
  font-size: 1.06rem;
  cursor: pointer;
  color: #457EC2;
}
.faq-item > div {
  margin-top: 4px;
  font-size: 1rem;
  color: #222;
}

.timeline-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e94680;
  font-size: 1.07rem;
}
.timeline-visual span {
  background: #F2F4F7;
  border-radius: 8px;
  padding: 4px 12px;
  color: #457EC2;
  font-weight: 600;
  margin: 0 4px;
}

/* Contact info (Kontaktseite) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #1A2530;
}
.contact-info img {
  width: 22px; height: 22px; vertical-align: middle;
  margin-right: 8px;
}
.map-embed {
  background: #F2F4F7;
  color: #457EC2;
  border-radius: 12px;
  padding: 16px 14px;
  margin-top: 14px;
}

/* Cookie Consent Banner -----------------
   Fixed at bottom, vibrant, creative artistic buttons
*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1A2530;
  box-shadow: 0 -2px 20px rgba(69,126,194,0.18);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 16px;
  font-size: 1rem;
  animation: slideUpBanner .5s cubic-bezier(0.76,0,0.24,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 9px 20px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .13s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, #e94680 20%, #457EC2 100%);
  color: #fff;
  box-shadow: 0 2px 7px rgba(233,70,128,0.13);
}
.cookie-banner .accept:hover { background: #457EC2; color: #ffe35b; }
.cookie-banner .reject {
  background: #ffe35b;
  color: #1A2530;
  box-shadow: none;
}
.cookie-banner .reject:hover { background: #e94680; color: #fff; }
.cookie-banner .settings {
  background: #F2F4F7;
  color: #457EC2;
  border: 2px solid #457EC2;
}
.cookie-banner .settings:hover { background: #457EC2; color: #fff; }

.cookie-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.93);
  background: #fff;
  color: #1A2530;
  box-shadow: 0 8px 34px rgba(69,126,194,0.17);
  border-radius: 22px;
  min-width: 330px; max-width: 96vw;
  z-index: 10001;
  padding: 36px 32px 24px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F4F7;
  padding: 8px 16px;
  border-radius: 10px;
  width: 100%;
}
.cookie-category .toggle {
  width: 36px; height: 20px;
  border-radius: 14px;
  background: #e94680;
  position: relative;
  transition: background .17s;
  margin-left: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-category .toggle[data-enabled="true"] {
  background: #457EC2;
}
.cookie-category .toggle-knob {
  display: block;
  position: absolute;
  left: 2px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-category .toggle[data-enabled="true"] .toggle-knob {
  left: 20px;
}
.cookie-modal .essential {
  opacity: 0.6;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 11px;
}
.cookie-modal button {
  padding: 10px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background .19s, color .16s;
}
.cookie-modal .accept {
  background: #457EC2;
  color: #fff;
}
.cookie-modal .accept:hover { background: #e94680; color: #fff; }
.cookie-modal .close {
  background: #F2F4F7;
  color: #1A2530;
}
.cookie-modal .close:hover { background: #ffe35b; color: #1A2530; }


/* ------------- Footer Styles -------------- */
footer {
  width: 100%;
  background: #fff;
  border-top: 6px solid #457EC2;
  margin-top: 70px;
  padding: 28px 0 12px 0;
  font-size: 1rem;
  color: #1A2530;
  box-shadow: 0 -2px 16px rgba(69,126,194,0.05);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #457EC2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 7px;
  transition: color .19s;
}
.footer-menu a:hover { color: #e94680; }
.company-info {
  font-size: 0.97rem;
  color: #1A2530;
  max-width: 340px;
  margin-bottom: 16px;
}
.company-info strong { color: #e94680; font-size: 1.1rem; }
.company-info a { color: #457EC2; font-weight: 600; }
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links img {
  width: 32px; height: 32px; opacity: 0.82; transition: opacity .14s; }
.social-links img:hover { opacity: 1; }

/* ---------- Miscellaneous Artistic Elements ---------- */
ul, ol {
  margin-left: 20px; margin-bottom: 18px; color: #1A2530;
}
ul li, ol li { margin-bottom: 7px; line-height: 1.7; }
hr {
  border: none; height: 2px; background: var(--accent);
  margin: 48px 0 18px 0;
}

blockquote { border-left: 4px solid #e94680; background: #f2f4f7; color: #1A2530; margin: 18px 0; padding: 12px 16px; border-radius: 8px; }

/* Colored Artistic Dots for Section Separators */
section:not(:last-child)::after {
  content: '';
  display: block;
  margin: 30px auto 0 auto;
  width: 34px; height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e94680 10%, #457EC2 60%, #ffe35b 100%);
}

/* ------------- Responsive Design ------------- */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .footer-menu, .company-info, .social-links { font-size: 0.9rem; }
}
@media (max-width: 860px) {
  section { padding: 32px 8px; }
  .feature-grid, .service-cards { gap: 14px; }
  .footer-menu, .company-info, .social-links { font-size: 0.83rem; }
}
@media (max-width: 700px) {
  html { font-size: 14px; }
  .container, section, footer .container { padding-left: 11px; padding-right: 11px; }
  section { margin-bottom: 44px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.29rem; }
  header .container { flex-direction: row; min-height: 56px; }
  .feature-grid, .service-cards, .card-container, .example-blocks {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testimonial-card { padding: 20px 12px; }
  .card, .service-card, .feature-icon { min-width: 0; width: 100%; max-width: 100vw; }
  .timeline-visual { flex-direction: column; gap: 7px; align-items: flex-start; font-size: 1rem; }
}
@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; justify-content: center; align-items: flex-start; min-height: 98px; gap: 13px; padding: 14px 11px; }
  .cookie-banner .cookie-actions { gap: 7px; }
  .cookie-modal { min-width: 95vw; padding: 22px 7vw 14px 7vw; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .content-grid { flex-direction: column; gap: 13px; }
  .footer-menu, .company-info, .social-links { margin-bottom: 12px; gap: 10px; }
  .footer-menu { flex-direction: row; gap: 18px; }
  footer .container { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ------------ Utility & Microinteraction Animations ----------- */
.button, .button.primary, .button.secondary {
  box-shadow: 0 3px 16px rgba(233, 70, 128, 0.07);
  transition: background 0.2s, color 0.18s, transform 0.13s, box-shadow 0.15s;
}
.button:active, .button.primary:active, .button.secondary:active {
  filter: brightness(0.96);
  transform: scale(0.97);
}

/* Table for fallback (if needed) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #F2F4F7;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}
th, td { padding: 10px 16px; border: 1px solid #e1e6eb; }
th { background: #457EC2; color: #fff; font-family: 'Montserrat', Arial, sans-serif; }

/* Inputs (if any forms appear in future) */
input, textarea, select {
  border: 1.5px solid #457EC2;
  border-radius: 7px;
  padding: 10px 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 13px;
  font-size: 1rem;
  transition: border 0.15s, box-shadow 0.13s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #e94680;
  box-shadow: 0 2px 15px rgba(233,70,128,0.07);
}

/* Accessibility/Contrast for Testimonials & Reviews */
.testimonial-card,
.testimonial-card p,
.testimonial-card span {
  color: #1A2530;
  background: #ffe35b !important;
}

/* Min spacing for all blocks */
.card, .service-card, .feature-icon, .testimonial-card, .example-blocks, .faq-item {
  margin-bottom: 20px;
}

/* Special Artistic touch: background scribble (optional) */
body::before {
  content: '';
  position: fixed; z-index: 0;
  top: -40vw; left: -30vw;
  width: 90vw; height: 90vw;
  background: radial-gradient(circle at 60% 10%, #ffe35b 0%, #e94680 46%, transparent 90%);
  opacity: 0.045;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; z-index: 0;
  right: -30vw; bottom: -50vw;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle at 20% 80%, #32ded4 0%, #457EC2 44%, transparent 90%);
  opacity: 0.045;
  pointer-events: none;
}

/* End of style.css */
