/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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;
}
html {
  font-family: 'Fira Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F5F8FA;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  color: #20415A;
  background: #F5F8FA;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #20415A;
  text-decoration: none;
  transition: color .2s;
}
a:focus,
a:hover {
  color: #6FB694;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, .display, .hero h1 {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
h2 {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Fira Sans', Arial, sans-serif;
  color: #6FB694;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

/* =========================
   CONTAINER & LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section,
.hero,
.features,
.about,
.services,
.tips,
.guides,
.legal,
.about-preview,
.cta,
.home-cta,
.blog-list,
.contact,
.thank-you,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 4px 16px rgba(32,65,90,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  color: #20415A;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 14px;
  transition: background .19s,color .19s;
}
header nav a:hover, header nav a.active {
  background: #6FB694;
  color: #fff;
}
.cta-primary {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  display: inline-block;
  background: #6FB694;
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 12px 30px;
  border-radius: 30px 10px 30px 10px;
  margin-left: 18px;
  box-shadow: 0 4px 18px rgba(111,182,148,0.14);
  border: 2px solid #6FB694;
  transition: background .2s, color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.cta-primary:hover, .cta-primary:focus {
  background: #20415A;
  color: #fff;
  border-color: #20415A;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
}
.cta-link {
  background: none;
  color: #6FB694;
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 10px;
  border: 2px solid #6FB694;
  display: inline-block;
  transition: background .2s,color .2s, transform .16s;
  margin-top: 12px;
}
.cta-link:hover, .cta-link:focus {
  background: #6FB694;
  color: #fff;
  transform: scale(1.04) rotate(2deg);
}
.mobile-menu-toggle {
  color: #20415A;
  background: #F5F8FA;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: 10px;
  border: 2px solid #6FB694;
  box-shadow: 0 2px 10px rgba(111,182,148,0.12);
  transition: background .18s, color .18s, transform .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #6FB694;
  color: #fff;
  transform: scale(1.08) rotate(16deg);
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #20415A;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.95,.05,.3,1), opacity .3s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 12px 0;
  font-size: 2.3rem;
  color: #fff;
  background: none;
  border-radius: 50%;
  border: 2px solid #6FB694;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, transform .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6FB694;
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-left: 38px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 12px;
  transition: background .18s, color .18s, transform .16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6FB694;
  color: #F5F8FA;
  transform: scale(1.02) rotate(-2deg);
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  header nav,
  .cta-primary {
    display: none !important;
  }
}


/* =========================
   HERO SECTIONS
   ========================= */
.hero {
  background: #6FB694;
  color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 32px rgba(32,65,90,0.08);
  animation: bounceInHero 1s cubic-bezier(.7,-0.3,.36,1.28);
  margin-bottom: 60px;
}
@keyframes bounceInHero {
  0%   { opacity: 0; transform: translateY(-40px) scale(.92); }
  70%  { opacity: 1; transform: translateY(6px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero .cta-primary {
  background: #fff;
  color: #6FB694;
  border-color: #fff;
  box-shadow: 0 4px 18px rgba(255,255,255,0.16);
}
.hero .cta-primary:hover,
.hero .cta-primary:focus {
  background: #20415A;
  color: #fff;
  border-color: #20415A;
}

/* =========================
   FEATURE GRID & CARDS
   ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
  margin-bottom: 18px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px 24px 22px;
  box-shadow: 0 4px 28px rgba(32,65,90,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 320px;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .15s, transform .17s;
  z-index: 1;
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 6px;
  filter: drop-shadow(0 3px 6px rgba(32,65,90,0.06));
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 40px rgba(111,182,148,0.19);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  z-index: 2;
}
.feature h3 {
  color: #20415A;
  font-size: 1.13rem;
}
.feature p {
  color: #20415A;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* =========================
   CARD CONTAINERS & FLEX
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,65,90,0.08);
  position: relative;
  padding: 22px 18px;
  transition: box-shadow .17s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(32,65,90,0.18);
  transform: 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;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background: #fff;
  border-radius: 32px 32px 12px 12px;
  box-shadow: 0 5px 23px rgba(32,65,90,0.09);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F8FA;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(32,65,90,0.08);
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .17s;
}
.testimonial-card blockquote {
  font-family: 'Fira Sans', Arial, sans-serif;
  font-size: 1.12rem;
  font-style: italic;
  color: #20415A;
  margin-bottom: 10px;
  line-height: 1.7;
}
.testimonial-meta {
  color: #6FB694;
  font-size: 0.97rem;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(111,182,148,0.09);
  transform: scale(1.025) rotate(-1deg);
}

/* =========================
   BLOG
   ========================= */
.blog-list {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(32,65,90,0.07);
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 8px;
}
.categories-filter a {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #20415A;
  background: #F5F8FA;
  border-radius: 8px;
  padding: 7px 18px;
  border: 2px solid transparent;
  transition: background .17s, color .16s, border-color .16s, transform .13s;
}
.categories-filter a:hover, .categories-filter a.active {
  background: #6FB694;
  color: #fff;
  border-color: #6FB694;
  transform: scale(1.05) rotate(-2deg);
}
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.post-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(32,65,90,0.08);
  flex: 1 1 270px;
  min-width: 220px;
  padding: 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .15s, transform .17s;
}
.post-summary h3 {
  color: #20415A;
  margin-bottom: 8px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.post-summary p {
  color: #20415A;
  margin-bottom: 5px;
}
.post-summary a {
  color: #6FB694;
  font-weight: 700;
  text-decoration: underline;
  transition: color .18s;
  font-size: 1rem;
}
.post-summary a:hover {
  color: #20415A;
}
.post-summary:hover {
  box-shadow: 0 8px 24px rgba(111,182,148,0.13);
  transform: scale(1.022) rotate(1deg);
}

/* =========================
   LEGAL / SIMPLE PAGES
   ========================= */
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 19px rgba(32,65,90,0.07);
}

.text-section {
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section p {
  margin-bottom: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =========================
   ABOUT, CONTACT & THANK YOU
   ========================= */
.address, address {
  color: #20415A;
  font-size: 1rem;
  font-style: normal;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px;
}

/* =========================
   CTA SECTION
   ========================= */
.cta, .home-cta {
  background: #6FB694;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 28px rgba(111,182,148,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta .cta-primary, .home-cta .cta-primary {
  background: #fff;
  color: #6FB694;
  border: 2px solid #fff;
  box-shadow: 0 2px 18px rgba(255,255,255,0.14);
  margin: 0 auto;
  margin-top: 8px;
}
.cta .cta-primary:hover, .home-cta .cta-primary:hover {
  background: #20415A;
  color: #fff;
  border-color: #20415A;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #20415A;
  color: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 22px rgba(32,65,90,0.08);
  padding: 32px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  transition: color .18s, opacity .18s;
  padding: 6px 10px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6FB694;
  opacity: 1;
  background: #fff;
}
footer address {
  font-size: 0.98rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
footer address img {
  display: inline;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
footer span {
  font-size: 0.95rem;
  color: #6FB694;
}

/* =========================
   COOKIE BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #20415A;
  box-shadow: 0 -6px 30px rgba(32,65,90,0.14);
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  min-height: 64px;
  font-size: 1rem;
  gap: 24px;
  animation: bannerIn .7s cubic-bezier(.82,0,.33,1.23);
}
@keyframes bannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 9px 20px;
  border-radius: 20px;
  color: #fff;
  background: #6FB694;
  border: 2px solid #6FB694;
  transition: background .18s, color .18s, border-color .14s, transform .13s;
  margin-left: 0;
}
.cookie-btn-reject {
  background: #20415A;
  border-color: #20415A;
}
.cookie-btn-accept:hover, .cookie-btn-settings:hover {
  background: #20415A;
  color: #fff;
  border-color: #20415A !important;
  transform: scale(1.04) rotate(1deg);
}
.cookie-btn-reject:hover {
  background: #6FB694;
  color: #fff;
  border-color: #6FB694 !important;
}

.cookie-btn-settings {
  color: #20415A;
  background: #fff;
  border: 2px dashed #6FB694;
  margin-left: 0 !important;
}
.cookie-btn-settings:hover {
  background: #6FB694;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%,50%) scale(0.90);
  min-width: 320px;
  max-width: 98vw;
  background: #fff;
  color: #20415A;
  border-radius: 22px;
  box-shadow: 0 8px 48px rgba(32,65,90,0.19);
  z-index: 200000;
  padding: 36px 28px 24px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s, transform .28s cubic-bezier(.62,-0.12,.69,1.15);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,50%) scale(1.02);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #20415A;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-toggle {
  accent-color: #6FB694;
  width: 22px;
  height: 22px;
}
.cookie-modal-cancel {
  background: #6FB694;
  color: #fff;
  border-radius: 20px;
  padding: 10px 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 10px;
  transition: background .18s, transform .15s;
}
.cookie-modal-cancel:hover {
  background: #20415A;
}
.cookie-modal-save {
  background: #20415A;
  color: #fff;
  border-radius: 20px;
  padding: 10px 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background .18s, transform .15s;
}
.cookie-modal-save:hover {
  background: #6FB694;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 10px;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-modal {
    padding: 22px 8px 24px 8px;
  }
}

/* =========================
   DYNAMIC & PLAYFUL EFFECTS
   ========================= */
.feature, .card, .testimonial-card, .post-summary {
  /* Confetti accent decor */
  position: relative;
  overflow: visible;
}
.feature::before, .testimonial-card::before, .post-summary::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 22px; height: 22px;
  border-radius: 10px 10px 10px 0;
  background: #6FB694;
  opacity: .12;
  z-index: 0;
  box-shadow: 12px 16px 0 0 #20415A22,
              24px 3px 0 0 #20415A12,
              2px 42px 0 0 #F5F8FA;
  pointer-events: none;
  animation: playfulConfetti 2.4s infinite linear alternate;
}
@keyframes playfulConfetti {
  0% { transform: scale(.94) rotate(-3deg); }
  100% { transform: scale(1.14) rotate(6deg); }
}

@media (max-width: 900px) {
  .feature-grid, .testimonial-slider, .posts-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features, .blog-list, .about-preview, .legal, .testimonials, .cta, .home-cta {
    padding: 32px 4px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }
  h1.hero, .hero h1, h2.hero {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }
  h2, h3 {
    font-size: 1.1rem;
  }
  .section, .hero, .features, .about-preview, .testimonials, .home-cta, .blog-list, .legal {
    margin-bottom: 32px;
    padding: 28px 4px;
  }
  .feature, .testimonial-card, .post-summary, .card {
    min-width: unset;
    max-width: 100vw;
    padding: 18px 10px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 54px;
    padding: 6px 8px;
  }
  .footer-nav {
    gap: 6px;
    flex-wrap: wrap;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero, .cta, .testimonials, .features, .about-preview {
    border-radius: 22px;
    padding: 18px 2px;
  }
}
@media (max-width: 480px) {
  .feature-grid, .testimonial-slider, .posts-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    padding: 12vw 1vw 12vw 4vw;
    border-radius: 16px;
  }
  h1, .hero h1 {
    font-size: 1.12rem;
  }
}

/* =========================
   ACCESSIBILITY & UTILITIES
   ========================= */
:focus {
  outline: 2px dashed #6FB694 !important;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F5F8FA;
}
::-webkit-scrollbar-thumb {
  background: #6FB69455;
  border-radius: 18px;
}

/* =========================
   OVERLAP PROTECTION
   ========================= */
.feature, .testimonial-card, .card {
  z-index: 2;
}

/* =========================
   VISUAL HIERARCHY
   ========================= */
strong {
  font-weight: 700;
  color: #20415A;
}

/* =========================
   MISCELLANEOUS SPACING
   ========================= */
.card-container > *,
.card + .card,
.section > *,
.content-wrapper > *,
.text-section > *,
.feature-grid > *,
.testimonial-slider > * {
  margin-bottom: 20px;
}
.card-container > *:last-child,
.content-wrapper > *:last-child,
.section > *:last-child,
.text-section > *:last-child,
.feature-grid > *:last-child,
.testimonial-slider > *:last-child {
  margin-bottom: 0;
}

/* =========================
   PLAYFUL FONT ADORNMENTS
   ========================= */
h1, h2, h3, .cta-primary, .feature h3, .footer-nav a, .categories-filter a, .mobile-nav a {
  font-family: 'Montserrat', 'Fira Sans', Arial, sans-serif;
  letter-spacing: 0.7px;
}

/* =========================
   END
   ========================= */