/* === 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FFF7E6;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #274D5A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #79BFA1;
}
ul, ol {
  list-style: none;
}

/* ============= BRAND COLORS (for CSS variables if needed; fallback used) ============= */
:root {
  --color-primary: #274D5A;
  --color-secondary: #79BFA1;
  --color-accent: #FFF7E6;
  --color-font: #222222;
  --color-warning: #F8C12D;
  --color-error: #EC5E36;
  --shadow-main: 0 2px 16px rgba(39,77,90,0.10);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #274D5A;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 1px 3px 0 #fff2cc, 0 6px 24px rgba(121, 191, 161, 0.09);
  animation: bounce-in 0.7s cubic-bezier(.65,-0.56,.29,1.54);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #274D5A;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #79BFA1;
}
strong {
  color: #274D5A;
  font-weight: bold;
}
p, ul, ol {
  font-size: 1rem;
  color: #222;
  margin-bottom: 12px;
}

/* Fun, playful dynamic accents for headings */
h2, .cta-primary {
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  background: #79BFA1;
  border-radius: 8px;
  margin-top: 8px;
  margin-left: 4px;
  animation: marker-slide 1s cubic-bezier(.53,0,.44,1);
}
@keyframes marker-slide {
  from { width:0; }
  to { width:60px; }
}
@keyframes bounce-in {
  from { opacity: 0; transform: translateY(-60px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

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

/* === SECTIONS & SPACING (MANDATORY) === */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section-hero {
  background: #fffbe4;
  border-radius: 18px;
  box-shadow: var(--shadow-main);
  margin-top: 32px;
  margin-bottom: 60px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: section-fade-in .7s;
}
@keyframes section-fade-in {
  from { opacity: 0; transform: scale(0.99); }
  to { opacity: 1; transform: scale(1); }
}

.section-legal {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
}
.section-confirmation {
  background: #F7FFFB;
  border: 3px dashed #79BFA1;
  border-radius: 18px;
  margin-top: 38px;
  margin-bottom: 60px;
  padding: 60px 0 60px 0;
  animation: bounce-in 0.7s;
}

/* === FLEXBOX CARD/GRID/LIST COMPONENTS === */
.card-container, .content-grid, .feature-grid, .service-grid, .brand-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service, .brand, .blog-preview {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(39,77,90,0.09);
  padding: 24px 20px;
  transition: transform 0.22s cubic-bezier(.53,.36,.21,.93), box-shadow 0.22s;
}
.card:hover, .feature:hover, .service:hover, .brand:hover, .blog-preview:hover {
  box-shadow: 0 8px 32px rgba(39,77,90,0.16);
  transform: translateY(-4px) scale(1.018);
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(39,77,90,0.10);
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  color: #222;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #79BFA1;
  font-size: 1rem;
  margin-top: 5px;
  letter-spacing: .02em;
}

/* ===== Specials for Brand Logos Section ===== */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F6FCFD;
  padding: 16px 18px;
  border-radius: 13px;
  min-width: 100px;
  box-shadow: 0 1px 4px rgba(121, 191, 161, 0.07);
  transition: box-shadow 0.23s;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274D5A;
}
.brand-logo span {
  margin-top: 6px;
}
.brand-logo:hover {
  box-shadow: 0 4px 20px #FFD16533;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.brand {
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 270px;
}

.service-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .service {
  flex: 1 1 230px;
  min-width: 170px;
  max-width: 265px;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-preview {
  flex: 1 1 260px;
  min-width: 170px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  background: #fff;
}
.blog-preview h3 {
  color: #274D5A;
  font-size: 1.08rem;
}
.blog-preview a {
  color: #79BFA1;
  font-weight: bold;
  margin-top: 4px;
  font-size: 1rem;
  transition: color 0.15s, text-decoration 0.15s;
}
.blog-preview a:hover {
  color: #EC5E36;
  text-decoration: underline;
}

/***** FAQ Accordion *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(39,77,90,0.08);
  padding: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.18s;
}
.faq-item h3 {
  font-size: 1.12rem;
  color: #274D5A;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq-item .faq-answer {
  margin-top: 12px;
  color: #444;
}
.faq-item:hover {
  background: #F7FFE2;
  box-shadow: 0 4px 18px #66d69c22;
}

/***** Step List (Leistungen) *****/
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 12px 0;
}
.step-list li {
  background: #fff;
  box-shadow: 0 1px 8px rgba(121,191,161,0.11);
  border-radius: 14px;
  flex: 1 1 205px;
  min-width: 150px;
  max-width: 270px;
  padding: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  border-left: 6px solid #79BFA1;
}
.step-list li strong {
  margin-bottom: 2px;
}

/***** Service List (/) *****/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  background: #fff;
  padding: 22px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 16px #274d5a0e;
  min-width: 170px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  border-left: 3px solid #F8C12D;
}
.service-list li img {
  width: 36px;
  height: 36px;
}
.service-list li strong {
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: #274D5A;
}

/***** CONTACT ROWS *****/
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px #274d5a17;
  padding: 14px 18px;
  font-size: 1.06rem;
  flex: 1 1 200px;
  min-width: 140px;
  margin-bottom: 20px;
}
.contact-row img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.contact-row strong {
  color: #79BFA1;
}

/* === HEADER & MAIN NAV === */
header {
  background: #fff;
  box-shadow: 0 4px 20px #79bfa106;
  padding: 0;
  position: relative;
  z-index: 22;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 80px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px #FFF7E6);
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #274D5A;
  font-size: 1.04rem;
  padding: 7px 8px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF7E6;
  color: #79BFA1;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F8C12D;
  color: #274D5A;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 3px 18px #f8c12d29, 0 2px 8px #fff;
  letter-spacing: .01em;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.13s;
  position: relative;
  z-index: 1;
}
.cta-primary:hover {
  background: #274D5A;
  color: #FFF7E6;
  transform: rotate(-1deg) scale(1.035);
  box-shadow: 0 7px 24px #79BFA130, 0 3px 18px #fae7a640;
}

/* === MOBILE MENU & BURGER === */
.mobile-menu-toggle {
  display: none;
  background: #79BFA1;
  color: #fff;
  font-size: 2rem;
  padding: 8px 13px;
  border-radius: 8px;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 51;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #274D5A;
  color: #F8C12D;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF7E6cc;
  z-index: 1001;
  height: 100vh;
  width: 100vw;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.77,.2,.28,.95);
  box-shadow: 0 0 30px #274d5a24;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F8C12D;
  color: #274D5A;
  border: none;
  font-size: 2.2rem;
  font-weight: bold;
  align-self: flex-end;
  margin: 24px 22px 0 0;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1003;
  box-shadow: 0 1px 6px #ECC32E21;
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #274D5A;
  color: #FFF7E6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #274D5A;
  font-size: 1.30rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 9px 0 8px 4px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  min-width: 140px;
  display: block;
  width: 85vw;
  margin-right: auto;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F8C12D;
  color: #fff;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .mobile-nav {
    font-size: 1.12rem;
    padding-left: 20px;
  }
  .mobile-menu-close {
    font-size: 2rem;
    margin-right: 12px;
  }
}

/* === FOOTER === */
footer {
  background: #274D5A;
  color: #FFF7E6;
  padding: 42px 0 27px 0;
  text-align: center;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-branding img {
  width: 62px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 4px #fff7e670);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-nav a {
  color: #F8C12D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #FFF7E6;
  font-size: 1rem;
  margin-bottom: 3px;
}
.footer-contact a:hover {
  color: #F8C12D;
}

@media (max-width: 991px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
  .footer-nav {
    align-items: center;
  }
}

/* === RESPONSIVE FLEX LAYOUTS & UTILITIES === */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section, section {
    margin-bottom: 42px;
    padding: 30px 5px;
  }
  .section-hero, .section-confirmation {
    margin-top: 20px;
    padding: 20px 6px;
    border-radius: 12px;
  }
  .card-container, .content-grid, .feature-grid, .service-grid, .brand-grid, .blog-list, .step-list, .service-list, .contact-methods {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 94vw;
    max-width: 98vw;
  }
  .brand-logo, .feature, .service, .brand, .blog-preview, .step-list li, .service-list li, .contact-row {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    box-sizing: border-box;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
    min-height: 65px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .logo img { height: 36px; }
}

/* ====== PLAYFUL DYNAMIC MICRO-INTERACTIONS & ANIMATIONS ====== */
.card, .feature, .brand, .service, .blog-preview, .step-list li, .service-list li, .contact-row {
  transition: transform 0.21s cubic-bezier(.47,1.64,.41,.9), box-shadow 0.17s;
}
.card:hover, .feature:hover, .brand:hover, .service:hover, .blog-preview:hover, .step-list li:hover, .service-list li:hover, .contact-row:hover {
  transform: translateY(-2.5px) scale(1.016) rotate(-0.5deg);
  box-shadow: 0 10px 30px #F8C12D22;
}
.cta-primary:active {
  transform: scale(0.98);
}

/* Decorative playful accents */
.card:before, .service:before, .feature:before, .brand:before {
  content: '';
  display: block;
  position: absolute;
  top: -10px; left: -10px;
  width: 24px; height: 24px;
  background: #F8C12D;
  border-radius: 85% 15% 59% 41% / 60% 33% 67% 40%;
  filter: blur(3px) opacity(0.16);
  z-index: 0;
  animation: blob-move 2.5s alternate infinite cubic-bezier(.68,-0.6,.67,2.2);
}
@keyframes blob-move {
  0% { transform: translateY(0) scale(0.88) rotate(0deg); }
  100% { transform: translateY(4px) scale(1.13) rotate(11deg); }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF7E6;
  color: #274D5A;
  box-shadow: 0 -2px 18px #274d5a23;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 24px 30px 22px 30px;
  z-index: 1040;
  font-size: 1rem;
  animation: slide-up 0.28s cubic-bezier(.58,.01,.98,.34);
}
@keyframes slide-up {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 360px;
  font-size: 1.08rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 18px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 6px #274d5a17;
}
.cookie-consent-banner .cookie-accept {
  background: #79BFA1;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #274D5A;
  color: #fff;
}
.cookie-consent-banner .cookie-reject {
  background: #EC5E36;
  color: #fff;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #B02211;
}
.cookie-consent-banner .cookie-settings {
  background: #F8C12D;
  color: #274D5A;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #fff;
  color: #274D5A;
  border: 2px solid #F8C12D;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 16px 10px 16px 10px;
    font-size: 0.98rem;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: #274D5A99;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 38px 30px 27px 30px;
  border-radius: 19px;
  box-shadow: 0 8px 48px #2226;
  min-width: 310px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  z-index: 1100;
  animation: modal-pop-in 0.32s cubic-bezier(.53,-0.16,.69,1.78);
}
@keyframes modal-pop-in {
  from { transform: scale(0.92); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #274D5A;
  margin-bottom: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #F8C12D;
  color: #274D5A;
  border: none;
  border-radius: 14px;
  font-size: 1.8rem;
  font-weight: bold;
  width: 34px; height: 34px;
  cursor: pointer;
  text-align: center;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #EC5E36;
  color: #fff;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6FCFD;
  border-radius: 10px;
  padding: 13px 17px;
  font-size: 1.05rem;
}
.cookie-modal-category .category-name {
  font-weight: bold;
  color: #274D5A;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #79BFA1;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  margin-left: 6px;
}
.cookie-modal-category .category-essential {
  color: #79BFA1;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 8px;
}
/* Essential always enabled, visually disabled input */
.cookie-modal-category input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 9px;
}
.cookie-modal-actions button {
  border-radius: 14px;
  padding: 9px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-actions .cookie-save {
  background: #79BFA1;
  color: #fff;
}
.cookie-modal-actions .cookie-save:hover {
  background: #274D5A;
}
.cookie-modal-actions .cookie-cancel {
  background: #fff;
  color: #274D5A;
  border: 2px solid #79BFA1;
}
.cookie-modal-actions .cookie-cancel:hover {
  background: #EC5E36;
  color: #fff;
  border: 2px solid #EC5E36;
}

@media (max-width: 540px){
  .cookie-modal {
    padding: 16px 6px 18px 6px;
    min-width: 0;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 9px;
  }
}

/* === UTILITIES & ACCESSIBILITY === */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =============================
      PLAYFUL DYNAMIC FONTS
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;1,800&family=Roboto:ital,wght@0,400;0,500;1,700&display=swap');
body, p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .cta-primary, .main-nav a, .mobile-nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* === SPECIALS: COLORED HEADINGS FOR FUN === */
h1, h2, h3, .cta-primary {
  background-image: linear-gradient(90deg, #F8C12D 0%, #79BFA1 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* fallback */
  /* for older browsers/color contrast passes, set color directly above in h1/h2/h3 */
}

/* === Z-INDEX RULES FOR MENU, COOKIE === */
header { z-index: 99; }
.mobile-menu { z-index: 1001; }
.cookie-consent-banner { z-index: 1040; }
.cookie-modal-overlay { z-index: 1050; }
footer { z-index: 5; }

/* == Prevent overlapping globally by box-sizing and block spacings == */
*, *:before, *:after { box-sizing: inherit; }
section, .section { box-sizing: border-box; }

/* == Prevent content overlap at all breakpoints == */
section > *, .section > * {
  margin-bottom: 18px;
}

/****************************
    END OF STYLE.CSS
****************************/