/* ============================
   CSS RESET & BASE 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3756;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: #1A3756;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #F5C63A;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* =============================
   BRAND COLORS & TYPOGRAPHY
   ============================= */
:root {
  --color-primary: #1A3756;
  --color-secondary: #F5C63A;
  --color-accent: #F7F7F5;
  --color-info: #36D3F7;
  --color-success: #63D471;
  --color-warning: #F58449;
  --color-card: #fffbe9;
  --color-hero-bg: #ffe761;
  --color-accent-bg: #f0fafc;
  --color-shadow: rgba(26, 55, 86, 0.08);
  --radius-card: 24px;
  --radius-btn: 32px;
  --shadow-card: 0 5px 24px var(--color-shadow);
  --transition: 0.2s cubic-bezier(.73,.19,.48,.77);
  --font-display: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-fun: 'Fredoka One', 'Montserrat', Arial, sans-serif;
}

/* =============================
   OVERALL STRUCTURE & CONTAINERS
   ============================= */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Section Spacing & Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 36px rgba(26,55,86,0.13);
  transform: translateY(-4px) scale(1.02) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(26,55,86,0.08);
  border-radius: 18px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.2s, background 0.2s, transform .18s;
  position: relative;
  flex-direction: row;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-primary);
  opacity: 0.7;
  margin-left: 14px;
}
.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #161c24;
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(245,198,58,0.18);
  background: var(--color-accent-bg);
  transform: scale(1.02) rotate(1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.feature-grid > div {
  flex: 1 1 230px;
  background: var(--color-accent-bg);
  border-radius: 16px;
  padding: 24px 18px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(245,198,58,0.08);
  transition: box-shadow .15s, background .18s, transform .17s;
  position: relative;
  overflow: hidden;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(36,211,247,0.11);
  background: #fffde6;
  transform: rotate(-1.5deg) scale(1.025);
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 3px rgba(26,55,86,0.05));
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-embed {
  background: #fcf7d7;
  border-radius: 15px;
  padding: 18px;
  margin-top: 16px;
  font-size: 14px;
  color: #4a4a4a;
  font-style: italic;
}

/* =============================
   TYPOGRAPHY HIERARCHY
   ============================= */
h1, .hero h1 {
  font-family: var(--font-fun);
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  animation: popIn 0.7s cubic-bezier(.61,-0.02,.84,1.13);
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-display);
}
p, ul li, ol li {
  font-size: 17px;
  line-height: 1.7;
  color: #222d39;
  font-family: var(--font-body);
  margin-bottom: 11px;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 20px;
}
ul li, ol li {
  position: relative;
  padding-left: 7px;
  margin-bottom: 7px;
}
ul li::before {
  content: '•';
  color: var(--color-info);
  margin-right: 7px;
  font-size: 20px;
  line-height: 1;
}
strong, b {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
header {
  position: relative;
  width: 100%;
  background: var(--color-accent);
  padding: 0 0 0.5rem 0;
  box-shadow: 0 4px 16px rgba(26,55,86,0.03);
  z-index: 99;
}
.logo {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 7px;
  height: 70px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.16s,color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cta-button {
  font-family: var(--font-fun);
  font-size: 1rem;
  color: #fff;
  background: var(--color-secondary);
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 36px;
  margin-left: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(245,198,58,0.12);
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.18s;
  outline: none;
  position: relative;
  z-index: 1;
  min-width: 140px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fffbe9;
  transform: translateY(-1.5px) scale(1.04);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 0;
  border-radius: 12px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
  transition: background .18s, color .15s, box-shadow .15s;
  z-index: 1202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #FC0;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(255,255,253,0.97);
  box-shadow: 0 2px 30px rgba(26,55,86,0.20);
  z-index: 1200;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.38s cubic-bezier(0.63,0.12,0.31,1.23), opacity 0.16s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: 0;
  font-size: 2rem;
  position: absolute;
  top: 12px; right: 24px;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1500;
}
.mobile-nav {
  margin: 64px auto auto auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  padding: 14px 0px;
  width: 80vw;
  text-align: center;
  background: none;
  border-radius: 15px;
  transition: background 0.11s, color 0.10s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #ffe761;
  color: var(--color-primary);
}

/* Navigation Flex Containers (Desktop) */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

/* Hide navigation on mobile, show burger */
@media (max-width: 1023px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* =========================
   HERO SECTION
   ========================= */
.hero {
  background: var(--color-hero-bg);
  border-radius: 0 0 38px 38px;
  margin-bottom: 48px;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroBounce 1.03s cubic-bezier(.63,-0.07,.35,1.04);
  box-shadow: 0 7px 38px rgba(245,198,58,0.11);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0 34px 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  background: none;
  letter-spacing: -0.5px;
  text-shadow: 1px 2px 0 #f5e5b3;
}
.hero p {
  font-size: 1.18rem;
  color: #2c375b;
}

@keyframes heroBounce {
  0% { opacity: 0; transform: scaleY(0.85) translateY(40px); }
  70% { opacity: 1; transform: scaleY(1.03) translateY(-10px); }
  100% { opacity: 1; transform: scaleY(1) translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.90) translateY(22px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #fffbe9;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -5px 68px rgba(26,55,86,0.07);
  margin-top: 36px;
  padding: 32px 0 15px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  background: transparent;
  border-radius: 10px;
  padding: 7px 14px;
  transition: background 0.11s, color 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.footer-nav span {
  color: #957a01;
  font-size: 0.92rem;
}
.contact-info {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #444b60;
  font-size: 0.95rem;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}
.footer-logo {
  margin: 26px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  height: 48px;
  width: auto;
}

/* ========================
   TEXT-SECTIONS & CARDS
   ======================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(26,55,86,.04);
  padding: 22px 18px;
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  padding-left: 18px;
}

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

/* =============================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================= */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: var(--font-fun);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
button {
  outline: none;
  border: none;
}

/* Animations for playful effect */
.cta-button, .feature-grid > div, .card, .testimonial-card,
button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .17s, color .13s, box-shadow .16s, transform .18s;
}
.cta-button:active {
  transform: scale(0.97) rotate(-1deg);
}
.feature-grid > div:hover, .card:hover {
  animation: rubberBand 0.94s;
}
@keyframes rubberBand {
  0% { transform: scale3d(1, 1, 1); }
  30% { transform: scale3d(1.20, 0.85, 1); }
  40% { transform: scale3d(0.95, 1.10, 1); }
  50% { transform: scale3d(1.05, 0.97, 1); }
  65% { transform: scale3d(0.94, 1.10, 1); }
  75% { transform: scale3d(1.03, 0.98, 1); }
  100% { transform: scale3d(1, 1, 1); }
}

/* =============================
   LISTS & MISC
   ============================= */
.address-details p,
.contact-info span {
  font-size: 1rem;
  color: #313f54;
  margin-bottom: 6px;
}

/* =============================
   RESPONSIVE DESIGN & ADJUSTMENTS
   ============================= */
@media (max-width: 1070px) {
  .container {
    max-width: 94vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid > div { max-width: 249px; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-grid > div { min-width: 150px; padding: 18px 10px; }
  .testimonial-card { padding: 18px; }
  .text-section { padding: 12px 6px; }
  .section { padding: 24px 5px; margin-bottom: 38px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
}
@media (max-width: 768px) {
  header, .footer-nav, .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer-logo {
    margin-top: 7px;
  }
  .footer-nav { gap: 10px 7px; }
  footer .container { gap: 11px; }
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid > div { max-width: 100%; width: 100%;}
  .section {padding: 18px 0; margin-bottom: 26px;}
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 13px 8px;
  }
}
@media (max-width: 480px) {
  .logo img, .footer-logo img { height: 35px; }
  .container { padding-left: 2vw;padding-right:2vw; }
  .hero,
  .hero .container,
  .hero .content-wrapper {
    padding: 8px 0 14px 0;
    min-height: 120px;
  }
  .footer-logo { margin-top: 3px; }
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe8;
  box-shadow: 0 -2px 24px rgba(26,55,86,0.07);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 28px 24px;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #151e30;
  box-sizing: border-box;
  animation: cookieSlideIn 0.68s cubic-bezier(.56,-0.09,.83,1.03);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: .2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__msg {
  flex: 3 1 250px;
  margin-right: 11px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-btn {
  font-family: var(--font-fun);
  font-size: 0.98rem;
  padding: 10px 26px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 1px 7px rgba(245,198,58,0.11);
  color: #fff;
  background: var(--color-secondary);
  margin-right: 6px;
  cursor: pointer;
  transition: background .14s, color .13s, transform .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #ffe761;
  outline: none;
  transform: scale(1.06) rotate(-2deg);
}
.cookie-btn.cookie-btn--reject {
  background: var(--color-info);
  color: var(--color-primary);
}
.cookie-btn.cookie-btn--reject:hover {
  background: #21c0e7;
  color: #fff;
}
.cookie-btn.cookie-btn--settings {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.cookie-btn--settings:hover {
  background: var(--color-primary);
  color: #ffd05a;
}

@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 7px 18px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 7px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(26,55,86,0.16);
  padding: 40px 34px 30px 34px;
  z-index: 4200;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 94vw;
  min-height: 160px;
  gap: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: modalBounce .57s cubic-bezier(.51,.07,.7,1.06);
}
@keyframes modalBounce {
  from { transform: translate(-50%, 60%) scale(.91); opacity: 0.2;}
  50%  { transform: translate(-50%,3%) scale(1.05); opacity: 1;}
  to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-primary);
  z-index: 9999;
}
.cookie-modal__title {
  font-family: var(--font-fun);
  font-size: 1.4rem;
  color: var(--color-primary);
  text-align: left;
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category__label {
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-category__desc {
  color: #596fa2;
  font-size: 0.93rem;
  margin-left: 6px;
}
.cookie-switch {
  -webkit-appearance: none;
  appearance: none;
  width: 42px;
  height: 22px;
  background: #ececec;
  border-radius: 18px;
  position: relative;
  outline: none;
  box-shadow: 0 1px 7px rgba(26,55,86,0.07);
  transition: background .15s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--color-success);
}
.cookie-switch::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform .16s, box-shadow 0.1s;
}
.cookie-switch:checked::before {
  transform: translateX(20px);
}
.cookie-category--essential .cookie-switch {
  background: #dddddd;
  pointer-events: none;
}
.cookie-category--essential .cookie-switch::before {
  background: #ccc;
}

/* Modal overlay */
.cookie-modal__overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,55,86, 0.19);
  z-index: 4199;
  animation: fadeIn .10s cubic-bezier(.68,-0.41,.33,1.77);
}
@keyframes fadeIn {
  from { opacity: 0.2; }
  to   { opacity: 1; }
}

/* Hide cookie modal by default*/
.cookie-modal__hidden,
.cookie-modal__overlay--hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

/* =============================
   PLAYFUL DECORATIVE ELEMENTS
   ============================= */
.feature-grid > div::after {
  content: '';
  display: block;
  position: absolute;
  width: 46px; height: 46px;
  bottom: -16px; right: -18px;
  background: var(--color-info);
  opacity: 0.13;
  border-radius: 23px 16px 24px 30px;
  z-index: 0;
  pointer-events: none;
  animation: decoBubble 3.3s infinite alternate linear;
}
@keyframes decoBubble {
  0% { transform: scale(1) rotate(0); }
  100% { transform: scale(1.2) rotate(27deg); }
}

.card::after {
  content: '';
  display: block;
  position: absolute;
  width: 32px; height: 32px;
  top: -13px; left: -13px;
  background: var(--color-secondary);
  opacity: 0.11;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: decoBubble 2.3s infinite alternate;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  left: 18px; top: 11px;
  font-size: 3.2rem;
  color: var(--color-info);
  opacity: 0.14;
  z-index: 1;
  font-family: var(--font-fun);
}
.testimonial-card p {
  margin-left: 32px;
  position: relative;
  z-index: 2;
}

/* =============================
   MISC ADJUSTMENTS
   ============================= */
::-webkit-input-placeholder { color: #657493; }
::-moz-placeholder { color: #657493; }
:-ms-input-placeholder { color: #657493; }
::placeholder { color: #657493; }

[tabindex]:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px dotted var(--color-secondary) !important;
  outline-offset: 2px;
}

@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
