/*--------------------------------------------------
  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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: var(--fun-bg, #FFF9F2);
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, select, textarea {
  font: inherit;
}

/*--------------------------------------------------
  CUSTOM PROPERTIES: BRAND COLORS, FONTS
--------------------------------------------------*/
:root {
  --brand-primary: #17456A;
  --brand-secondary: #FBC660;
  --brand-accent: #FFFFFF;
  --brand-accent-dark: #F7E393;
  --fun-pink: #FF69A5;
  --fun-cyan: #21C5C5;
  --fun-lime: #8DED4A;
  --fun-bg: #FFF9F2;
  --fun-bg2: #FFF4E0;
  --fun-card-border: #FBC66033;
  --text-dark: #13283C;
  --text-med: #313C46;
  --text-light: #6B7C90;
  --error: #E3342F;

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', 'Comic Sans MS', Arial, sans-serif;
}

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

body, html {
  font-family: var(--font-body);
  color: var(--text-dark);
  min-height: 100vh;
  background: var(--fun-bg);
}

/*--------------------------------------------------
  LAYOUT CONTAINERS & UTILITY CLASSES
--------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding: 0;
  max-width: 720px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--fun-bg2);
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 #fbc66018;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-accent);
  border: 2px dashed var(--brand-secondary);
  border-radius: 20px;
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 3px 12px 0 #fbc66010;
}
.card:hover {
  transform: translateY(-6px) rotate(-1.5deg) scale(1.025);
  box-shadow: 0 8px 32px 0 #17456a28;
  border-color: var(--fun-pink);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-accent-dark);
  border-radius: 20px;
  box-shadow: 0 2px 12px #17456a12;
  margin-bottom: 20px;
  border: 2px solid var(--brand-secondary);
  flex: 1 1 280px;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: var(--fun-cyan);
  box-shadow: 0 4px 20px #17456a28;
  background: var(--brand-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------------------
  TYPOGRAPHY: Playful & Dynamic
--------------------------------------------------*/
h1, h2, h3, .cta-button.primary {
  font-family: var(--font-display);
}
h1 {
  font-size: 2.5rem;
  color: var(--brand-primary);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -2px;
  text-shadow: 2px 2px 0 #fbc660cc, 4px 4px 0 #ffffff99;
}
@media (max-width: 600px){ h1 { font-size: 1.7rem; } }
h2 {
  font-size: 1.6rem;
  color: var(--fun-pink);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -1.2px;
  text-shadow: 1px 1px 0 #fbc660aa;
}
h3 {
  font-size: 1.1rem;
  color: var(--fun-cyan);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
p, li, dl, dd, dt, address {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-med);
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 10px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-primary);
  background: #fff;
  border-left: 6px solid var(--fun-pink);
  margin: 0 0 10px 0;
  padding: 16px 28px 16px 16px;
  border-radius: 14px;
}
cite {
  font-size: 0.96rem;
  color: var(--fun-cyan);
  font-weight: 700;
  margin-left: 10px;
}
strong {
  color: var(--brand-primary);
  font-weight: 700;
}
dt {
  font-weight: bold;
  color: var(--fun-pink);
  margin-top: 12px;
}
dd {
  margin-left: 0;
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

/* Fun font for highlights */
.price,
span[role="img"] {
  font-family: 'Montserrat', sans-serif;
  color: var(--fun-pink);
  font-size: 1.18em;
  font-weight: 900;
}

/*--------------------------------------------------
  NAVIGATION & HEADER
--------------------------------------------------*/
header {
  background: var(--brand-accent);
  box-shadow: 0 2px 12px #fbc6600b;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.04em;
  padding: 10px 6px 14px 6px;
  border-bottom: 3px solid transparent;
  border-radius: 0 0 16px 16px;
  transition: color 0.18s, border-bottom 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--fun-pink);
  border-bottom: 3px solid var(--fun-cyan);
}
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 16px 22px 16px 21px;
  font-family: var(--font-display);
  font-size: 1.12em;
  font-weight: 900;
  box-shadow: 0 3px 16px 0 #fbc66043;
  padding: 12px 36px 11px 36px;
  margin-left: 18px;
  transition: background 0.22s, color 0.19s, transform 0.11s;
  border: none;
}
.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.05) rotate(-1.5deg);
  box-shadow: 0 5px 30px 0 #ff69a529;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fun-cyan);
  color: #fff;
  border-radius: 14px 14px 18px 18px;
  font-weight: 700;
  box-shadow: 0 1px 8px 0 #21c5c54f;
  padding: 10px 28px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1em;
  transition: background 0.16s, color 0.16s, transform 0.11s;
  border: none;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.04) rotate(0.6deg) translateY(-2px);
  box-shadow: 0 4px 17px 0 #ff69a523;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: var(--fun-pink);
  color: #fff;
  border-radius: 12px;
  font-size: 2.2em;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  border: none;
  box-shadow: 0 2px 8px #ff69a519;
  position: relative;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--fun-cyan);
  color: var(--brand-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 299;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.56,1.32,.62,.76);
  box-shadow: 2px 0 30px #17456a14;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  padding: 22px 18px 0 0;
  font-size: 2rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  line-height: 1;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover {
  color: var(--fun-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 22px;
  padding: 14px 32px 0 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1.36em;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color 0.2s, border 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--fun-pink);
  border-bottom: 2px solid var(--fun-cyan);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
    font-size: 0.96em;
  }
  .cta-button.primary {
    padding: 11px 26px;
    font-size: 1em;
    margin-left: 7px;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }
  .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 881px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*--------------------------------------------------
  HERO BANNER, SECTION & CARDS
--------------------------------------------------*/
.hero {
  background: linear-gradient(108deg, var(--brand-secondary) 0%, var(--fun-pink) 45%, var(--fun-cyan) 100%) !important;
  background-color: var(--brand-secondary);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 10px 44px #17456a19, 0 0px 0 #0000;
  margin-bottom: 44px;
  position: relative;
}
.hero .container {
  flex: 1 1 100%;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand-primary);
  padding: 40px 10px;
}
.hero h1,
.hero p {
  color: var(--brand-primary) !important;
  text-shadow: 2px 2px 0 #fffca7, 0 0 0 #0000;
}
.hero .cta-button.primary {
  margin-top: 10px;
  box-shadow: 0 8px 28px #17456a13;
}

/* Fun animated accent circles on hero (decor only, don't use abs. for content) */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 100%;
  z-index: 1;
  opacity: .12;
}
.hero::before {
  width: 195px; height: 195px; left: -60px; top: -50px; background: var(--fun-lime);
  animation: funCircle1 6s linear infinite alternate;
}
.hero::after {
  width: 120px; height: 120px; right: -30px; bottom: -35px; background: var(--fun-pink);
  animation: funCircle2 7s linear infinite alternate-reverse;
}
@keyframes funCircle1 { 0%{transform:scale(1) rotate(0);} 100%{transform:scale(1.18) rotate(40deg);} }
@keyframes funCircle2 { 0%{transform:scale(1) rotate(0);} 100%{transform:scale(1.2) rotate(-20deg);} }

.content-wrapper.text-section {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.services-preview-list li {
  padding: 10px 0 10px 0;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1.06em;
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.services-preview-list li:hover { color: var(--fun-pink); }

/* Cards, Features, Outcomes */
.feature-grid, .service-list, .service-benefits, .trust-signals,
.outcomes-list, .events-list, .benefit-grid, .resource-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.steps-grid, .feature-grid, .service-list, .benefit-grid {
  gap: 15px;
}
.steps-grid li {
  padding-left: 12px;
  border-left: 5px solid var(--fun-lime);
  font-family: var(--font-display);
}

/*--------------------------------------------------
  TESTIMONIALS (High Contr. Text, Playful Look)
--------------------------------------------------*/
.testimonials-preview, .testimonial-section {
  background: var(--brand-accent);
  border-radius: 36px;
  box-shadow: 0 0px 24px #17456a13;
  margin-bottom: 36px;
}
.testimonial-card,
.testimonials-preview .content-wrapper {
  background: var(--brand-accent-dark);
  color: var(--brand-primary);
  border: 2.2px solid var(--brand-secondary);
  box-shadow: 0 2px 12px #17456a1a;
  margin: 0 0 20px 0;
  border-radius: 22px;
}
.testimonials-preview .cta-button {
  margin-top: 12px;
}
@media (max-width: 900px){
  .testimonial-card { flex-direction: column; gap: 9px; }
}

/*--------------------------------------------------
  FOOTER
--------------------------------------------------*/
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 38px 0 16px 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -16px 28px #17456a0c;
  font-size: 1em;
  margin-top: 28px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 12px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fun-lime);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.98em;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-top: 7px;
}
.footer-brand img {
  height: 34px; width: 34px;
  filter: drop-shadow(2px 2px 0 #fbc66090);
}

/*--------------------------------------------------
  BUTTONS, MICRO-INTERACTIONS
--------------------------------------------------*/
button, .cta-button {
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  user-select: none;
  border: none;
}
button:active, button:focus, .cta-button:focus {
  box-shadow: 0 2px 12px #fffca749;
}
.cta-button:active {
  transform: scale(0.96);
}

/* Fun bounce on hover */
.cta-button, .main-nav a, .mobile-nav a {
  transition: transform 0.11s cubic-bezier(.63,2.21,.26,-1.08),
    color 0.19s, background 0.21s, box-shadow 0.21s;
}
.cta-button:hover, .main-nav a:hover, .mobile-nav a:hover {
  transform: scale(1.045) translateY(-2px) rotate(-1.5deg);
}

/*--------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-accent);
  z-index: 5000;
  box-shadow: 0 -2px 30px #17456a35;
  padding: 22px 12px 22px 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  font-size: 1em;
  transition: transform 0.27s cubic-bezier(.56,1.32,.62,.76);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner-message {
  flex: 1 1 50%;
  font-size: 1em;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-banner button, .cookie-modal button {
  border-radius: 12px;
  font-size: 1em;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 7px 18px;
  margin: 0 3px;
  border: none;
  box-shadow: 0 0 10px 0 #fbc66028;
  cursor: pointer;
  transition: background 0.1s, color 0.16s;
}
.cookie-banner .accept {
  background: var(--fun-lime);
  color: var(--text-dark);
}
.cookie-banner .reject {
  background: var(--fun-pink);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--fun-cyan);
  color: #fff;
}
.cookie-banner button:hover, .cookie-modal button:hover {
  opacity: 0.88;
  filter: brightness(1.1);
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #11223378;
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.29s cubic-bezier(.5,1.72,.56,.98);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--brand-primary);
  border-radius: 22px;
  padding: 38px 40px 32px 40px;
  max-width: 420px;
  box-shadow: 0 2px 44px #17456a28;
  position: relative;
  z-index: 5110;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.23s cubic-bezier(.62,1.12,.42,1.07);
}
@keyframes cookieModalIn {
  from { transform: scale(0.92) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3em;
  font-weight: 900;
  margin-bottom: 0.4em;
  color: var(--fun-pink);
  font-family: var(--font-display);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1em;
  margin-bottom: 12px;
  color: var(--brand-primary);
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 14px;
  background: var(--fun-cyan);
  position: relative;
  transition: background 0.18s;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 2px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 #21c5c51b;
  transition: left 0.21s, background 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 24px;
  background: var(--fun-pink);
}
.cookie-modal button.close {
  position: absolute;
  top: 16px; right: 22px;
  font-size: 1.5em;
  background: none;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal button.close:hover {
  color: var(--fun-pink);
}

/*--------------------------------------------------
  MISC/ELEMENTS & RESPONSIVE
--------------------------------------------------*/
address {
  font-style: normal;
  margin-bottom: 18px;
  font-size: 1em;
  color: var(--brand-primary);
  background: var(--fun-bg2);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 1px 5px #fbc6601A;
}

hr {
  border: none;
  border-bottom: 2.5px dashed var(--fun-lime);
  margin: 32px 0;
}

/* FAQ */
.faq-list dt::before {
  content: 'Q:';
  color: var(--fun-pink);
  margin-right: 8px;
  font-family: var(--font-display);
}
.faq-list dd::before {
  content: 'A:';
  color: var(--fun-cyan);
  margin-right: 8px;
  font-family: var(--font-display);
}

/* inputs
input, textarea, select {
  border-radius: 10px;
  border: 1.7px solid var(--brand-secondary);
  padding: 8px 12px;
  font-size: 1em;
  color: var(--brand-primary);
  transition: border-color 0.17s;
}*/

/* Social/decoration - not required herein */

/*--------------------------------------------------
  RESPONSIVE DESIGN (Mobile-first)
--------------------------------------------------*/
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
    max-width: 99vw;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 5px;
    border-radius: 17px;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
  .card {
    padding: 16px 7px 14px 7px;
    margin-bottom: 12px;
    border-radius: 12px;
  }
  .content-wrapper, .text-section, .content-grid {
    gap: 13px;
    padding: 0 2px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    min-height: 160px;
    border-radius: 0 0 22px 22px;
    margin-bottom: 24px;
  }
  .hero .container {
    padding: 0 5px;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.96em;
  }
  .footer-brand img {
    height: 28px; width: 28px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 11px;
    border-radius: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 6px;
    gap: 12px;
    font-size: 1em;
  }
  .cookie-modal {
    padding: 26px 7vw 25px 7vw;
    border-radius: 14px;
    font-size: 0.97em;
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Prevent card/text overlap, enforce spacing */
.card-container, .content-grid, .outcomes-list, .feature-grid, .benefit-grid, .events-list {
  box-sizing: border-box;
  gap: 20px;
  margin-bottom: 20px;
}
.card, .testimonial-card, .section {
  margin-bottom: 20px;
  min-width: 0;
}

/* Ensure .testimonial-card readable on all backgrounds */
.testimonial-card {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.testimonial-card blockquote {
  background: #fff;
  color: var(--brand-primary);
  border-left: 6px solid var(--fun-pink);
}
.testimonial-card cite {
  color: var(--fun-cyan);
}

/*--------------------------------------------------
  VISUAL HIERARCHY: SCALE
--------------------------------------------------*/
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 1.6rem; margin-bottom: 8px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }
p, li, dd, dt, address { font-size: 1rem; }
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1em; }
  p, li, dd, dt, address { font-size: 0.97em; }
}
/*----------------------------------------------------
  ACCESSIBILITY (focus, selection, contrast, etc.)
----------------------------------------------------*/
a, button, .cta-button, select, input, textarea {
  outline: none;
  transition: outline-color 0.16s, box-shadow 0.16s;
}
a:focus, button:focus, .cta-button:focus {
  outline: 2.5px solid var(--fun-pink);
  outline-offset: 2px;
}
::selection {
  background: var(--fun-pink);
  color: #fff;
}

/*----------------------------------------------------
  ANIMATED ELEMENTS (micro-interactions, loading states)
----------------------------------------------------*/
@keyframes cardPopIn {
  from { opacity: 0; transform: scale(0.95) rotate(-2deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.card, .testimonial-card {
  animation: cardPopIn 0.5s cubic-bezier(.56,1.32,.62,.76);
}
@media (max-width: 750px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
}

/*----------------------------------------------------
  PRINT OVERRIDE (optional, disables hero colors)
----------------------------------------------------*/
@media print {
  .hero, header, .cookie-banner, .mobile-menu, footer {
    display: none;
  }
}
