/* ================== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F5E9;
  color: #23415A;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 18px; text-align: left; }
ul, ol { list-style: none; }

/* ================== BRAND FONTS ================== */
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@700;900&family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  color: #23415A;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

p, ul, ol, li, dl, dd, dt {
  font-family: 'Roboto', Arial, sans-serif;
  color: #23415A;
  font-size: 1rem;
  margin-bottom: 12px;
}

/* ================== UTILITY & LAYOUT ================== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
/* Section backgrounds for extra playfulness */
.section.cta, section.cta {
  background: #68A7C6;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(104,167,198,0.08);
  border-radius: 24px;
}
.section.hero, section.hero {
  background: #F7D75E;
  color: #23415A;
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(247,215,94,0.09);
  position: relative;
  overflow: hidden;
}

/* ================== HEADER & NAVIGATION ================== */
header {
  background: #fff;
  border-bottom: 4px solid #68A7C6;
  box-shadow: 0 2px 12px 0 rgba(35,65,90,0.03);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
nav > a img {
  height: 44px;
  width: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
nav ul li a {
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  color: #23415A;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: #F7D75E;
  color: #23415A;
}
nav .cta {
  font-family: 'Bitter', serif;
  background: #F7D75E;
  color: #23415A;
  font-weight: bold;
  border-radius: 18px;
  padding: 11px 24px;
  margin-left: 12px;
  font-size: 1.1rem;
  box-shadow: 0 3px 16px 0 rgba(247,215,94,0.15);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  letter-spacing: 0.04em;
  border: 2px solid #F7D75E;
  animation: bounce-in 0.8s 0.1s both;
}
nav .cta:hover,
nav .cta:focus {
  background: #fff;
  color: #68A7C6;
  border: 2px solid #68A7C6;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}
@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.7) translateY(-24px); }
  80% { opacity: 1; transform: scale(1.08) translateY(4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ================== MOBILE MENU ================== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 105;
  background: #F7D75E;
  font-size: 2.4rem;
  color: #23415A;
  padding: 6px 16px;
  margin-left: 16px;
  border-radius: 16px;
  border: 2px solid #23415A;
  transition: background 0.18s, transform 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #68A7C6;
  color: #fff;
  transform: scale(1.1);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #F7F5E9;
  z-index: 110;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,1.5,.39,1);
  box-shadow: 4px 0 48px 0 rgba(35,65,90,0.14);
  padding: 32px 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #68A7C6;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 12px;
  align-self: flex-end;
  margin-bottom: 18px;
  padding: 5px 18px 5px 11px;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F7D75E;
  color: #23415A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Bitter', serif;
  font-size: 1.25rem;
  color: #23415A;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  margin-bottom: 11px;
  box-shadow: 0 2px 10px 0 rgba(35,65,90,0.05);
  transition: background 0.16s, color 0.16s, box-shadow 0.21s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #68A7C6;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(104,167,198,0.13);
}

@media (max-width: 980px) {
  nav ul {
    display: none;
  }
  nav .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/* ================== HERO ================== */
.hero {
  background: #F7D75E;
  color: #23415A;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 rgba(247,215,94,0.13);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  animation: fade-in-top 1.6s cubic-bezier(.75,0,.19,1.1);
}
@keyframes fade-in-top {
  from {
    opacity: 0;
    transform: translateY(-32px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #23415A;
  text-shadow: 2px 2px #fff18133;
}
.hero a.cta {
  margin-top: 12px;
}

/* ================== CARDS, SECTIONS, FEATURES, SERVICES ================== */
.features {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(35,65,90,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul,
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 0;
}
.features ul li,
.services ul li {
  background: #F7F5E9;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(247,215,94,0.07);
  padding: 20px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
  border: 2px dashed #68A7C6;
  animation: playful-pop 1.2s cubic-bezier(.3,1.56,.65,1) both;
}
.features ul li:hover,
.services ul li:hover {
  box-shadow: 0 6px 32px 0 rgba(104,167,198,0.13);
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  border-style: solid;
  cursor: pointer;
}
@keyframes playful-pop {
  0% { opacity: 0; transform: scale(0.89) rotate(-2deg); } 
  60% { opacity: 1; transform: scale(1.09) rotate(3deg); } 
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.features ul li img {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  filter: drop-shadow(1px 1px 3px #68A7C677);
}
.services ul li {
  background: #fff;
  border: 2px dotted #F7D75E;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  gap: 10px;
  font-size: 1rem;
}
.services ul li h3 {
  color: #68A7C6;
  font-size: 1.2rem;
}
.services ul li span {
  background: #F7D75E;
  color: #23415A;
  padding: 5px 13px;
  border-radius: 11px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 8px;
  letter-spacing:0.01em
}

/* Card/Content Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(35,65,90,0.10);
  background: #fff;
  transition: box-shadow 0.15s, transform 0.15s;
  padding: 24px;
  min-width: 220px;
  animation: playful-pop 1.2s cubic-bezier(.3,.8,.51,1) both;
}
.card:hover {
  box-shadow: 0 5px 23px 0 rgba(104,167,198,0.18);
  transform: scale(1.03) rotate(-1deg);
}

.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;
}

/* ================== TESTIMONIALS ================== */
.testimonials {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 rgba(35,65,90,0.074);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F5E9;
  border-radius: 18px;
  min-height: 84px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(104,167,198,0.08);
  transition: box-shadow 0.2s, transform 0.19s;
  border: 2px solid #68A7C6;
  flex-wrap: wrap;
  flex: 1 1 340px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23415A;
  animation: testimonial-appear 1.1s cubic-bezier(.21,1.06,.61,1.02) both;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(247,215,94,0.14), 0 2px 16px 0 rgba(104,167,198,0.09);
  transform: translateY(-4px) scale(1.03) rotate(1deg);
}
@keyframes testimonial-appear {
  0% { opacity: 0; transform: scale(.93) rotate(-1.5deg); }
  80% { opacity: 1; transform: scale(1.04) rotate(2.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #23415A;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #68A7C6;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
  margin-right: 0;
}

/* Ensured contrast for testimonial cards */
.testimonial-card {
  background: #fffde4;
  color: #23415A;
}

/* ================== PRICING ================== */
.pricing table {
  width: 100%;
  background: #F7F5E9;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(104,167,198,0.07);
  margin: 22px 0 24px 0;
  overflow: hidden;
}
.pricing th {
  background: #68A7C6;
  color: #fff;
  font-family: 'Bitter', serif;
  font-size: 1.09rem;
  letter-spacing: 0.05em;
}
.pricing td {
  color: #23415A;
  font-size: 1rem;
}
.pricing tr:nth-child(even) td { background: #fff; }
.pricing tr:nth-child(odd) td { background: #F7F5E9; }

/* General table style for all tables in .services table, etc. */
table {
  margin: 22px 0 28px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
thead th {
  background: #68A7C6;
  color: #fff;
  font-family: 'Bitter', serif;
}
tbody tr:nth-child(odd) td { background: #F7F5E9; }
tbody tr:nth-child(even) td { background: #fff; }

/* ================== CTA BUTTONS ================== */
a.cta,
button.cta,
.cta a {
  display: inline-block;
  font-family: 'Bitter', serif;
  font-size: 1.17rem;
  font-weight: 900;
  background: #F7D75E;
  color: #23415A;
  border: 2px solid #F7D75E;
  border-radius: 24px;
  padding: 13px 36px;
  margin-top: 8px;
  box-shadow: 0 3px 22px 0 rgba(247,215,94,0.14);
  letter-spacing: 0.01em;
  text-align: center;
  transition: background 0.16s, color 0.16s, border 0.19s, transform 0.13s;
  animation: bounce-in 0.7s both;
}
a.cta:hover,
a.cta:focus,
button.cta:hover,
button.cta:focus,
.cta a:hover,
.cta a:focus {
  background: #23415A;
  color: #F7D75E;
  border: 2px solid #68A7C6;
  transform: translateY(-3px) scale(1.05) rotate(-2deg);
}
a.cta:active {
  background: #68A7C6;
  color: #fff;
}

/* ================== FOOTER ================== */
footer {
  width: 100%;
  background: #23415A;
  color: #fff;
  padding: 34px 0 22px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bitter', serif;
  font-size: 1.11rem;
  color: #fff;
}
.footer-brand img {
  height: 40px;
  margin-right: 4px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}
.footer-menu a {
  color: #68A7C6;
  font-weight: bold;
  transition: color 0.16s, text-decoration 0.16s;
  text-underline-offset: 4px;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #F7D75E;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.99rem;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin: 6px 0 0 0;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(2px 4px 12px #68A7C677);
  transition: filter 0.15s, transform 0.1s;
}
.footer-social a:hover img {
  filter: drop-shadow(2px 4px 18px #F7D75E);
  transform: scale(1.1) rotate(-7deg);
}
.footer-consent small {
  color: #F7D75E;
  font-size: 0.84rem;
}

/* ================== COOKIE BANNER & DIALOG ================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left:0; right:0;
  background: #23415A;
  color: #fff;
  width: 100vw;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 19px 12px 19px 30px;
  box-shadow: 0 -2px 20px 0 rgba(35,65,90,.17);
  animation: slide-up-banner 0.5s 0.1s both;
}
@keyframes slide-up-banner {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  font-size: 1rem;
  color: #fff;
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 20px;
  background: #F7D75E;
  color: #23415A;
  border: 2px solid #F7D75E;
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 2px 16px 0 rgba(104,167,198,0.08);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.14s, color 0.16s, border 0.15s, transform 0.11s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #23415A;
  color: #F7D75E;
  border: 2px solid #F7D75E;
  transform: scale(1.07) rotate(-1.5deg);
}
.cookie-btn.reject {
  background: #fff;
  color: #68A7C6;
  border: 2px solid #68A7C6;
}
.cookie-btn.reject:hover {
  background: #68A7C6;
  color: #fff;
}
.cookie-btn.settings {
  background: #68A7C6;
  color: #fff;
  border: 2px solid #68A7C6;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #68A7C6;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 1001;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35,65,90,.73);
  animation: cookie-dialog-fade .2s both;
}
@keyframes cookie-dialog-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #23415A;
  border-radius: 24px;
  padding: 36px 38px 34px 34px;
  min-width: 325px;
  max-width: 98vw;
  box-shadow: 0 4px 28px 0 rgba(104,167,198,0.17);
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  animation: playful-pop 0.8s .07s both;
}
.cookie-modal-content h3 {
  font-family: 'Bitter', serif;
  color: #68A7C6;
  margin-bottom:7px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 14px 0 21px 0;
}
.cookie-modal-category {
  display: flex;
  flex-direction:row;
  align-items: center;
  gap: 15px;
}
.cookie-modal-category label {
  font-weight: bold;
  font-size: 1.03rem;
}
.cookie-switch {
  appearance: none;
  width: 48px;
  height: 25px;
  background: #F7F5E9;
  border-radius: 18px;
  border: 2px solid #68A7C6;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
}
.cookie-switch:checked {
  background: #F7D75E;
  border-color: #F7D75E;
}
.cookie-switch:disabled {
  opacity: 0.6;
  background: #eee;
  border-color: #ccc;
  cursor: not-allowed;
}
.cookie-switch::before {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #68A7C6;
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.15s, background 0.19s;
}
.cookie-switch:checked::before {
  left: 24px;
  background: #F7D75E;
}
.cookie-modal-btns {
  margin-top: 16px;
  display: flex;
  gap: 20px;
}
.cookie-modal-close-btn {
  background: #68A7C6;
  color: #fff;
  border-radius: 12px;
  font-size: 1.7rem;
  padding: 4px 18px;
  margin-left: auto;
  transition: background 0.17s;
}
.cookie-modal-close-btn:hover { background: #F7D75E; color: #23415A; }

/* ================== DL, DT, DD, LEGAL, FAQ, SUCCESS ================== */
.text-section {
  margin-bottom: 18px;
}
dl {
  margin: 0 0 18px 0;
}
dt {
  font-family: 'Bitter', serif;
  font-weight: bold;
  font-size: 1.09rem;
  color: #68A7C6;
  margin-top: 12px;
}
dd {
  padding-left: 8px;
  margin-bottom: 12px;
}
.legal {
  background: #fff;
  border-radius: 28px;
  padding: 40px 20px;
  box-shadow: 0 2px 12px 0 rgba(104,167,198,0.07);
  margin-bottom: 60px;
}
.success {
  margin-top: 40px;
  background: #fff;
  border-radius: 28px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(35,65,90,0.10);
}
.success .text-section {
  margin: 0 auto 0 auto;
  max-width: 500px;
  text-align: center;
}

/* ================== MAP SNIPPET ================== */
.map-snippet img {
  width: 100%;
  max-width: 230px;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(104,167,198,0.08);
  margin-top: 12px;
}

/* ================== MEDIA QUERIES FOR RESPONSIVENESS ================== */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .features,
  .testimonials,
  .pricing,
  .legal,
  .section,
  section.cta,
  .success {
    padding: 32px 7px;
  }
}
@media (max-width: 768px) {
  .section,
  .features,
  .testimonials,
  .legal,
  .pricing,
  section.cta,
  .success {
    margin-bottom: 40px;
    padding: 30px 5px;
    border-radius: 20px;
  }
  .hero {
    min-height: 160px;
    padding: 30px 10px;
    border-radius: 18px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 15px;
  }
  nav {
    padding: 6px 0;
  }
  footer {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 24px 0 12px;
  }
  .footer-brand img { height: 30px; }
  .card, .features ul li, .services ul li {
    min-width: 140px;
    font-size: 0.98rem;
    padding: 13px 7px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 17px;
  }
  .features ul li, .services ul li {
    align-items: flex-start !important;
    min-width: 0;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
}
@media (max-width:420px) {
  .hero h1, h1 { font-size: 1.13rem; }
  .footer-brand img { height: 22px; }
  .testimonial-card { font-size: 0.96rem; }
}

/* ================== ANIMATIONS & MICRO-INTERACTIONS ================== */
/* Colorful wiggly underline on fun h2/h3 */
h2, .features h2, .services h2, .testimonials h2 {
  position: relative;
  display: inline-block;
  z-index: 1;
}
h2::after, .testimonials h2::after {
  content: '';
  display: block;
  width: 65%;
  height: 6px;
  background: #F7D75E;
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: -7px;
  z-index: -1;
  opacity: 0.53;
  animation: playful-underline 1.5s .5s 1;
}
@keyframes playful-underline {
  0% { width: 10%; opacity: 0; }
  80% { width: 80%; opacity: 0.85; }
  100% { width: 65%; opacity: 0.53; }
}

/* ================== MISC ================== */
::-webkit-scrollbar { width: 11px; background: #F7F5E9; }
::-webkit-scrollbar-thumb { background: #68A7C6; border-radius: 8px; }

/* ================== ACCESSIBILITY ================== */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #F7D75E;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #68A7C6AA;
  z-index: 10;
  position: relative;
}

/* ================== MINIMUM GAP BETWEEN ALL CARDS/SECTIONS ================== */
section, .section, .card, .testimonial-card {
  margin-bottom: 20px;
}
.features ul, .services ul, .card-container, .content-grid, .text-image-section, .testimonial-card {
  gap: 20px;
}

/* Prevent overlap for complex layouts with z-index stacking on positioned elements only where needed for effect (mobile menu, modal, banner) */
