/* ============================
   CSS RESET & BASE STYLES
============================ */
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background: #F2F2F2;
  color: #232323;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1A2536;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.7,.2,.2,1);
}

a:hover, a:focus {
  color: #6EA051;
  outline: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ===================================
   TYPOGRAPHY & BRAND FONT SETUP
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A2536;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.7rem; line-height: 1.11; margin-bottom: 16px; }
h2 { font-size: 2rem;  line-height: 1.13; margin-bottom: 12px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4 { font-size: 1.13rem; margin-bottom: 8px; }
p, li, dd {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #212530;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6EA051;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ==========
   CONTAINERS
=========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ============================
   PLAYFUL COLOR PALETTE
============================ */
:root {
  --brand-primary: #1A2536;
  --brand-secondary: #6EA051;
  --brand-accent: #F2F2F2;
  --playful-pink: #FF85A1;
  --playful-yellow: #FFE066;
  --playful-cyan: #49c6e5;
  --playful-violet: #b685f8;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =======================
   HEADER & NAVIGATION
======================= */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 6px 40px -18px rgba(26,37,54,0.13);
  z-index: 40;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  font-size: 1rem;
  position: relative;
}
.main-nav .logo {
  margin-right: 26px;
  flex-shrink: 0;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 23px;
  transition: background 0.18s cubic-bezier(.7,.2,.2,1), color 0.13s;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
}
.main-nav .cta-primary {
  margin-left: 24px;
}

/* Hide navigation on mobile, show toggle */
.mobile-menu-toggle {
  background: var(--playful-pink);
  color: var(--brand-primary);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: auto;
  display: none;
  z-index: 51;
  box-shadow: 0 2px 8px 0 rgba(248, 133, 208, 0.14);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--playful-yellow);
  color: var(--brand-primary);
}

/* ==================
   MOBILE MENU STYLING
================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--playful-pink) 0%, var(--playful-cyan) 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 58px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.8,.2,.4,1);
  box-shadow: -4px 0 24px 0 rgba(26,37,54, .09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: var(--brand-primary);
  font-size: 2.3rem;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0 5px;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 1.25rem;
  background: var(--playful-yellow);
  padding: 15px 28px;
  border-radius: 37px;
  margin: 0 12px;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 2px 12px 0 rgba(245, 205, 95, 0.09);
}
.mobile-nav a:focus, .mobile-nav a:hover {  background: var(--brand-primary);  color: var(--playful-yellow); }

/* =============================
   CTA BUTTONS & INTERACTIONS
============================= */
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 32px;
  text-align: center;
  min-height: 45px;
  font-size: 1.07rem;
  box-shadow: 0 6px 30px -2px rgba(70,197,229,.13);
  cursor: pointer;
  border: none;
  outline: none;
  margin-top: 5px;
  transition: transform 0.17s cubic-bezier(.7,.2,.2,1), box-shadow 0.20s, background 0.19s, color 0.13s;
}
.cta-primary {
  background: var(--brand-secondary);
  color: #fff;
  padding: 11px 32px;
  box-shadow: 0 4px 16px 0 rgba(110,160,81,0.14);
  font-size: 1.13rem;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--playful-pink);
  color: var(--brand-primary);
  transform: scale(1.048);
}
.cta-secondary {
  background: var(--playful-pink);
  color: var(--brand-primary);
  padding: 10px 26px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: scale(1.04);
}

/* =====================
   SECTION LAYOUTS
===================== */
main {
  margin-top: 0;
  padding-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 0;
}

/* ========================
   FLEX WRAPPERS & GRIDS
======================== */
.card-container,
.feature-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container { gap: 24px; }
.feature-grid {
  gap: 28px;
  justify-content: flex-start;
}
.content-grid {  gap: 20px;  justify-content: space-between; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ====================
   SPECIAL FLEX BLOCKS
==================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 20px 0 rgba(49,203,189,0.08), 0 1.5px 6.5px 0 rgba(245,205,95,0.12);
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  min-width: 235px;
  max-width: 330px;
  position: relative;
  transition: transform 0.14s, box-shadow 0.22s;
}
.feature-item:hover {
  transform: translateY(-3px) scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 42px 0 rgba(110,160,81,0.13), 0 2px 12px 0 #ffe06644;
}
.feature-item img {
  width: 46px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #49c6e550);
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0 rgba(110,160,81,0.09);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 230px;
  transition: box-shadow 0.20s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 15px 70px -15px #FF85A150, 0 6px 22px 0 #6ea05122;
  transform: scale(1.03);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 23px;
  margin-bottom: 20px;
  box-shadow: 0 8px 36px 0 rgba(26, 37, 54, 0.10), 0 2px 12px 0 #ffe06655;
  position: relative;
  min-width: 230px;
  max-width: 500px;
  transition: box-shadow 0.18s, transform 0.12s;
  border-left: 7px solid var(--playful-cyan);
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: 0 16px 54px 0 #b685f822, 0 8px 32px 0 #6ea05133;
  border-left: 7px solid var(--playful-pink);
  transform: scale(1.028) rotate(1.5deg);
}
.testimonial-card p {
  color: #232323;
  font-size: 1.13rem;
  text-align: center;
  min-height: 36px;
}
.testimonial-author {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1rem;
}
.google-reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--playful-yellow);
  box-shadow: 0 2px 12px 0 #ffe06644;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-primary);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.contact-info-block,
.contact-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 15px;
  padding: 14px 21px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px 0 #49c6e526;
  font-family: var(--font-body);
  font-size: 1.09rem;
}
.contact-info-block img,
.contact-map img {
  width: 33px;
  min-width: 33px;
  filter: drop-shadow(0 1.5px 4.5px #ff85a122);
}

/* =====================
   SPECIAL SECTION LAYOUTS
===================== */
.hero {
  background: linear-gradient(105deg, var(--playful-yellow) 0%, var(--playful-pink) 120%);
  border-radius: 0 0 48px 48px;
  padding: 0 0 52px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 46px 0 0 0;
  gap: 12px;
}
.hero h1 {
  color: var(--brand-primary);
  text-shadow: 0 3px 16px #49c6e52c, 0 2px 8px #ff85a111;
  font-size: 2.4rem;
}

.features, .about-intro, .services-preview, .testimonials, .contact-short, .cta-appointment,
.services-detail, .services-why, .cta-services, .preise-features, .cta-preise, .faq-list, .cta-faq, .confirmation, .galerie-highlights {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features {
  background: linear-gradient(100deg, var(--playful-cyan) 0%, #fff 100%);
  border-radius: 36px;
}

/* USP- and Specialty-Lists */
.usp-list, .feature-bullets, .performance-bullets, .specialty-services ul, .benefit-highlights ul, .next-steps ul {
  margin: 14px 0 12px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usp-list li, .feature-bullets li, .performance-bullets li, .specialty-services ul li, .benefit-highlights ul li, .next-steps ul li {
  position: relative;
  padding-left: 34px;
  font-size: 1.04rem;
  font-family: var(--font-body);
  color: #1a2536;
}
.usp-list li:before, .feature-bullets li:before, .performance-bullets li:before, .specialty-services ul li:before, .benefit-highlights ul li:before, .next-steps ul li:before {
  content: "☺";
  color: var(--playful-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2em;
  position: absolute;
  left: 0; top: 1px;
}
.specialty-services ul li:before {
  content: "★";
  color: var(--playful-yellow);
}
.benefit-highlights ul li:before {
  content: "✔";
  color: var(--playful-cyan);
}
.next-steps ul li:before {
  content: "→";
  color: var(--playful-pink);
}

/***** Pricing Table ******/
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 12px 0 #6ea05119;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 18px;
  text-align: left;
  font-size: 1.07rem;
}
.pricing-table th {
  background: var(--playful-cyan);
  color: var(--brand-primary);
  font-weight: 800;
  font-family: var(--font-display);
}
.pricing-table td {
  color: var(--brand-primary);
  border-bottom: 1px solid #f2f2f2;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 18px 0 0 0;
}
.service-list li {
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px 0 #1a253610;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-list li h2, .service-list li h3 {
  margin: 0 0 7px 0;
  font-family: var(--font-display);
  color: var(--brand-secondary);
  font-size: 1.28rem;
}
.service-list li .service-price {
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--playful-pink);
  font-weight: 800;
  background: var(--playful-yellow);
  border-radius: 14px;
  padding: 4px 11px;
  margin-left: 10px;
}
.service-list li:hover {
  box-shadow: 0 11px 28px 0 #ff85a110;
  transform: scale(1.025);
}

/***** Benefit section icons *****/
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 18px 0 20px 0;
  justify-content: flex-start;
}
.feature-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 13px 0 #49c6e518;
  padding: 11px 20px;
  gap: 7px;
  min-width: 120px;
  max-width: 170px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.feature-icons img {
  width: 32px;
}
.feature-icons > div:hover {
  box-shadow: 0 5px 27px 0 #b685f81a, 0 2px 9px 0 #ff85a112;
  transform: scale(1.06) rotate(-2deg);
}

/***** Footer ***** */
footer {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding-top: 36px;
  margin-top: 60px;
  width: 100%;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1.5px solid #fff7;
  padding: 0 20px 19px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  background: var(--brand-secondary);
  padding: 7px 14px;
  border-radius: 16px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--playful-pink);
  color: var(--brand-primary);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social img {
  width: 26px;
  filter: drop-shadow(0 1px 3px #ffe06644);
  cursor: pointer;
  transition: transform 0.18s;
}
.footer-social img:hover {
  transform: scale(1.18);
}
.footer-bottom {
  text-align: center;
  padding: 13px 7px 32px 7px;
  color: #fff;
  font-size: 0.97rem;
  background: none;
}

/***** Utility & Misc *****/
.price-disclaimer {
  margin-top: 14px;
  font-size: 0.98rem;
  background: #fff6;
  color: var(--brand-primary);
  padding: 10px 20px;
  border-radius: 11px;
}
.guarantee-badges {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  align-items: center;
}
.guarantee-badges img {
  width: 44px;
  filter: drop-shadow(0 3px 8px #6ea05134);
}

/******* Cookie Consent Banner *******/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: var(--playful-pink);
  color: var(--brand-primary);
  box-shadow: 0 -2px 24px 0 #ff85a124;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 6vw 22px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  animation: cookieBannerSlideIn 0.5s cubic-bezier(.84,.1,.4,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-consent-banner .cookie-btn {
  padding: 10px 25px;
  border-radius: 29px;
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.07rem;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, transform 0.13s;
  box-shadow: 0 2px 9px 0 #fff2;
}
.cookie-btn-accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  transform: scale(1.055);
}
.cookie-btn-reject {
  background: #fff;
  color: var(--playful-pink);
  border: 2px solid var(--playful-pink);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--playful-pink);
  color: #fff;
  border-color: #fff;
  transform: scale(1.045);
}
.cookie-btn-settings {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  border: none;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--playful-pink);
  color: #fff;
  transform: scale(1.045);
}

/***** Cookie Modal Styling *****/
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 2300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a253680;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: fadeIn .24s linear;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 56px 0 #6EA05133, 0 3px 16px 0 #ff85a133;
  padding: 27px 32px 22px 32px;
  min-width: 290px;
  max-width: 97vw;
  animation: popIn 0.28s cubic-bezier(.7,.2,.3,1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2330;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(36px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-accent);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 20px; height: 20px;
}
.cookie-category .always-on {
  font-size: 1.01rem; color: var(--playful-cyan); margin-left: 9px; font-weight: bold;
}
.cookie-modal-actions {
  display: flex; gap: 15px; margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 17px;
  color: var(--brand-primary);
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--playful-pink);
}

/* =====================
   ANIMATIONS & EFFECTS
===================== */
@keyframes twinkle {
  0%,100% { box-shadow: 0 3px 14px 0 #ffe06644, 0 2px 7px 0 #b685f80a; }
  50% { box-shadow: 0 9px 36px 0 #ffe06690, 0 4px 14px 0 #b685f844; }
}
.feature-item:hover,
.cta-primary:hover, .cta-primary:focus,
.cta-secondary:hover, .cta-secondary:focus {
  animation: twinkle 0.86s ease-in-out 1;
}

/***** Table zebra *****/
.pricing-table tbody tr:nth-child(even) td {
  background: #f9fff9;
}

/***** Legal sections *****/
.legal-privacy, .legal-gdpr, .legal-cookie-policy, .legal-terms {
  background: #fff;
  border-radius: 21px;
  padding: 37px 22px;
  box-shadow: 0 3px 13px 0 #1a253615;
}

/***** Thanks / Confirmations *****/
.confirmation .content-wrapper, .next-steps {
  align-items: flex-start;
  gap: 18px;
}
.confirmation .next-steps h2 {
  color: var(--playful-pink);
}

/***** Galerie page list bullets *****/
.galerie-highlights {
  background: linear-gradient(120deg, var(--playful-yellow) 15%, #fff 88%);
  border-radius: 32px;
}

/***** Specialty services section (galerie) *****/
.specialty-services {
  background: #fff;
  border-radius: 17px;
  padding: 12px 17px;
  box-shadow: 0 2px 12px 0 #6ea05122;
}

/***** FAQ List *****/
.faq-list dl {
  margin: 24px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list dt {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--playful-pink);
  font-size: 1.09rem;
  margin-bottom: 4px;
}
.faq-list dd {
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-left: 10px;
}

/***** Various padding for content separation *****/
.section, .content-wrapper, .card-container, .faq-list dl, .feature-grid, .service-list, .footer-top {
  margin-bottom: 32px;
}

/***** RESPONSIVE BREAKPOINTS *****/
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .feature-item, .card {
    max-width: 99vw;
  }
}
@media (max-width: 800px) {
  .footer-top, .content-wrapper, .feature-grid, .service-list, .card-container {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .footer-nav {
    gap: 11px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .main-nav, .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-top {
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .pricing-table td, .pricing-table th {
    padding: 11px 7px;
    font-size: 0.97rem;
  }
  .hero {
    border-radius: 0 0 28px 28px;
    padding-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .footer-social img { width: 22px; }
  .cta-primary, .cta-secondary {
    width: 100%;
    min-width: unset;
    font-size: 1em;
    justify-content: center;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 18px 3vw 18px 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 520px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-nav a {
    font-size: 1em;
    padding: 4px 8px;
  }
  .hero .content-wrapper { padding: 24px 0 0 0; }
}

/* Mobile nav toggle & responsive hiding of desktop nav */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================
   END (NO CSS GRID OR COLUMNS USED)
================================ */