/* 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, 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F9F8FA;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205072;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #26A69A;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1.6em 1.2em;
}
li + li { margin-top: 10px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #205072;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

@media (min-width: 769px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}

strong { font-weight: 700; }
em { font-style: italic; }

section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* NAVIGATION & HEADER */
header {
  background: #205072;
  color: #fff;
  width: 100%;
  position: relative;
  box-shadow: 0 6px 20px 0 rgba(32,80,114,0.08);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 18px 12px;
  justify-content: flex-start;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 26px 24px 30px 22px/24px 28px 20px 30px;
  background: transparent;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  background: #26A69A;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(38,166,154,0.10);
}
.main-nav .cta.primary {
  background: #fff;
  color: #205072;
  font-weight: 700;
  margin-left: auto;
  border-radius: 20px;
  padding: 10px 28px;
  box-shadow: 0 6px 24px 0 rgba(38,166,154,0.15);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #F8DC23;
  color: #205072;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 10px 36px 0 rgba(38,166,154,0.20);
}

header img {
  height: 38px;
  width: auto;
  vertical-align: middle;
  margin-right: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #26A69A;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(32,80,114,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:active { transform: scale(0.93); }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #205072;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.66,.04,.41,.98);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 34px;
  box-shadow: -8px 0 40px rgba(32,80,114,0.30);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #205072;
  border: none;
  font-size: 2rem;
  padding: 6px 18px;
  position: absolute;
  top: 14px;
  right: 12px;
  border-radius: 18px;
  cursor: pointer;
  z-index: 1004;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {background: #26A69A; color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 36px 28px 0;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 12px 0 12px 8px;
  width: 100%;
  background: none;
  transition: background 0.2s, color 0.2s, letter-spacing 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #26A69A;
  color: #fff;
  letter-spacing: 1px;
}

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .mobile-nav a { font-size: 1.15rem; }
}

/* HERO SECTION */
.hero {
  background: #26A69A linear-gradient(100deg, #26A69A 80%, #F8DC23 100%);
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 18px 60px 0 rgba(38,166,154,0.13);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  min-height: 260px;
  position: relative;
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 14px;
  letter-spacing: 1.5px;
  animation: floatIn 0.9s cubic-bezier(.6,-0.28,.74,1.04);
}
.hero p {
  font-size: 1.16rem;
  margin-bottom: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.hero .cta.primary {
  background: #F8DC23;
  color: #205072;
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 32px;
  font-size: 1.15rem;
  box-shadow: 0 3px 18px 0 rgba(248,220,35,0.23);
  transition: background 0.2s, box-shadow 0.18s, transform 0.17s;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
  background: #fff;
  color: #26A69A;
  box-shadow: 0 9px 26px 0 rgba(32,80,114,0.14);
  transform: scale(1.05) rotate(1deg);
}
@keyframes floatIn {
  from {opacity: 0;transform: translateY(-28px);}
  to {opacity: 1;transform: translateY(0);}
}

/* SECTIONS & FLEXBOX LAYOUTS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 13px 0 rgba(32,80,114,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus {
  box-shadow: 0 12px 26px 0 rgba(32,80,114,0.13);
  transform: translateY(-4px) scale(1.02);
}
.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;
  margin-bottom: 32px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 rgba(32,80,114,0.06);
  margin-bottom: 24px;
  flex-direction: row;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #205072;
  margin: 0 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card cite {
  margin-left: auto;
  font-size: 1rem;
  color: #26A69A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 15px;
  padding: 22px 20px;
  box-shadow: 0 1px 9px 0 rgba(32,80,114,0.06);
}

.features ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 0 0 18px 0;
}
.features ul li {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 9px 0 rgba(32,80,114,0.04);
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 210px;
  font-size: 1.04rem;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 12px;
  position: relative;
}
.features ul li img {
  height: 36px;
  width: 36px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #F8DC23;
  padding: 5px;
  box-shadow: 0 2px 8px 0 rgba(248,220,35,0.06);
  animation: playful-pop 0.65s cubic-bezier(.66,.04,.41,.98);
}
.features ul li:hover, .features ul li:focus {
  box-shadow: 0 8px 24px 0 rgba(38,166,154,0.11);
  transform: scale(1.04) rotate(-1.5deg);
}
@keyframes playful-pop {
  0% {transform: scale(.5) rotate(-17deg);opacity: 0.3;}
  100% {transform: scale(1) rotate(0);opacity: 1;}
}

.team-profiles,
.team-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.team-member {
  background: #fff;
  border-radius: 19px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.06);
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.team-member:hover, .team-member:focus {
  box-shadow: 0 8px 19px 0 rgba(38,166,154,0.14);
  transform: scale(1.03) rotate(1.5deg);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 13px 0 rgba(32,80,114,0.09);
  padding: 27px 22px;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, transform 0.15s;
  border-left: 9px solid #F8DC23;
  position: relative;
}
.service-list > div:hover, .service-list > div:focus {
  box-shadow: 0 9px 26px #26A69A22;
  transform: scale(1.04) rotate(-2deg);
}
.service-list > div span {
  color: #26A69A;
  font-weight: 700;
  font-size: 1rem;
}

/* ABOUT/THANK YOU/LEGAL CARDS */
.legal, .thankyou, .privacy-text, .gdpr-text, .terms-text, .cookie-policy-text {
  background: #fff;
  border-radius: 18px;
  padding: 32px 20px;
  box-shadow: 0 1px 13px 0 rgba(32,80,114,0.03);
  color: #205072;
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.next-steps,
.usp-list,
.faq-list,
.consulting-steps {
  margin: 14px 0 14px 20px;
  padding: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #F9F8FA;
  border-radius: 35px;
  padding: 50px 20px;
  margin-bottom: 60px;
}
.testimonial-card {
  min-width: 260px;
  flex: 1 1 350px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: #205072;
  font-size: 1.1rem;
}
.testimonial-card cite {
  color: #26A69A;
}
.trusted-seals {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.trusted-seals img {
  height: 32px;
  width: 32px;
}

/* BLOG ARTICLES */
.articles .post-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.articles .post-preview-list article {
  background: #fff;
  padding: 22px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(32,80,114,0.06);
  min-width: 260px;
  flex: 1 1 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.articles .post-preview-list article:hover, .articles .post-preview-list article:focus {
  box-shadow: 0 7px 15px 0 rgba(32,80,114,0.10);
  transform: scale(1.03) rotate(-1deg);
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 8px;
}
.topic-tags span {
  background: #26A69A;
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  padding: 7px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 7px rgba(38,166,154,0.10);
  transition: background 0.18s;
}
.topic-tags span:hover {
  background: #F8DC23;
  color: #205072;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #26A69A;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 30px;
  font-size: 1.09rem;
  box-shadow: 0 2px 13px 0 rgba(38,166,154,0.15);
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.18s;
  outline: none;
}
.cta.primary {
  background: #F8DC23;
  color: #205072;
  box-shadow: 0 3px 11px 0 rgba(248,220,35,0.16);
}
.cta.primary:hover, .cta.primary:focus {
  background: #26A69A;
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 22px 0 rgba(32,80,114,0.09);
}
.cta:active {
  transform: scale(0.97);
}

/* FOOTER */
footer {
  background: #205072;
  color: #fff;
  padding: 42px 0 10px;
  width: 100%;
  border-radius: 29px 29px 0 0;
  box-shadow: 0 -6px 24px 0 rgba(32,80,114,0.12);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 3px;
  border-radius: 11px;
  transition: background 0.13s, color 0.14s;
  padding: 4px 8px;
}
.footer-links a:hover,
.footer-links a:focus {
  background: #26A69A;
  color: #fff;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 13px;
}
.social-media img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  transition: background 0.13s, box-shadow 0.13s;
  box-shadow: 0 1px 5px 0 rgba(38,166,154,0.11);
}
.social-media img:hover, .social-media img:focus {
  background: #F8DC23;
  box-shadow: 0 4px 13px rgba(248,220,35,0.12);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.97rem;
  color: #ecf6fb;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3px solid #F8DC23;
  color: #205072;
  box-shadow: 0 -2px 22px rgba(32,80,114,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 22px 20px;
  z-index: 9998;
  font-size: 1rem;
  animation: cookiebannerIn 0.6s cubic-bezier(.72,-0.42,.56,1.13);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cta {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 16px;
  min-width: 110px;
  text-align: center;
}
.cookie-banner .cta.settings {
  background: #205072;
  color: #fff;
  border: 1px solid #26A69A;
}
.cookie-banner .cta.reject {
  background: #fff;
  border: 1px solid #205072;
  color: #205072;
}
.cookie-banner .cta.reject:hover,
.cookie-banner .cta.reject:focus {
  background: #26A69A;
  color: #fff;
}
@keyframes cookiebannerIn {
  0% {transform: translateY(95px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(32,80,114,0.36);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #205072;
  padding: 32px 26px 22px;
  border-radius: 18px;
  max-width: 400px;
  width: 96vw;
  box-shadow: 0 8px 48px #20507222;
  animation: modalIn 0.5s cubic-bezier(.46,.03,.52,1.06);
  position: relative;
}
.cookie-modal h2{
  font-size:1.2rem;
  margin-bottom:17px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F8DC23;
  border: none;
  border-radius: 13px;
  font-size: 1.1rem;
  font-family:'Montserrat';
  color: #205072;
  padding: 2px 12px 3px 12px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover {background:#26A69A;color:#fff;}
.cookie-modal .cookie-category {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #eee;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  margin-right: 0;
}
.cookie-modal .cookie-toggle:checked {
  background: #F8DC23;
}
.cookie-modal .cookie-toggle:disabled {
  background: #26A69A;
  opacity: 0.7;
  cursor: default;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: transform 0.18s;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(16px);
  background: #205072;
}
.cookie-modal .cookie-category-label {
  font-size: 1.03rem;
  flex: 1 1 auto;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.99rem;
  color: #65828c;
  margin-left: 6px;
}
.cookie-modal .cta {
  margin-top: 22px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 16px;
  background: #26A69A;
  color: #fff;
  font-weight:700;
  font-size:1.1rem;
  box-shadow: 0 2px 12px 0 rgba(38,166,154,0.14);
  border: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cta:hover { background: #F8DC23; color: #205072; }
@keyframes modalIn {
  0% {transform: scale(0.7) translateY(44px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}

/* MISC */
.case-studies, .price-overview, .case-examples, .editor-note, .mission, .map-embed, .price-information{
  background: #F8DC23;
  color: #205072;
  padding: 15px 18px;
  border-radius: 14px;
  font-size: 1.01rem;
  margin-bottom: 13px;
  box-shadow: 0 2px 9px 0 rgba(248,220,35,0.04);
}

/* Accessibility: Focus Styles */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #F8DC23;
  outline-offset: 2px;
  background: #20507211;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .footer-links, .contact-info, .social-media, footer .container {
    flex: 1 1 100%;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .container { padding: 0 6px; }
  .features ul { gap: 10px; }
  .service-list, .team-profiles, .card-container, .content-grid, .articles .post-preview-list {
    gap: 14px;
  }
  .section { padding: 27px 8px; margin-bottom: 32px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .hero { min-height: 170px; flex-direction: column; text-align: center; }
  .features ul { flex-direction: column; gap: 12px; }
  .service-list, .team-profiles, .card-container, .content-grid, .articles .post-preview-list {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card, .team-member, .service-list > div, .features ul li, .card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .mobile-nav a { font-size: 1.04rem; padding: 10px 0 10px 5px; }
  .footer-links, .contact-info, .social-media {
    align-items: flex-start;
    flex: initial;
    margin-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 15px 8px;
    font-size: 0.97rem;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1rem; }
  .hero, .section, .testimonials, footer { padding: 12px 2px; }
  .cookie-modal {
    padding: 14px 4px 12px;
    min-width: 0;
    width: 97vw;
  }
}

/* Playful, Dynamic ELEMENTS */
::-webkit-scrollbar {
  width: 9px;
  background: #F9F8FA;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #F8DC23;
  border-radius: 5px;
}

/* Fun Fonts (for Playful Accents) */
h2, h3, .cta, .cookie-modal h2, .features ul li strong, .footer-links a, .topic-tags span {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
}

/* Subtle Animated Decorative Elements Example */
.features ul li:after {
  content: '';
  display: block;
  width: 17px;
  height: 5px;
  border-radius: 3px;
  background: #F8DC23;
  margin-top: 6px;
  opacity: 0.74;
  animation: underline-bounce 2.4s infinite ease-in-out;
}
@keyframes underline-bounce {
  0%,100%{transform:scaleX(1);}
  50%{transform:scaleX(1.29);}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { transition: none !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
