/* ====================
   1. RESET & NORMALIZE
   ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  /* Base font size for mobile-first */
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #F9F9F9;
  color: #194E63;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  overflow-x: hidden;
  transition: background 0.25s;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #194E63;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.30rem;
  margin-bottom: 10px;
}
p, li, address, dl, dd {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #194E63;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
a {
  color: #194E63;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
input, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ==================
   2. GLOBAL CLASSES
   ================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Card layouts & spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 16px 0 rgba(49,131,171,0.08), 0 1.5px 8px 0 rgba(49,131,171,0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,78,99,0.16), 0 4px 20px 0 rgba(49,131,171,0.09);
  transform: translateY(-3px) scale(1.025);
  transition: box-shadow 0.25s, transform 0.25s;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(25,78,99,0.15);
  margin-bottom: 24px;
  min-width: 200px;
  max-width: 430px;
  border: 2px solid #71B1C7;
  position: relative;
}
.testimonial-card strong, .testimonial-card p {
  color: #194E63;
}
.star-rating {
  color: #FFD200;
  font-size: 1.1em;
  letter-spacing: 1px;
  margin-top: 2px;
  filter: drop-shadow(0 1px 0 #e5a700);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features / mosaic icon blocks */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 10px;
}
.features-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px 0 rgba(49,131,171,0.09);
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.2s;
  border: 2px dashed #71B1C7;
  cursor: pointer;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgba(25,78,99,0.11);
  transform: translateY(-2px) scale(1.024);
  background: #F9F9F9;
}
.features-grid img {
  margin-bottom: 14px;
  width: 46px;
}
.features-grid h3 {
  font-size: 1.1rem;
  color: #194E63;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

/* Blog grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0 0;
  justify-content: flex-start;
}
.blog-grid article {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(49,131,171,0.11);
  padding: 26px 20px;
  flex: 1 1 290px;
  min-width: 290px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.21s;
  position: relative;
}
.blog-grid article:hover {
  box-shadow: 0 7px 30px 0 rgba(25,78,99,0.14);
  transform: translateY(-2px) scale(1.024);
}
.blog-grid h2 {
  font-size: 1.17rem;
  margin-bottom: 7px;
  color: #194E63;
}
.blog-grid a {
  color: #fff;
  background: #71B1C7;
  padding: 7px 18px;
  font-size: 0.97em;
  border-radius: 80px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 7px;
}
.blog-grid a:hover {
  background: #194E63;
  color: #FFD200;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0 0;
}
.popular-tags span {
  background: #FFF6E5;
  color: #117b84;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 13px;
  border-radius: 80px;
  font-size: 0.99em;
  font-weight: 600;
  box-shadow: 0 1.5px 5px 0 rgba(113,177,199,0.08);
}

/* Newsletter CTA */
.newsletter-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #71B1C7;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(113,177,199,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-cta h2, .newsletter-cta p {
  color: #fff;
}

/* =============
   3. NAVIGATION
   ============= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(113,177,199,0.08);
  position: sticky;
  z-index: 30;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  gap: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #194E63;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 15px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
header nav a.active, header nav a:hover:not(.cta-primary) {
  background: #F8F6FF;
  color: #71B1C7;
}
header nav .cta-primary {
  background: #FFD200;
  color: #194E63;
  border-radius: 90px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  padding: 10px 26px;
  box-shadow: 0 3px 14px 0 rgba(249,216,26,0.19);
  margin-left: 16px;
}
header nav .cta-primary:hover {
  background: #71B1C7;
  color: #fff;
  box-shadow: 0 5px 26px 0 rgba(49,131,171,0.12);
}
header img {
  height: 42px;
  vertical-align: middle;
}
.mobile-menu-toggle {
  display: none;
  background: #71B1C7;
  color: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.68em;
  border: 2px solid #ffd200;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-left: 18px;
  z-index: 100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD200;
  color: #71B1C7;
}

/* =============
   4. MOBILE NAV
   ============= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,78,99,0.97);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  z-index: 2000;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), opacity 0.19s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #FFD200;
  background: transparent;
  padding: 15px 18px 9px 0;
  font-size: 2.2em;
  font-weight: bold;
  margin-left: auto;
  margin-top: 9px;
  margin-bottom: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #FFC700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 35px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  background: none;
  padding: 10px 14px;
  border-radius: 11px;
  transition: background 0.17s, color 0.16s;
  display: block;
  min-width: 220px;
}
.mobile-nav a:hover {
  background: #FFD200;
  color: #194E63;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==============
   5. HERO SECTIONS
   ============== */
.hero {
  background: #71B1C7;
  color: #fff;
  padding: 60px 0 42px 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 34px 0 rgba(113,177,199,0.22);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: mosaicSlideIn 1s cubic-bezier(.66,-0.02,.38,1.11);
}
.hero h1, .hero h2, .hero p {
  color: #fff !important;
}
.hero .cta-primary {
  margin-top: 21px;
  background: #FFD200;
  color: #194E63;
  font-size: 1.13em;
  padding: 13px 34px;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hero .cta-primary:hover {
  background: #fff;
  color: #71B1C7;
}
@keyframes mosaicSlideIn {
  from { opacity: 0; transform: translateY(60px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-banner {
  background: #FFD200;
  color: #194E63;
  padding: 38px 0 44px 0;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 44px;
  box-shadow: 0 2px 16px rgba(249,216,26,0.10);
  animation: bannerPop 0.9s cubic-bezier(.49,-0.07,.66,1.47);
}
@keyframes bannerPop {
  from { opacity: 0; transform: scale(0.96) translateY(44px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cta-banner .cta-primary {
  background: #194E63;
  color: #FFD200;
  padding: 13px 34px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 6px 24px 0 rgba(25,78,99,0.12);
  margin-top: 14px;
}
.cta-banner .cta-primary:hover {
  background: #fff;
  color: #71B1C7;
}

/* ==============
   6. BUTTONS & CTA
   ============== */
.cta-primary {
  display: inline-block;
  background: #71B1C7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 90px;
  font-weight: 700;
  padding: 12px 30px;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.18s;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 14px 0 rgba(113,177,199,0.12);
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFD200;
  color: #194E63;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 22px 0 rgba(25,78,99,0.14);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #71B1C7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border-radius: 80px;
  font-weight: 700;
  padding: 11px 26px;
  box-shadow: 0 2px 12px 0 rgba(113,177,199,0.08);
  border: 2px solid #71B1C7;
  margin-top: 18px;
  transition: background 0.16s, color 0.16s, border-color 0.16s, box-shadow 0.17s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #194E63;
  color: #FFD200;
  border-color: #194E63;
}
button, .btn {
  cursor: pointer;
}

/* =============
   7. FORMS & INPUTS
   ============== */
input[type='search'], .blog-search-bar {
  background: #fff;
  color: #194E63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 11px 18px;
  border-radius: 18px;
  border: 2px solid #71B1C7;
  margin-bottom: 22px;
  outline: none;
  box-shadow: 0 1px 8px 0 rgba(113,177,199,0.07);
  width: 100%;
  transition: border 0.16s, box-shadow 0.14s;
}
input[type='search']:focus {
  border: 2px solid #FFD200;
  box-shadow: 0 2.5px 10px rgba(249,210,0,0.11);
}

/* =============
   8. FOOTER
   ============= */
footer {
  background: #194E63;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 60px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(25,78,99,0.13);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.footer-content > a img {
  height: 50px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 32px;
}
footer nav a {
  color: #FFD200;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-bottom: 8px;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-short span {
  color: #fff;
  font-size: 1.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-short img {
  width: 23px;
  margin-right: 3.5px;
}

/* ==============
   9. SOCIAL LINKS
   ============= */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin: 11px 0 0 0;
}
.social-links a img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.13s, box-shadow 0.13s;
  box-shadow: 0 2px 8px 0 rgba(49,131,171,0.06);
  padding: 4px;
}
.social-links a:hover img {
  background: #FFD200;
  box-shadow: 0 6px 16px rgba(249,216,26,0.12);
}

/* ============
   10. ADDRESS, MAP
   ============ */
address {
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
  color: #194E63;
  font-size: 1.07em;
}
address div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 3px;
}
.location-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fffbe7;
  border-radius: 12px;
  padding: 17px 21px 13px 17px;
  box-shadow: 0 2px 7px 0 rgba(113,177,199,0.11);
  margin: 12px 0 0 0;
}
.location-map img {
  width: 40px;
}

/* ============
   11. MISC LAYOUTS
   ============ */
dt {
  font-weight: 700;
  margin-bottom: 6px;
}
dd {
  margin-left: 18px;
  margin-bottom: 6px;
}

/* =============
   12. RESPONSIVITY
   ============= */
@media (max-width: 992px) {
  .container {
    padding: 0 10px;
  }
  .features-grid {
    gap: 22px;
  }
  .card-container {
    gap: 15px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .features-grid > div,
  .card {
    min-width: 98vw;
    max-width: 100vw;
    padding: 16px 10px;
  }
  .blog-grid article {
    min-width: 98vw;
    padding: 17px 8px;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============
   13. COOKIE CONSENT BANNER + MODAL
   ============= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  color: #194E63;
  box-shadow: 0 -2px 22px rgba(25,78,99,0.18);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 23px 26px 21px 26px;
  font-size: 1.01em;
  transition: transform 0.34s cubic-bezier(.4,0,.2,1), opacity 0.22s;
  animation: cookieBannerAppear 1.1s cubic-bezier(.47,-0.05,.65,1.3);
}
@keyframes cookieBannerAppear {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 5px;
}
.cookie-btn {
  padding: 9px 24px;
  border-radius: 80px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01em;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  cursor: pointer;
  border: none;
  outline: none;
}
.cookie-btn.accept {
  background: #71B1C7;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #194E63;
  color: #FFD200;
}
.cookie-btn.reject {
  background: #fff;
  color: #71B1C7;
  border: 2px solid #71B1C7;
}
.cookie-btn.reject:hover {
  background: #FFD200;
  color: #194E63;
  border-color: #FFD200;
}
.cookie-btn.settings {
  background: #FFD200;
  color: #194E63;
  border-radius: 80px;
}
.cookie-btn.settings:hover {
  background: #71B1C7;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(49,131,199,0.72);
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #194E63;
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(25,78,99,0.17);
  max-width: 420px;
  width: 95vw;
  padding: 36px 30px 27px 30px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modalPopIn 0.55s cubic-bezier(.52,-0.09,.53,1.19);
  position: relative;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: translateY(50px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 10px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 7px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
}
.cookie-category-item label {
  font-weight: 500;
  font-size: 1.05em;
}
.cookie-toggle {
  width: 46px; height: 26px;
  border-radius: 20px;
  background: #F9F9F9;
  border: 2px solid #71B1C7;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.cookie-toggle input[type='checkbox'] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .toggle-slider {
  display: block;
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  width: 22px; height: 22px;
  background: #FFD200;
  border-radius: 50%;
  transition: left 0.16s, background 0.18s;
}
.cookie-toggle input[type='checkbox']:checked + .toggle-slider {
  left: 21px;
  background: #71B1C7;
}
.cookie-modal .cookie-btn.accept-all {
  margin-top: 11px;
  background: #71B1C7;
  color: #fff;
}
.cookie-modal .cookie-btn.accept-all:hover {
  background: #FFD200;
  color: #194E63;
}
.cookie-modal .cookie-btn.reject-all {
  margin-left: 7px;
  background: #fff;
  color: #71B1C7;
  border: 1.5px solid #71B1C7;
}
.cookie-modal .cookie-btn.reject-all:hover {
  background: #FFD200;
  color: #194E63;
  border-color: #FFD200;
}
.cookie-modal .cookie-btn.close {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  color: #71B1C7;
  font-size: 1.49em;
  border-radius: 30px;
  padding: 5px 10px;
  z-index: 2;
  border: none;
}
.cookie-modal .cookie-btn.close:hover {
  background: #FFD200;
  color: #fff;
}

/* ============
   14. ANIMATIONS: PLAYFUL, DYNAMIC ENERGIES
   ============ */
.features-grid > div, .testimonial-card, .card {
  transition: box-shadow 0.25s, transform 0.23s, background 0.18s;
}
.features-grid > div:hover, .card:hover {
  transform: translateY(-7px) scale(1.030) rotate(-1.2deg);
}
@media (max-width: 768px) {
  .features-grid > div:hover, .card:hover {
    transform: scale(1.02) rotate(-0.8deg);
  }
}
.blog-grid article:hover {
  transform: translateY(-4px) scale(1.033) rotate(1deg);
}

.testimonial-card {
  animation: testCardPop 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes testCardPop {
  from { opacity: 0; transform: scale(0.96) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============
   15. TYPOGRAPHY (Playful & Dynamic)
   ============ */
body, p, address, dd, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 1.6rem;
  font-weight: 800;
}
h3 {
  font-size: 1.14rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.01rem; }
}

/* ============
   16. PLAYFUL DECORATIVE SPANS (Mosaic)
   ============ */
.features-grid > div::after {
  content: '';
  display: block;
  width: 37px;
  height: 8px;
  border-radius: 4px 8px;
  background: #FFD200;
  position: absolute;
  left: 14px;
  bottom: 15px;
  opacity: 0.45;
  z-index: 2;
}

.testimonial-card::before {
  content: '\201C'; /* Decorative opening quote */
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 2.6em;
  color: #71B1C7;
  opacity: 0.19;
  font-family: 'Montserrat', Arial, sans-serif;
  pointer-events: none;
  z-index: 0;
}

/* ============
   17. UTILITIES
   ============ */
.hide { display: none !important; }
.mt-lg { margin-top: 56px !important; }
.mb-lg { margin-bottom: 56px !important; }
.gap-20 { gap:20px; }
.gap-24 { gap:24px; }
.gap-32 { gap:32px; }

/* ============
   18. PRINT STYLES
   ============ */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner { display: none !important; }
  .container, .content-wrapper { padding: 0 !important; max-width: 100% !important; }
}
