/* ============================== */
/*        CSS RESET + BASES        */
/* ============================== */
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, menu, 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;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4F7FA;
  color: #23314f;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
a {
  color: #2A4C7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD700;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
:focus {
  outline: 2px dashed #FFD700;
  outline-offset: 2px;
}

/* ============================== */
/*         BRAND COLORS           */
/* ============================== */
:root {
  --primary: #2A4C7C;
  --secondary: #FFD700;
  --accent: #F4F7FA;
  --success: #42C98D;
  --danger: #FF5A5F;
  --playful1: #FFB347;
  --playful2: #60C6FF;
  --playful3: #FFD700;
  --playful4: #BEEB9F;
  --text-dark: #23314f;
  --text-light: #fff;
  --shadow-md: 0 2px 10px 0 rgba(42,76,124,0.11);
}

/* ============================== */
/*           TYPOGRAPHY           */
/* ============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--secondary);
  text-shadow: 2px 2px 0px var(--primary), 0 3px 10px #0002;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--playful2);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.text-section {
  margin-bottom: 28px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* playful, fun font for accents */
.cta-btn, .hero h1, .hero .cta-btn, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.025em;
}

/* ============================== */
/*        CONTAINER & LAYOUT      */
/* ============================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 4px 16px #60C6FF44;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** Spacing everywhere *****/
section {
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}

/* ============================== */
/*           HEADER + NAV         */
/* ============================== */
header {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--playful2) 100%);
  box-shadow: 0px 3px 10px #23314f10;
  padding: 0;
  border-bottom: 4px solid var(--primary);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
header a img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  color: var(--primary);
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 7px;
  position: relative;
  transition: color 0.15s, background 0.18s;
}
nav a:hover,
.footer-nav a:hover,
nav a:focus {
  color: var(--secondary);
  background: var(--primary);
}
.cta-btn {
  background: var(--playful2);
  color: var(--primary);
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 28px;
  margin-left: 18px;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px #60C6FF33;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  text-shadow: 0 1px 0 #fff5;
  outline: none;
  border: 2px solid var(--primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 22px #FFD70065;
}

/***** Hamburger Button *****/
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 2rem;
  padding: 8px 16px 8px 16px;
  margin-left: 15px;
  border: none;
  box-shadow: 0 2px 10px #2a4c7c33;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 14px #FFD70077;
}

/* ============================== */
/*         MOBILE MENU            */
/* ============================== */
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 2px 0 30px #2a4c7c22;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.88,0.03,0.26,1.06);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 7px 0 22px #2a4c7c55;
}
.mobile-menu-close {
  background: var(--primary);
  color: var(--secondary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  align-self: flex-end;
  margin: 25px 24px 10px 0;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(-15deg) scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 48px 0 44px;
}
.mobile-nav a {
  padding: 18px 0 10px 12px;
  font-size: 1.35rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-left: 7px solid var(--secondary);
  border-radius: 0 18px 18px 0;
  background: #fff;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.18s, border-left 0.24s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--playful2);
  color: var(--secondary);
  border-left: 7px solid var(--primary);
}

/* Hide navigation on mobile, show hamburger */
@media (max-width: 991px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================== */
/*      HERO + PLAYFUL SECTIONS   */
/* ============================== */
.hero {
  background: linear-gradient(120deg, var(--secondary) 0%, #f9e67d 50%, var(--playful2) 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  padding: 48px 0 64px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 10px 36px #FFD70033;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero h1 {
  color: var(--primary);
  text-shadow: none;
  font-size: 2.9rem;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 0.022em;
}
.hero p {
  font-size: 1.33rem;
  color: #36466d;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .cta-btn {
  font-size: 1.2rem;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero:after {
  /* playful accent circle */
  content: '';
  position: absolute;
  right: -160px;
  top: 30%;
  width: 220px;
  height: 220px;
  background: var(--playful2);
  border-radius: 50%;
  opacity: 0.17;
  z-index: 0;
}

/* ============================== */
/*           FEATURE LISTS        */
/* ============================== */
ul {
  list-style: none;
}
.features-list, ul.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
ul li, .features-list li {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: 13px;
  padding: 14px 20px 14px 55px;
  min-height: 55px;
  font-size: 1.02rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  margin-right: 16px;
}
ul li img {
  width: 34px;
  margin-right: 14px;
  margin-left: -37px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 3px #FFD70033);
}
.features-list li:hover {
  box-shadow: 0 4px 25px #FFD70045;
  transform: scale(1.03) rotate(-2deg);
  background: var(--playful3);
}

/* ============================== */
/*          TESTIMONIALS          */
/* ============================== */
.testimonial-card {
  background: #fff;
  box-shadow: 0 6px 32px #2A4C7C18;
  border-radius: 21px;
  margin-bottom: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #2A4C7C;
  font-size: 1.09rem;
  position: relative;
  border-left: 8px solid var(--playful2);
  transition: box-shadow 0.16s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px #FFD70045;
  border-left: 8px solid var(--playful1);
  transform: scale(1.025) rotate(1.2deg);
  background: var(--accent);
}
.testimonial-card p {
  margin: 0 0 12px 0;
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-info {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  font-style: italic;
  margin-left: 12px;
}

/* ============================== */
/*           FOOTER               */
/* ============================== */
footer {
  background: linear-gradient(90deg, #f4f7fa 0%, #e9f3fd 100%);
  margin-top: 54px;
  border-top: 3px solid var(--primary);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
  padding: 38px 20px 22px 20px;
}
.footer-nav, .brand-footer, .contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}
.footer-nav a:hover {
  color: var(--secondary);
  background: transparent;
}
.brand-footer {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 14px;
}
.contact-block p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: var(--primary);
  font-size: 1rem;
}
.contact-block img {
  width: 21px;
  height: 21px;
}

/***** Call to action sections *****/
.price-highlights {
  background: var(--playful4);
  color: var(--primary);
  border-radius: 14px;
  padding: 18px 24px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 10px #BEEB9F22;
  margin: 20px 0;
}

.share-story {
  margin: 32px 0 10px 0;
}
.share-story .cta-btn {
  background: var(--success);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px #42C98D44;
}
.share-story .cta-btn:hover {
  background: var(--danger);
  color: #fff;
}

/***** FAQ styling *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px #FFD70019;
  padding: 22px 30px;
  margin-bottom: 18px;
  transition: box-shadow 0.14s, transform 0.12s;
  border-left: 7px solid var(--playful1);
  font-size: 1.01rem;
}
.faq-item:hover {
  box-shadow: 0 6px 22px #FFD70055;
  transform: scale(1.025) rotate(-1.1deg);
}
.faq-search {
  background: var(--accent);
  padding: 18px;
  border-radius: 11px;
  color: var(--playful2);
  font-weight: 700;
  margin-top: 26px;
}
.faq-search a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.16s;
}
.faq-search a:hover {
  color: var(--secondary);
}

/***** Misc content helpers *****/
.price-highlights, .brand-footer {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
}

/***** Links and hover effects *****/
a {
  transition: color 0.16s, background 0.1s;
}
a:active {
  color: var(--danger);
}

/***** Card and gap adjustments *****/
.card, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}

/***** Decorative playful dots on cards/sections *****/
.card:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: radial-gradient(var(--secondary) 60%, #fff0 100%);
  border-radius: 50%;
  opacity: 0.56;
  z-index: 0;
  pointer-events: none;
}

.card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -14px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: var(--playful1);
  border-radius: 50%;
  opacity: 0.36;
  z-index: 0;
  pointer-events: none;
}

/* ============================== */
/*     RESPONSIVE & FLEX LAYOUTS  */
/* ============================== */
@media (max-width: 991px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .footer-nav,
  .contact-block,
  .brand-footer {
    gap: 13px;
  }
  .section, section {
    padding: 24px 7px;
    margin-bottom: 32px;
  }
  .card {
    padding: 20px 10px;
  }
  .testimonial-card {
    padding: 15px 7px 10px 16px;
    font-size: 0.96rem;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .hero {
    padding: 28px 0 36px 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .mobile-menu {
    font-size: 1rem;
  }
  ul li, .features-list li {
    font-size: 0.99rem;
    padding-left: 46px;
    min-height: 41px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.12rem;
  }
  .brand-footer {
    margin-top: 16px;
    font-size: 0.93rem;
  }
  .mobile-nav {
    margin: 17px 14px 0 14px;
    gap: 12px;
  }
  .mobile-nav a {
    padding: 13px 0 7px 9px;
    font-size: 1.03rem;
  }
}

/* ============================== */
/*        TRANSITIONS + ANIMS     */
/* ============================== */
.cta-btn, .card, .testimonial-card, .faq-item,
nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, box-shadow 0.18s, transform 0.13s;
}

@media (hover: hover) {
  .cta-btn:hover, .cta-btn:focus {
      animation: fun-bounce 0.45s linear;
  }
  .card:hover, .testimonial-card:hover, .faq-item:hover {
      animation: wiggle 0.19s linear;
  }
}
@keyframes fun-bounce {
  10% { transform: scale(1.12) rotate(-2deg); }
  40% { transform: scale(0.93) rotate(1.2deg); }
  60% { transform: scale(1.04) rotate(-2deg); }
  70% { transform: scale(1.01) rotate(1.1deg); }
  to { transform: scale(1.04) rotate(-2deg); }
}
@keyframes wiggle {
  0% { transform: rotate(-2deg) scale(1.03); }
  25% { transform: rotate(2deg) scale(1.01); }
  50% { transform: rotate(-1deg) scale(1.01); }
  75% { transform: rotate(1.2deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1.03); }
}

/* ============================== */
/*       COOKIE CONSENT BANNER    */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--accent);
  box-shadow: 0 -4px 22px #2a4c7c18;
  padding: 24px 24px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  border-top: 3px solid var(--secondary);
  transition: transform 0.24s ease;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 190px;
  min-width: 172px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  padding: 7px 22px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.15s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--success);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #49ebae;
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #e43a47;
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn.settings {
  background: var(--playful2);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Responsive for cookie banner */
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.97rem;
    padding: 26px 7px 18px 10px;
  }
  .cookie-banner .cookie-btns {
    gap: 9px;
    flex-direction: row;
    width: 100%;
  }
}

/* ============================== */
/*      COOKIE SETTINGS MODAL     */
/* ============================== */
.cookie-modal {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(42, 76, 124, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 36px 26px 28px 26px;
  min-width: 335px;
  max-width: 400px;
  box-shadow: 0 8px 50px #2a4c7c33;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cookie-modal .modal-close:hover {
  background: var(--primary);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--playful2);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 11px;
  padding: 14px 18px;
  margin-bottom: 6px;
  font-size: 1rem;
}
.cookie-modal .category-label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 54px;
  height: 28px;
  border-radius: 20px;
  background: #d8e1ef;
  transition: background 0.17s;
  margin-left: 10px;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle[data-active='on'] {
  background: var(--success);
}
.cookie-modal .cookie-toggle-inner {
  position: absolute;
  left: 3px;
  top: 3px;
  background: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 1px 6px #2A4C7C34;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle[data-active='on'] .cookie-toggle-inner {
  left: 29px;
}
.cookie-modal .cookie-ensure {
  background: #f8faf5;
  color: #ABE444;
  font-size: 0.95em;
  padding: 6px 12px;
  border-radius: 10px;
  margin-left: 12px;
  font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}

/***** Cookie modal responsive *****/
@media (max-width:480px) {
  .cookie-modal .cookie-modal-content {
    padding: 18px 7px 15px 10px;
    min-width: 220px;
    max-width: 97vw;
  }
  .cookie-modal .cookie-modal-actions {
    gap: 10px;
    flex-direction: column;
  }
}

/* ============================== */
/*        VISUAL HIERARCHY        */
/* ============================== */
main > section {
  margin-bottom: 60px;
}
@media (max-width:700px) {
  main > section {
    margin-bottom: 34px;
  }
}
.card, .testimonial-card, .faq-item, .price-highlights, .cookie-modal-content {
  box-shadow: var(--shadow-md);
}

/* ============================== */
/*         ENERGETIC EFFECTS      */
/* ============================== */
/* Playful circle in hero */
.hero:before {
  content: '';
  position: absolute;
  left: -110px;
  top: 55px;
  width: 180px;
  height: 180px;
  background: var(--playful1);
  border-radius: 142px;
  opacity: 0.16;
  z-index: 0;
}

/***** Social links and icons *****/
ul li img[alt*='Instagram'], ul li img[alt*='Facebook'], ul li img[alt*='Telefon'], ul li img[alt*='Adresse'], ul li img[alt*='E-Mail'], ul li img[alt*='Öffnungszeiten'] {
  margin-right: 8px;
  margin-left: 0;
  width: 26px;
  filter: grayscale(0.2) brightness(1.2);
}

/* ============================== */
/*-------- THEME UTILITIES -------*/
/* ============================== */
.mt-2 { margin-top: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 32px !important; }
.py-4 { padding-top: 32px !important; padding-bottom: 32px !important; }

/***** Playful dynamic button shake on click *****/
.cta-btn:active {
  animation: ctabtn-jump 0.18s linear;
}
@keyframes ctabtn-jump {
  40% { transform: translateY(-4px) scale(1.09) rotate(-3deg); box-shadow: 0 12px 32px #FFD70077; }
  80% { transform: translateY(1px) scale(0.98) rotate(2deg); }
  100% { transform: translateY(0) scale(1.06) rotate(-2deg); }
}

/***** Selection *****/
::selection {
  background: var(--secondary);
  color: var(--primary);
}
::-webkit-selection {
  background: var(--secondary);
  color: var(--primary);
}

/***** Remove outline for mouse, keep for keyboard *****/
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================== */
/*           END                  */
/* ============================== */
