/* RESET & BASE TYPOGRAPHY */
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7FAF6;
  color: #25303A;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
/* Playful Dynamic Theme Colors as CSS vars */
:root {
  --color-primary: #25303A;
  --color-secondary: #8EB076;
  --color-accent: #E9E6DF;
  --color-fun1: #FFD051; /* fun yellow */
  --color-fun2: #F88F63; /* fun orange */
  --color-fun3: #6BC9CB; /* fun turquoise */
  --color-fun4: #E6356E; /* fun pink */
  --color-text: #25303A;
  --color-white: #fff;
  --shadow-soft: 0 2px 12px 0 rgba(40,40,70,0.07), 0 1.5px 4px rgba(40,44,60,0.03);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
}
/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.14;
  color: var(--color-fun4);
  text-shadow: 1px 4px 0 var(--color-fun1), 0 1px 4px rgba(233,54,110,0.08);
}
h2 {
  font-size: 2rem;
  color: var(--color-fun3);
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, dt, dd {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 0.02em;
}
strong {
  font-weight: 700;
  color: var(--color-fun4);
}
a {
  color: var(--color-fun4);
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.77, 0, .175, 1);
  font-weight: 600;
}
a:hover, a:focus {
  color: var(--color-fun1);
}
ul, ol {
  margin: 0 0 18px 20px;
}
li {
  margin-bottom: 10px;
  list-style: disc inside;
}
dt {
  font-weight: 700;
  color: var(--color-fun3);
  margin-top: 14px;
}
dd {
  margin-bottom: 10px;
}
code, pre {
  font-family: 'Fira Mono', 'Monaco', monospace;
  background: #fafafa;
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--color-secondary);
}
/* LAYOUT CONTAINERS & FLEXBOX */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 20px 24px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(40,40,70,0.13), 0 1.5px 8px rgb(255 208 81/20%);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.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;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 32px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* HEADER STYLING */
header {
  background: linear-gradient(100deg, var(--color-fun1) 0%, var(--color-white) 80%);
  box-shadow: 0 3px 12px rgba(233,54,110,0.08);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
}
.logo img {
  max-height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  background: transparent;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-fun4);
  background: var(--color-accent);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  background: linear-gradient(90deg, var(--color-fun4) 60%, var(--color-fun3) 100%);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 23px;
  font-size: 1rem;
  border: none;
  transition: background 0.2s cubic-bezier(.77, 0, .175, 1), box-shadow .22s;
  box-shadow: 0 4px 16px 0 rgba(107,201,203,0.10);
  letter-spacing: 0.04em;
  margin-left: 18px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(100deg, var(--color-fun1) 70%, var(--color-fun4) 98%);
  color: var(--color-primary);
  box-shadow: 0 6px 28px 0 rgba(233,54,110,.18);
  transform: scale(1.04) rotate(-1deg);
}
/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  background: var(--color-fun4);
  color: var(--color-white);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(40,40,70,0.07);
  display: none;
  transition: background .18s, transform .13s;
  align-items: center;
  justify-content: center;
  z-index: 99;
  margin-left: 12px;
}
.mobile-menu-toggle:hover {
  background: var(--color-fun1);
  color: var(--color-primary);
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(98deg, var(--color-fun3) 22%, var(--color-fun4) 88%, var(--color-white) 100%);
  box-shadow: 0 8px 44px rgba(40,40,80,0.15);
  z-index: 1020;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-fun1);
  color: var(--color-primary);
  border: none;
  font-size: 2.3rem;
  padding: 8px 20px 8px 10px;
  margin-top: 14px;
  margin-left: 8px;
  border-radius: 50%;
  cursor: pointer;
  align-self: flex-end;
  transition: background .17s, color .15s;
}
.mobile-menu-close:hover {
  background: var(--color-fun2);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0 0 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
  padding: 10px 30px 10px 0;
  border-radius: 15px;
  transition: background .17s, color .15s;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 92vw;
  box-sizing: border-box;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  header .container {
    padding: 8px 6px;
    gap: 8px;
  }
  .logo img {
    max-height: 42px;
  }
  .mobile-menu-toggle { width: 44px; height: 44px; }
}

/* MAIN & GENERIC SECTIONS */
main {
  width: 100%;
  flex: 1 0 auto;
  margin-top: 0;
  padding-bottom: 80px;
}
section {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media (max-width: 600px) {
  section {
    padding: 18px 4px;
    margin-bottom: 28px;
    border-radius: 13px;
  }
}

/* UL/OLs WITH ICONS */
ul li img, ol li img {
  margin-right: 11px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(233,54,110,0.03);
  background: var(--color-accent);
  object-fit: contain;
  display: inline-block;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-fun1);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  font-size: 1.1rem;
  transition: transform 0.17s, box-shadow 0.23s;
}
.testimonial-card p {
  margin: 0 0 6px 0;
  font-size: 1.08em;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.testimonial-card strong {
  color: var(--color-fun4);
  font-size: 1em;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(40,44,60,0.11);
  transform: scale(1.022) rotate(1deg);
  background: var(--color-fun3);
  color: var(--color-white);
}
/* STAR ICONS UNDER REVIEWS */
.testimonial-card + div img[alt*="Sterne"],
.content-wrapper > div img[alt*="Stern"] {
  vertical-align: middle;
  margin-right: 7px;
  width: 23px;
  height: auto;
}

/* CTA SECTIONS */
section .btn-primary {
  margin: 14px 0 0 0;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 1rem;
    padding: 13px 10px;
  }
}

/* FOOTER */
footer {
  background: linear-gradient(100deg, var(--color-fun3) 30%, var(--color-fun2) 85%);
  color: var(--color-white);
  border-radius: 45px 45px 0 0;
  box-shadow: 0 -2px 19px rgba(40,40,80,0.09);
  padding: 50px 0 18px 0;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: 6px 12px;
  transition: background .19s, color .22s;
}
.footer-nav a:hover {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.contact-info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-info span {
  display: flex;
  align-items: center;
  font-size: 1em;
}
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  padding: 2px;
}
footer small {
  margin-top: 10px;
  font-size: 0.97em;
  opacity: 0.89;
  color: var(--color-white);
}
@media (max-width: 600px) {
  .footer-nav, .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 7px;
  }
  footer {
    padding: 24px 0 11px 0;
    border-radius: 22px 22px 0 0;
  }
}

/* CONTACT DETAILS & MAP INFO */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08em;
  background: rgba(255, 208, 81, 0.07);
  border-radius: 10px;
  padding: 6px 10px;
}
.contact-details img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--color-accent);
}
.map-info {
  background: var(--color-accent);
  border-radius: 9px;
  padding: 14px 9px 11px 12px;
  margin-top: 12px;
  color: var(--color-primary);
}

/* FEATURES / ADVANTAGES */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-fun3);
  color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: 20px 16px;
}
@media (max-width: 600px) {
  .feature-item {
    padding: 10px 6px;
    gap: 7px;
  }
}

/* ANIMATION EFFECTS */
.card, .testimonial-card, .btn-primary, .feature-item, section, .mobile-menu {
  transition: box-shadow 0.22s cubic-bezier(.77,0,.18,1),
    background 0.22s, transform 0.12s, color .22s;
}
section {
  animation: fadeinSection 0.7s ease-in;
}
@keyframes fadeinSection {
  0% { opacity: 0; transform: translateY(40px) scale(.97); }
  100% { opacity: 1; transform: none; }
}
.card:hover, .feature-item:hover {
  transform: scale(1.035) rotate(-1.5deg) translateY(-2px);
  background: var(--color-fun1);
  box-shadow: 0 8px 32px 0 rgba(233,54,110,0.11);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--color-fun2);
  color: var(--color-white);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 26px;
  box-shadow: 0 -6px 30px rgb(40 40 80 / 16%);
  font-family: var(--font-body);
  font-size: 1.05em;
  animation: slideUpBanner .7s cubic-bezier(.22,1,.35,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(130%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 1em;
  font-weight: 800;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background .18s, color .18s, box-shadow .17s;
}
.cookie-banner .accept {
  background: var(--color-fun4);
  color: var(--color-white);
}
.cookie-banner .accept:hover {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.cookie-banner .reject {
  background: var(--color-fun3);
  color: var(--color-white);
}
.cookie-banner .reject:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: var(--color-white);
  color: var(--color-fun2);
  border: 1.5px solid var(--color-fun2);
}
.cookie-banner .settings:hover {
  background: var(--color-fun2);
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    font-size: 0.99em;
    padding: 16px 6px 14px 6px;
  }
  .cookie-btns {
    justify-content: flex-start;
    gap: 8px;
  }
}
/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 3900;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(37,48,58,0.38);
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal .24s ease;
}
@keyframes fadeinModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 12px 36px 0 rgba(37,48,58,0.23);
  padding: 32px 24px 21px 24px;
  position: relative;
  font-family: var(--font-body);
  color: var(--color-primary);
  min-width: 320px;
  max-width: 95vw;
  animation: fadeinModal .24s ease;
}
.cookie-modal h2 {
  color: var(--color-fun2);
  margin-bottom: 17px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 8px 11px;
  margin-bottom: 15px;
  font-size: 1.07em;
  font-weight: 500;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-fun3);
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 15px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 11px;
  justify-content: flex-end;
}
.cookie-modal .save {
  background: var(--color-fun4);
  color: var(--color-white);
  border: none;
  padding: 10px 20px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background .13s;
}
.cookie-modal .save:hover {
  background: var(--color-fun2);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: transparent;
  color: var(--color-fun3);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  color: var(--color-fun1);
}
.cookie-modal .category-disabled {
  opacity: 0.67;
  font-style: italic;
  text-decoration: line-through;
}

/* RESPONSIVE FONT SIZES & FLEX DIRECTION */
@media (max-width: 500px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.1rem; }
  .card { min-width: 99%; max-width: 99%; padding: 13px 6px 8px 6px; }
}
/* VISUAL EXTRAS: BOUNCE AND FUN */
.btn-primary {
  animation: fun-bounce 2.8s infinite cubic-bezier(.23,1.03,.48,1) alternate;
}
@keyframes fun-bounce {
  0% { box-shadow: 0 4px 16px 0 rgba(107,201,203,0.10); }
  60% { box-shadow: 0 12px 38px 0 rgba(233,54,110,0.12); }
  100% { box-shadow: 0 2px 12px  0 rgba(233,205,40,0.14), 0 1.5px 4px rgba(233,205,40,0.08); }
}

/* CARD DESIGN */
.card {
  border: 2.5px dashed var(--color-fun4);
  background: repeating-linear-gradient(105deg, var(--color-accent), var(--color-white) 65px, var(--color-accent) 90px, var(--color-white) 130px);
  box-shadow: var(--shadow-soft);
}
.card:hover {
  border: 2.5px solid var(--color-fun1);
}

/* UTILITY CLASSES */
.hide { display: none !important; }

/* VISUAL HIERARCHY */
h1 + p { font-size: 1.18em; color: var(--color-fun3); margin-bottom: 7px; font-weight: 600; }
h2 + p { font-size: 1.05em; color: var(--color-secondary); }

/* FAQ PAGE SPECIALS */
@media (max-width: 660px) {
  .faq-list {
    flex-direction: column;
  }
}

/* OL, DL INSIDE CONTENT-WRAPPER */
.content-wrapper ol {
  list-style-type: decimal;
  margin-left: 24px;
}
.content-wrapper dl {
  margin-left: 11px;
  margin-bottom: 18px;
}

/* THANK YOU PAGE BUTTON CENTERING */
.thankyou-btn,
.thankyou-btn .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* VISUAL PLAYFUL DECORATIVE EFFECTS */
section::after {
  content: "";
  display: block;
  width: 62px;
  height: 6px;
  border-radius: 4px;
  margin: 23px auto 0 auto;
  background: linear-gradient(80deg, var(--color-fun1) 30%, var(--color-fun3) 80%);
  opacity: .75;
  animation: dash-slide 3s infinite alternate cubic-bezier(.7,0,.43,1.05);
}
@keyframes dash-slide {
  0% { transform: scaleX(1) translateX(0); }
  100% { transform: scaleX(1.3) translateX(14px); }
}
/* Remove section::after for last and nested sections */
section:last-child::after,
footer section::after { display: none; }

/* ENSURE ALL FLEX GAPS, NO OVERLAPS */
.content-wrapper > * + * {
  margin-top: 0 !important;
}
.card + .card,
.testimonial-card + .testimonial-card,
.content-grid > * + * {
  margin-left: 0;
}

/* COLOR CONTRAST FOR ACCESSIBILITY (ESPECIALLY TESTIMONIALS) */
.testimonial-card p, .testimonial-card strong {
  color: #25303A;
}
.testimonial-card:hover p, .testimonial-card:hover strong {
  color: #fff;
}

/* Misc Spacing tweaks */
.card-container, .content-grid, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus {
  outline: 3px solid var(--color-fun3);
  outline-offset: 2px;
}

/* Hide cookie modal and banner on print */
@media print {
  .cookie-banner, .cookie-modal-backdrop, .mobile-menu { display: none !important; }
}
