/* 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, 
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, menu, nav, section {
  display: block;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F7;
  color: #23405B;
  min-height: 100vh;
}

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

*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #23405B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CA371;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.3em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #23405B;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p, ul, ol, li { font-size: 1rem; }

strong {
  font-weight: 700;
  color: #23405B;
}

em {
  font-style: italic;
}

/* LAYOUT & CONTAINER ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

/* FLEXBOX MANDATORY PATTERNS ----------------------------------------------- */
.feature-grid,
.service-grid,
.service-list,
.projects-section .project-list,
.blog-list,
.faq-list,
.testimonials,
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 1023px) {
  .feature-grid,
  .service-grid,
  .service-list,
  .projects-section .project-list,
  .blog-list,
  .faq-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .service-grid,
  .service-list,
  .projects-section .project-list,
  .blog-list,
  .faq-list,
  .testimonials,
  .testimonials-slider {
    flex-direction: column !important;
    gap: 20px;
  }
}

/* PLAYFUL DYNAMIC BRAND COLORS & VISUALS ----------------------------------- */
:root {
  --color-primary: #23405B;
  --color-secondary: #7CA371;
  --color-accent: #F7F7F7;
  --color-playful-yellow: #FFDC43;
  --color-playful-pink: #FF6CAB;
  --color-playful-blue: #44B0FF;
  --color-playful-mint: #8AF6D2;
  --color-playful-orange: #FFAE57;
  --shadow-lg: 0 8px 32px rgba(44,87,134,0.10);
  --shadow-md: 0 3px 14px rgba(44,87,134, 0.14);
  --border-radius-lg: 28px;
  --border-radius-md: 18px;
  --border-radius-sm: 9px;
}

/* Playful Animations */
@keyframes floatBounce {
  0% { transform: translateY(0); }
  45% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
@keyframes buttonPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.09); }
  100% { transform: scale(1); }
}
@keyframes fadeInSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* HEADER & NAV ------------------------------------------------------------- */
header {
  background: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.header-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 10px 0;
  gap: 16px;
}
.header-bar a img {
  height: 38px;
  width: auto;
  animation: floatBounce 2.5s infinite 0.1s;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-playful-yellow);
  color: var(--color-secondary);
}

/* Primary Call to Action button */
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 32px;
  margin-left: 18px;
  border-radius: var(--border-radius-lg);
  border: none;
  outline: none;
  background: var(--color-playful-pink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.15s, box-shadow 0.32s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: buttonPop 1.1s cubic-bezier(.17,.67,.83,.67) 0.5s 1;
}
.cta-button.primary {
  background: linear-gradient(90deg, var(--color-playful-pink), var(--color-playful-yellow));
  color: #23405B;
  box-shadow: var(--shadow-md);
}
.cta-button.secondary {
  background: linear-gradient(90deg, var(--color-playful-blue), var(--color-playful-mint));
  color: #23405B;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--color-playful-yellow) 60%, var(--color-playful-pink) 100%);
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 4px 18px rgba(255,108,171,0.18);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-playful-blue);
  color: #fff;
  font-size: 2rem;
  padding: 8px 13px 9px 13px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 11;
  margin-left: 10px;
  transition: background 0.16s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-playful-pink);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,247,247,0.98);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.37,1.35,.55,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 30px 0 27px;
  box-shadow: -8px 0 44px -10px rgba(68,176,255,0.08);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: transparent;
  font-size: 2.3rem;
  color: var(--color-playful-yellow);
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 29px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: var(--border-radius-sm);
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-playful-blue);
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO SECTION ------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(118deg, var(--color-playful-yellow) 0 65%, var(--color-playful-blue) 100%);
  padding: 56px 0 56px 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  margin-bottom: 56px;
  box-shadow: 0 6px 32px rgba(44,87,134,0.09);
  min-height: 335px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  animation: fadeInSlideUp 1.1s;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 8px;
}
.hero-section p {
  color: var(--color-secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 36px 0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    margin-bottom: 32px;
  }
  .hero-section h1 {
    font-size: 1.65rem;
  }
}

/* FEATURES / STÄRKEN ------------------------------------------------------ */
.features-section {
  background: transparent;
  margin-bottom: 60px;
}
.feature-grid {
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 22px 32px 22px;
  min-width: 230px;
  flex: 1 1 270px;
  transition: transform 0.15s, box-shadow 0.17s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.feature img {
  width: 64px;
  margin-bottom: 16px;
  animation: floatBounce 2.8s infinite 0.23s;
}
.feature h3 {
  color: var(--color-playful-pink);
  font-size: 1.23rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature p {
  color: var(--color-primary);
  margin-bottom: 0;
  text-align: center;
}
.feature::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 30px;
  width: 70px; height: 70px;
  background: var(--color-playful-yellow);
  opacity: 0.23;
  border-radius: 38px;
  z-index: 1;
  transition: left 0.35s;
}
.feature:hover::after {
  left: 70%;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 38px rgba(255, 220, 67, 0.13);
}

/* SERVICES / LEISTUNGEN ---------------------------------------------------- */
.services-section {
  background: transparent;
  margin-bottom: 60px;
}
.service-grid, .service-list {
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 26px 20px 22px 20px;
  transition: transform 0.13s, box-shadow 0.18s;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: fadeInSlideUp 1s;
}
.service-card h3 {
  color: var(--color-playful-blue);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.service-card p {
  color: var(--color-primary);
}
.service-card strong {
  color: var(--color-playful-pink);
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 27px 0 rgba(44,87,134,0.16);
  transform: translateY(-3px) scale(1.03);
}

/* PROJECTS / BLOG / FAQ / GENERIC CARDS ------------------------------------ */
.project-card, .blog-card, .faq-item {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 23px 20px 18px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: fadeInSlideUp 0.7s;
}
.blog-card h3, .project-card h3, .faq-item h3 {
  font-size: 1.05rem;
  color: var(--color-playful-yellow);
  margin-bottom: 6px;
}
.project-card:hover, .blog-card:hover, .faq-item:hover {
  box-shadow: 0 10px 34px 0 rgba(68,176,255,0.16);
  transform: translateY(-3px) scale(1.03);
}

/* FAQ Preview (on leistungen) ---------------------------------------------- */
.faq-preview {
  background: #fff6cc;
  border-radius: var(--border-radius-md);
  padding: 18px 20px;
  margin-top: 20px; margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}
.faq-preview h3 {
  color: var(--color-playful-yellow);
  font-size: 1.13rem;
}
.faq-preview a {
  color: var(--color-playful-pink);
  font-weight: bold;
  margin-top: 5px;
  display: inline-block;
}

/* CTA SECTIONS ------------------------------------------------------------- */
.cta-section {
  margin-bottom: 40px;
}
.cta-box, .content-wrapper.cta-box {
  background: linear-gradient(90deg, var(--color-playful-mint) 80%, var(--color-playful-pink) 100%);
  color: #23405B;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 38px 32px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 24px auto;
  text-align: center;
  animation: fadeInSlideUp 1.24s;
}
.cta-box h3 { font-size: 1.3rem; color: var(--color-primary); margin-bottom: 4px; }
.cta-box p { color: var(--color-secondary); margin-bottom: 7px; font-size: 1rem; }

.cta-box .cta-button { margin-top: 17px; }

/* TESTIMONIALS ------------------------------------------------------------- */
.testimonial-section {
  background: none;
  margin-bottom: 60px;
}
.testimonials, .testimonials-slider {
  gap: 24px;
}
.testimonial-card {
  background: #FAFAFD;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  color: #174073;
  font-size: 1.07rem;
  max-width: 370px;
  min-width: 220px;
  text-align: left;
  padding: 23px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.12s;
}
.testimonial-card p {
  color: #23405B;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.testimonial-card span {
  color: var(--color-playful-blue);
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Montserrat', serif;
  font-size: 2.7rem;
  color: var(--color-playful-yellow);
  position: absolute;
  left: 16px;
  top: 2px;
  z-index: 1;
  opacity: 0.19;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 11px 34px 0 rgba(124,163,113,0.12);
  transform: scale(1.02);
}

.rating-summary {
  margin: 16px 0 0 0;
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}

/* CONTACT / THANK YOU ------------------------------------------------------ */
.contact-section {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  padding: 32px 22px;
}
.contact-section h1 { margin-bottom: 14px; }
.contact-info-block {
  background: #FEF6FF;
  border-radius: var(--border-radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-md);
  margin-top: 18px;
  color: #23405B;
}

.thankyou-section {
  margin-top: 32px;
  margin-bottom: 36px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 38px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thankyou-section h1 {
  margin-bottom: 16px;
  color: var(--color-playful-blue);
}

/* FOOTER ------------------------------------------------------------------ */
footer {
  background: #23405B;
  color: #fff;
  padding: 36px 0 22px 0;
  margin-top: 56px;
  border-top-right-radius: 42px;
  border-top-left-radius: 42px;
  box-shadow: 0 -2px 20px rgba(35,64,91, 0.12);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.9;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-playful-yellow);
  color: #23405B;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  margin-bottom: 11px;
  font-size: 0.98rem;
}
.footer-contact strong { color: #fff; }
.footer-contact a { color: #FFDC43; }
.footer-legal {
  color: #CFE2F3;
  text-align: center;
  margin: 0 auto;
  font-size: 0.92rem;
}
.footer-legal a {
  color: #CFE2F3;
  opacity: 0.7;
  border-radius: 5px;
  transition: background 0.11s, color 0.11s;
  padding: 1px 4px;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #FFDC43;
  background: none;
  opacity: 1;
}

/* COOKIE CONSENT BANNER & MODAL -------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #FFDFF6;
  color: #23405B;
  box-shadow: 0 -2px 22px rgba(255, 108, 171, 0.15);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  z-index: 1010;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 23px 14px 18px 14px;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  animation: fadeInSlideUp 0.7s;
}
.cookie-banner p {
  flex: 1 1 60%;
  margin-right: 18px;
  font-weight: 500;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  margin-right: 10px;
  border-radius: var(--border-radius-md);
  border: none;
  transition: background 0.17s, color 0.17s, transform 0.13s;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.cookie-banner .accept {
  background: var(--color-playful-yellow);
  color: #23405B;
}
.cookie-banner .accept:hover {
  background: var(--color-playful-mint);
  color: #174073;
}
.cookie-banner .reject {
  background: var(--color-playful-blue);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--color-playful-pink);
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--color-playful-pink);
  box-shadow: none;
  text-decoration: underline;
  padding: 9px 8px;
}
.cookie-banner .settings:hover {
  color: var(--color-primary);
  background: #fff6cc;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,91,0.27);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInSlideUp 0.6s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius-lg);
  max-width: 380px;
  width: calc(100vw - 36px);
  padding: 36px 24px 28px 24px;
  box-shadow: var(--shadow-lg);
  color: #23405B;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInSlideUp 0.55s;
}
.cookie-modal h3 {
  color: var(--color-playful-pink);
  font-size: 1.2rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
  background: #FAFAFD;
  margin-bottom: 10px;
  padding: 10px 13px;
  border-radius: var(--border-radius-sm);
}
.cookie-modal .category-label {
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  width: 40px; height: 20px;
  background: #d8e7ff;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  display: inline-block;
  margin-left: 7px;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--color-playful-blue);
}
.cookie-modal .cookie-toggle-ball {
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  box-shadow: var(--shadow-md);
  transition: left 0.18s cubic-bezier(.42,.67,.57,1.12);
}
.cookie-modal .cookie-toggle.enabled .cookie-toggle-ball {
  left: 21px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--color-playful-pink);
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 1023px) {
  .container {
    max-width: 920px;
    padding: 0 10px;
  }
  .header-bar {
    padding-right: 6px;
  }
  .footer-nav { gap: 13px; }
  .footer-contact { font-size: 0.95rem; }
}
@media (max-width: 850px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .header-bar {
    gap: 7px;
  }
  .service-card, .feature, .project-card, .blog-card, .faq-item { min-width: 185px; padding: 15px 9px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .header-bar { flex-wrap: wrap; align-items: flex-start; }
  .hero-section { padding: 27px 0 31px 0; }
  .feature-grid, .service-grid, .service-list, .project-list, .blog-list, .faq-list, .testimonials-slider, .testimonials {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .content-wrapper, .card-container {
    gap: 16px !important;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 33px;
  }
  .contact-section, .thankyou-section {
    padding: 15px 8px;
  }
  .cta-box {
    padding: 19px 7px;
  }
  .footer-nav { gap: 9px; font-size: 0.95rem; }
  .footer-contact, .footer-legal { font-size: 0.91rem; }
  .footer { padding: 22px 0 9px 0; }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    font-size: 0.99rem;
    text-align: left;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 14px 6px 13px 6px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
  .header-bar { padding: 12px 0 6px 0; }
  .cookie-banner {
    padding: 18px 5px 13px 5px;
  }
}

/* ACCESSIBILITY ------------------------------------------------------------ */
:focus {
  outline: 2px solid var(--color-playful-blue);
  outline-offset: 2px;
}

/* DARK MODAL OVERLAY: fallback if prefers-color-scheme dark in future */
@media (prefers-color-scheme: dark) {
  .cookie-banner { background: #2E4A66; color: #fff; }
  .cookie-banner .accept { color: #174073; }
  .cookie-modal { background: #212d39; color: #fff; }
  .cookie-modal h3 { color: #FF6CAB; }
}

/* MISCELLANEOUS ------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 11px; background: #F7F7F7; border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #7CA371; border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #23405B;
}

/* Ensure there is always 20px+ between content cards */
.service-card, .feature, .project-card, .blog-card, .faq-item, .testimonial-card {
  margin-bottom: 20px;
}

/* END ---------------------------------------------- */
