/* =====================================================================
   CSS RESET & BASE
   ===================================================================== */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #13344E;
  background: #F3F7FC;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
}
a {
  text-decoration: none;
  color: #28A084;
  transition: color 0.15s;
}
a:hover,
a:focus {
  color: #174873;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
  line-height: 1.7;
}
strong { font-weight: bold; }
em { font-style: italic; }
img { max-width: 100%; height: auto; display: block; }

/* =====================================================================
   BRAND COLORS & FONTS
   ===================================================================== */
:root {
  --c-primary: #174873;
  --c-secondary: #28A084;
  --c-accent: #F3F7FC;
  --c-white: #fff;
  --c-black: #081724;
  --c-light-blue: #E3F4FD;
  --c-yellow: #FFC93A;
  --c-danger: #FF467E;
  --c-shadow: 0 3px 16px rgba(23,72,115,0.13);

  --font-display: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =====================================================================
   LAYOUT CONTAINERS
   ===================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px 24px 32px 32px;
  box-shadow: 0 2px 16px rgba(23,72,115,0.08);
}

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--c-primary);
  margin-bottom: 8px;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--c-secondary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem;
}
h4 { font-size: 1.12rem; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 10px;
  font-size: 1.09rem;
  color: #13344E;
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
}

/* Fun, playful headings */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 7px;
  border-radius: 6px;
  margin-top: 8px;
  background: var(--c-yellow);
  opacity: 0.4;
  animation: playful-marker 2.5s infinite alternate cubic-bezier(.44,.21,.34,1);
}
@keyframes playful-marker {
  0% { transform: scaleX(1);
       opacity: 0.25; }
  100% {transform: scaleX(1.24);
        opacity: .5;}
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
header {
  background: var(--c-white);
  box-shadow: 0 3px 12px rgba(23,72,115,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
header img {
  height: 42px;
  margin-right: 26px;
}
/* Main nav for desktop */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--c-primary);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 17px;
  background: none;
  transition: background .18s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--c-secondary);
  background: var(--c-light-blue);
}
/* CTA Button in header */
.btn-primary {
  font-family: var(--font-display);
  color: var(--c-white);
  background: linear-gradient(90deg,var(--c-secondary),#40B7C6);
  padding: 11px 32px 11px 23px;
  border-radius: 25px 16px 22px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 0;
  box-shadow: 0 2px 12px rgba(23,72,115,0.03), 0 1px 0 var(--c-yellow);
  cursor: pointer;
  margin-left: 13px;
  letter-spacing: -.4px;
  position: relative;
  transition: background .18s, box-shadow .19s, transform .19s;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg,#40B7C6,var(--c-secondary));
  transform: translateY(-2px) scale(1.03) rotate(-1.2deg);
  box-shadow: 0 2px 18px rgba(23,72,115,0.12);
}

/* Hamburger / burger icon */
.mobile-menu-toggle {
  background: var(--c-yellow);
  color: var(--c-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 7px;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: 10px;
  display: none;
  transition: background .16s, color .14s, box-shadow .17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffe6a3;
  color: var(--c-secondary);
  box-shadow: 0 4px 14px rgba(255,201,58,.12);
}

/* =====================================================================
   MOBILE MENU
   ===================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(243,247,252,0.98);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.42,.17,.13,1.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 22px;
  padding-right: 22px;
}
.mobile-menu.show {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--c-danger);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e73167;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--c-primary);
  font-size: 1.4rem;
  padding: 16px 0 8px 6px;
  border-radius: 10px;
  font-weight: 600;
  border-bottom: 2.5px solid transparent;
  transition: color .14s, background .18s, border-bottom .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--c-secondary);
  background: var(--c-yellow);
  border-bottom: 2.5px solid var(--c-secondary);
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero-section {
  background: linear-gradient(117deg, var(--c-light-blue) 85%, #FFC93A 100%);
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 36px rgba(40,160,132,0.05);
  padding: 58px 0 70px 0;
  margin-bottom: 44px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 18px;
}
.hero-section h1 {
  color: var(--c-secondary);
  text-shadow: 0 3px 0 #fff7ce, 0 7px 13px #40B7C615;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero-section p {
  color: var(--c-primary);
  font-size: 1.19rem;
  font-family: var(--font-body);
}
.hero-section .btn-primary {
  margin-top: 8px;
}

/* =====================================================================
   FEATURES GRID (applies to .feature-grid)
   ===================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  padding: 28px 18px 24px 18px;
  border-radius: 22px 22px 18px 32px;
  min-width: 220px;
  flex: 1 1 240px;
  box-shadow: 0 2px 16px rgba(23,72,115,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow .21s, transform .22s;
  border: 2.5px solid #e8fafd;
  overflow: hidden;
  min-height: 210px;
}
.feature-grid > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 6px #e6f6ff);
  animation: swingy 1.3s infinite alternate cubic-bezier(.6,.13,.5,1.22);
}
@keyframes swingy {
  0% { transform: rotate(-7deg); }
  100% { transform: rotate(10deg); }
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(23,72,115,0.19), 0 1.5px 0 var(--c-yellow);
  transform: translateY(-7px) rotate(-1.5deg) scale(1.035);
}
.feature-grid h3 {
  color: var(--c-secondary);
  font-size: 1.17rem;
}
.feature-grid p {
  color: var(--c-black);
}

/* =====================================================================
   TESTIMONIALS SECTION
   ===================================================================== */
.testimonials-section {
  background: var(--c-accent);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 44px 10px;
  box-shadow: 0 2px 18px #afdce722;
  position: relative;
}
.testimonials-section h2 {
  color: var(--c-primary);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 14px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 27px 22px 27px;
  min-width: 260px;
  max-width: 340px;
  border-radius: 19px 33px 21px 13px;
  box-shadow: 0 6px 24px #28A08416;
  margin-bottom: 0;
  border: 2px solid #e3f7ea;
  font-family: var(--font-body);
  color: #13344E;
  font-size: 1.04rem;
  line-height: 1.7;
  position: relative;
  transition: box-shadow .21s, transform .22s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px #28A08426;
  transform: translateY(-5px) scale(1.024) rotate(-0.7deg);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #242e3e;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--c-secondary);
}
.customer-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
}
.customer-logos img {
  height: 36px;
  opacity: 0.78;
  transition: opacity 0.13s;
}
.customer-logos img:hover {
  opacity: 1;
}

/* =====================================================================
   CTA SECTION
   ===================================================================== */
.cta-section {
  background: var(--c-yellow);
  border-radius: 30px 30px 60px 15px;
  padding: 50px 23px;
  margin-bottom: 60px;
  box-shadow: 0 5px 36px #FFC93A26;
  animation: ctaWave 3.5s infinite alternate linear;
}
@keyframes ctaWave {
  0% { box-shadow: 0 5px 36px #FFC93A26; }
  46% { box-shadow: 0 13px 46px #FFC93A19;
        background: #ffecc0;}
  100%{ box-shadow: 0 13px 46px #FFC93A44; }
}
.cta-section .btn-primary {
  margin-top: 6px;
}

/* =====================================================================
   GENERIC CARDS & FLEX PATTERNS
   ===================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px 20px 30px 12px;
  box-shadow: var(--c-shadow);
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 42px #17487318;
  transform: translateY(-5px) scale(1.018);
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing: minimum 20px between any cards/blocks */
.content-wrapper > *:not(:last-child),
.section > *:not(:last-child) {
  margin-bottom: 24px;
}

/* =====================================================================
   RESPONSIVE DESIGN (Mobile first)
   ===================================================================== */
@media (max-width: 900px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .feature-grid,
  .content-grid,
  .card-container,
  .testimonial-slider,
  .customer-logos {
    flex-direction: column;
    align-items: stretch!
    important;
    gap: 20px;
  }
  .feature-grid > div,
  .testimonial-card,
  .card {
    min-width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 40px 0;
    border-radius: 0 0 28px 28px;
  }
  .feature-grid, .card-container, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 19px 16px;
  }
  .cta-section {
    padding: 24px 8px;
    border-radius: 22px;  
  }
  .customer-logos {
    flex-direction: row;
    gap: 15px;
  }
}
@media (max-width: 650px){
  .container { padding-left: 3px; padding-right: 3px; }
  h1, h2 {margin-bottom: 8px;}
}
@media (max-width: 480px){
  header .container { gap: 7px; min-height: 60px; }
  .btn-primary { font-size: 1rem; padding: 8px 15px 8px 12px; }
}
@media (max-width: 768px){
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--c-primary);
  color: #fff;
  padding: 38px 0 17px 0;
  border-radius: 48px 48px 0 0;
  margin-top: 80px;
  box-shadow: 0 -4px 24px #17487322;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #fff7da;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 7px 12px;
  border-radius: 13px;
  transition: background .14s, color .13s;
  background: none;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--c-yellow);
  color: var(--c-primary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  color: #fff;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #fff7da;
}
footer small {
  display: block;
  color: #fff6b7;
  opacity: 0.88;
  margin-top: 12px;
  text-align: left;
}
@media (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    gap: 11px;
  }
  .footer-nav {
    gap: 9px;
  }
}

/* =====================================================================
   UTILITIES & ANIMATIONS
   ===================================================================== */
::-webkit-scrollbar { width: 7px; background: #E3F4FD; }
::-webkit-scrollbar-thumb { background: #40B7C6; border-radius: 7px; }

/* Animate buttons and cards */
.btn-primary, .main-nav a, .feature-grid > div, .card, .testimonial-card, .footer-nav a {
  transition: box-shadow .18s, background .18s, color .14s, transform .17s;
}
section, .section {
  transition: box-shadow .18s, background .19s;
}

/* Fun font for main display */
.hero-section h1, .hero-section h2, .cta-section h2 {
  font-family: var(--font-display), 'Comic Sans MS', cursive, sans-serif;
  font-style: italic;
}

/* =====================================================================
   COOKIE CONSENT BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4000;
  background: #ffffffee;
  color: #174873;
  box-shadow: 0 -3px 16px #F3F7FCa6;
  border-top: 3px solid var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 17px 20px;
  flex-wrap: wrap;
  animation: cookieBannerIn .38s cubic-bezier(.14,.86,.28,.99);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1.05rem;
  flex: 1 1 210px;
  margin-right: 16px;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner-btns button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 17px;
  padding: 9px 19px;
  border: 0;
  background: var(--c-secondary);
  color: #fff;
  cursor: pointer;
  transition: background .14s, box-shadow .19s, color .14s;
  box-shadow: 0 1px 4px #28A08416;
}
.cookie-banner-btns button.accept {
  background: linear-gradient(88deg, var(--c-secondary), #17e29c);
}
.cookie-banner-btns button.accept:hover { background: #17e29c; color: var(--c-primary); }
.cookie-banner-btns button.reject,
.cookie-banner-btns button.settings {
  background: #fff2e1;
  color: var(--c-primary);
  border: 2px solid var(--c-yellow);
}
.cookie-banner-btns button.reject:hover,
.cookie-banner-btns button.settings:hover {
  background: var(--c-yellow);
  color: var(--c-primary);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #01101555;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .25s cubic-bezier(.14,.86,.28,.99);
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #174873;
  border-radius: 20px;
  padding: 36px 28px 24px 28px;
  min-width: 318px;
  max-width: 96vw;
  box-shadow: 0 7px 44px #17487327;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalSlide .33s cubic-bezier(.13,.68,.49,1.04);
}
@keyframes cookieModalSlide {
  0% { transform: scale(.88) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 19px;
  color: var(--c-secondary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0 8px 0;
  font-size: 1.05rem;
}
.cookie-modal-category .switch {
  display: inline-flex;
  align-items: center;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch-label {
  background: #d1f6ea;
  border-radius: 12px;
  width: 39px;
  height: 22px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background .12s;
}
.switch-label:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px #c6ecd6aa;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .15s;
}
.switch input[type="checkbox"]:checked + .switch-label {
  background: var(--c-secondary);
}
.switch input[type="checkbox"]:checked + .switch-label:before {
  left: 19px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  border-radius: 15px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--c-secondary);
  color: #fff;
  transition: background .14s;
}
.cookie-modal-buttons button.cancel {
  background: #fff2e1;
  color: var(--c-primary);
  border: 2px solid var(--c-yellow);
}
.cookie-modal-buttons button.cancel:hover { background: var(--c-yellow); }
.cookie-modal-buttons button.save {
  background: var(--c-secondary);
  color: #fff;
}
.cookie-modal-close {
  background: var(--c-danger);
  color: #fff;
  border: none;
  position: absolute;
  top: 14px; right: 17px;
  font-size: 1.5rem;
  width: 33px; height: 33px;
  border-radius: 10px;
  cursor: pointer;
}
.cookie-modal-close:hover { background: #d92e6a; }

/* =====================================================================
   FORMS & CONTACT
   ===================================================================== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #e6e6f9;
  padding: 11px 13px;
  box-shadow: 0 2px 9px #e3f4fd44;
  background: #fff;
  margin-bottom: 15px;
  width: 100%;
  outline: none;
  transition: border .15s, box-shadow .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 4px 14px #28A08429;
}
label {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 10px;
  display: block;
}
/* =====================================================================
   CONTENT HELPERS / MISC
   ===================================================================== */
.map {
  padding: 1.3em 0;
  color: #174873;
  background: #ededf7;
  border-radius: 16px 32px 10px 20px;
  margin-top: 7px;
  font-style: italic;
  box-shadow: 0 1px 8px #e3f4fd44;
}
.result-highlights ul {
  margin-top: 13px;
  padding-left: 1.1em;
  font-family: var(--font-display);
}
.result-highlights li {
  font-size: 1.04rem;
  margin-bottom: 7px;
  color: var(--c-secondary);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =====================================================================
   ACCESSIBILITY & FOCUS
   ===================================================================== */
a, button, input, select, textarea, [tabindex] {
  outline-color: var(--c-secondary);
  outline-width: 2px;
  outline-offset: 3px;
  transition: outline-color .13s;
}
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--c-secondary) !important;
}
/* =====================================================================
   END OF CSS
   ===================================================================== */
