/* =====================
    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;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background-color: #FAF8F3;
  color: #19355B;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: color 0.2s cubic-bezier(.77,0,.18,1);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, .cta-btn, input[type=submit] {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ============================
    BRAND VARIABLES & FONTS
============================= */
:root {
  --fw-primary: #19355B;
  --fw-secondary: #6EB5D9;
  --fw-accent: #FAF8F3;
  --fw-extra1: #FFD452;
  --fw-extra2: #F4838A;
  --fw-success: #44C776;
  --fw-warning: #FFD452;
  --fw-error: #F4838A;
  --fw-dark: #19203A;
  --fw-light: #FAF8F3;
  --fw-shadow: rgba(30, 70, 161, 0.10);
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--fw-primary);
  margin-bottom: 16px;
}
h1 {font-size: 2.7rem; line-height: 1.1;}
h2 {font-size: 2.1rem; line-height: 1.15;}
h3 {font-size: 1.3rem; line-height: 1.25;}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--fw-dark);
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}

/* ========================
   GLOBAL SPACING & LAYOUT
========================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 6px 16px var(--fw-shadow);
  border-radius: 18px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  min-width: 240px;
  transition: transform 0.18s cubic-bezier(.77,0,.18,1), box-shadow 0.2s cubic-bezier(.77,0,.18,1);
  z-index: 1;
}
.card:hover {
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  box-shadow: 0 12px 32px var(--fw-shadow);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--fw-shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.18s cubic-bezier(.77,0,.18,1), transform 0.18s cubic-bezier(.77,0,.18,1);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #141b36;
  margin-bottom: 6px;
  text-align: center;
}
.testimonial-card span {
  color: var(--fw-secondary);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--fw-shadow);
  transform: scale(1.03);
}
.rating-summary {
  background: var(--fw-secondary);
  color: #fff;
  border-radius: 12px;
  padding: 12px 22px;
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(110,181,217,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
       HEADER & NAVIGATION
========================== */
header {
  width: 100%;
  background: var(--fw-accent);
  box-shadow: 0 1px 8px var(--fw-shadow);
  z-index: 100;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 12px;
  color: var(--fw-primary);
  border-radius: 10px;
  transition: background 0.17s, color 0.17s, transform 0.17s cubic-bezier(.77,0,.18,1);
  position: relative;
}
.main-nav a.cta-btn {
  background: var(--fw-secondary);
  color: #fff;
  padding: 12px 22px;
  font-size: 1.08rem;
  border-radius: 70px;
  margin-left: 24px;
  box-shadow: 0 4px 28px rgba(110,181,217,0.10);
  letter-spacing: 0.03em;
  transition: background 0.19s, transform 0.15s;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a:not(.cta-btn):focus {
  background: var(--fw-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: var(--fw-primary);
  color: #FFD452;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 28px 0 rgba(25,53,91, .18);
}
.main-nav img {
  height: 38px;
  margin-right: 18px;
  display: inline-block;
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  background: var(--fw-secondary);
  color: #fff;
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 1.85rem;
  margin-left: auto;
  box-shadow: 0 2px 10px var(--fw-shadow);
  position: relative;
  z-index: 1201;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--fw-primary);
  color: var(--fw-extra1);
  box-shadow: 0 6px 18px var(--fw-shadow);
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .main-nav a.cta-btn {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.98rem; }
  .main-nav img {height: 32px; margin-right: 8px;}
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin: 10px 18px 10px auto;
  }
}

/* ============ MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--fw-accent);
  box-shadow: 0 0 32px rgba(25,53,91,0.13);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.79,.04,.28,1);
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--fw-secondary);
  border-radius: 11px;
  padding: 12px 18px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin: 18px 0 2px 24px;
  align-self: flex-start;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 2px 10px var(--fw-shadow);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--fw-primary);
  color: var(--fw-extra1);
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 20px 20px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fw-primary);
  padding: 16px 8px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fw-secondary);
  color: #fff;
}

/* =====================
      HERO SECTIONS
====================== */
.hero {
  background: var(--fw-extra1);
  background-image:
    radial-gradient(ellipse at 75% 18%, #FFA36C 0%, rgba(255,255,255, 0.03) 70%),
    radial-gradient(ellipse at 25% 80%, #80FFEC 0%, rgba(255,255,255, 0.06) 70%);
  padding: 2.6rem 0 2.1rem 0;
  display: flex;
  align-items: center;
  min-height: 320px;
  min-width: 100vw;
  position: relative;
  z-index: 0;
  animation: heroBgPop 1.8s cubic-bezier(.71,0,.32,1);
}
@keyframes heroBgPop {
  0% { opacity: 0; transform: scale(.96); }
  100% { opacity: 1; transform: scale(1); }
}
@media (max-width: 768px) {
  .hero {
    padding: 1.1rem 0 1.3rem 0;
    min-height: 210px;
  }
}

.hero h1 {
  color: var(--fw-primary);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px #ffd45222;
}
.hero .cta-btn {
  margin-top: 22px;
}

/* ======================
        FEATURE GRIDS
======================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(30, 70,161,0.08);
  padding: 28px 22px;
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s cubic-bezier(.77,0,.18,1), transform 0.18s cubic-bezier(.77,0,.18,1);
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px var(--fw-shadow);
  transform: scale(1.03) rotate(-1.5deg);
  z-index: 2;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
/* Making fun hover pop for icons */
.feature-grid img {
  transition: transform 0.25s cubic-bezier(.6,-0.28,.74,.05);
}
.feature-grid > div:hover img {
  transform: rotate(-13deg) scale(1.18);
}

/* ============ USP ICONS ============ */
.usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 2px 0;
}
.usp-icons > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--fw-light);
  padding: 18px 18px 16px 16px;
  border-radius: 13px;
  box-shadow: 0 2px 8px var(--fw-shadow);
  font-weight: 700;
  font-size: 1.07rem;
  min-width: 170px;
  transition: background 0.13s, box-shadow 0.13s;
}
.usp-icons > div img {
  width: 32px; height: 32px; margin: 0;
}
.usp-icons > div span {
  color: var(--fw-secondary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.usp-icons > div:hover {
  background: var(--fw-extra1);
  box-shadow: 0 6px 20px var(--fw-shadow);
}

/* =======================
   STORY & HIGHLIGHT BLOCKS
========================= */
.story-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.story-blocks > div {
  background: #fff;
  box-shadow: 0 2px 10px var(--fw-shadow);
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: transform 0.17s, box-shadow 0.19s;
  margin-bottom: 20px;
}
.story-blocks > div:hover {
  transform: scale(1.04) rotate(1.6deg);
  box-shadow: 0 8px 20px #19355b0c;
}
.client-stories {
  margin-bottom: 24px;
}
.highlighted-experiences ul {
  padding-left: 22px;
  margin: 12px 0 26px 0;
  list-style: disc inside;
}
.highlighted-experiences li {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #19355B;
  letter-spacing: 0.016em;
}

/* =======================
     CONTACT INFO BLOCKS
======================== */
.contact-info {
  background: var(--fw-light);
  border-radius: 11px;
  box-shadow: 0 2px 7px var(--fw-shadow);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.contact-info p {
  font-size: 1.06rem;
  color: var(--fw-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.assistance-info {
  margin: 10px 0 24px 0;
  font-size: 1.08rem;
  color: var(--fw-dark);
  background: #fffcec;
  border-radius: 8px;
  padding: 12px 18px;
}

/* ========================
        FOOTER
========================== */
footer {
  background: var(--fw-primary);
  color: #fff;
  padding: 38px 0 24px 0;
  position: relative;
  margin-top: 44px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 23px;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 160px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 5px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--fw-secondary);
  color: var(--fw-extra1);
}
.footer-brand {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 44px; height: 44px;
}
.footer-brand p {
  font-size: 0.96rem;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.social-icons img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px #0001);
  transition: filter 0.19s, transform 0.18s cubic-bezier(.74,-0.21,.44,1.07);
}
.social-icons img:hover {
  filter: brightness(1.2) drop-shadow(0 4px 10px #19355b25);
  transform: scale(1.13) rotate(-8deg);
}

/* ========================
       BUTTONS & CTA
========================== */
.cta-btn,
button.cta-btn,
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  background: var(--fw-secondary);
  color: #fff;
  border-radius: 77px;
  padding: 15px 36px;
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 22px rgba(110,181,217,0.10);
  border: none;
  transition: background 0.18s, color 0.16s, transform 0.17s cubic-bezier(.77,0,.18,1);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fw-primary);
  color: var(--fw-extra1);
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 8px 34px 0 rgba(25,53,91, .12);
}

/* ========================
         TABLES, TEXT
========================== */
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--fw-shadow);
  padding: 30px 24px;
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  list-style: disc inside;
  margin-left: 14px;
  margin-bottom: 18px;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* ========================
     COOKIE BANNER/MODAL
========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--fw-primary);
  color: #fff;
  padding: 20px 12px 18px 12px;
  z-index: 2000;
  box-shadow: 0 -4px 30px #0003;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: center;
  font-size: 1.04rem;
  animation: cookieSlideUp 0.7s cubic-bezier(.19,1,.22,1);
}
@keyframes cookieSlideUp {
  0% {transform: translateY(120%); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-left: 10px;
  border: none;
  background: var(--fw-secondary);
  color: #fff;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 1.03rem;
  margin-bottom: 4px;
  margin-top: 4px;
  transition: background 0.19s, color 0.14s, transform 0.14s;
}
.cookie-banner button.reject-btn {
  background: var(--fw-error);
  color: #fff;
}
.cookie-banner button.settings-btn {
  background: var(--fw-warning);
  color: var(--fw-primary);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  transform: scale(1.07);
  background: var(--fw-primary);
  color: var(--fw-extra1);
}
.cookie-modal {
  position: fixed;
  z-index: 2100;
  top: 50%;
  left: 50%;
  transform: translate(-50%,180%) scale(1);
  opacity: 0;
  background: #fff;
  min-width: 94vw;
  max-width: 430px;
  border-radius: 19px;
  padding: 36px 26px 24px 26px;
  box-shadow: 0 12px 38px #19355b24;
  transition: opacity 0.24s, transform 0.22s cubic-bezier(.77,0,.18,1);
  color: var(--fw-primary);
  font-size: 1.09rem;
  display: none;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  display: block;
  animation: popModal 0.24s cubic-bezier(.8,0,.4,1.07);
}
@keyframes popModal {
  0% {opacity: 0; transform: translate(-50%,-30%) scale(0.93);}
  100% {opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h4 {
  font-size: 1.24rem;
  color: var(--fw-secondary);
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
  margin: 8px 0;
}
.cookie-modal .cookie-category {
  margin: 12px 0 15px 0;
  padding: 12px 8px;
  border-radius: 10px;
  background: #F6F9FE;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal button {
  margin-top: 12px;
  background: var(--fw-secondary);
  color: #fff;
  border-radius: 19px;
  padding: 11px 26px;
  border: none;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--fw-primary);
  color: var(--fw-extra1);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  color: var(--fw-secondary);
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .modal-close:hover {
  color: var(--fw-error);
}

/* =========================
         RESPONSIVENESS
=========================== */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .values-grid, .story-blocks, .usp-icons {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; }
  .content-wrapper, .section {
    padding: 25px 7px;
    margin-bottom: 40px;
  }
  .feature-grid, .usp-icons, .story-blocks, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .story-blocks > div, .usp-icons > div {
    min-width: unset;
    width: 100%;
  }
  .testimonial-card, .card, .text-section {
    padding: 18px 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-brand img { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  h1   {font-size: 1.55rem;}
  h2   {font-size: 1.15rem;}
  .footer-brand img { width: 28px; height: 28px; }
}
@media (max-width: 420px) {
  .cookie-modal { max-width:96vw; padding: 23px 4vw 14px 4vw; }
}

/* =========================
    ANIMATIONS & FUN FLAIR
========================= */
.cta-btn, .main-nav a.cta-btn, .cta-btn, .card, .testimonial-card, .feature-grid > div, .usp-icons > div {
  transition: box-shadow 0.23s cubic-bezier(.64,.09,.39,1.36), transform 0.16s cubic-bezier(.71,0,.32,1);
}
.cta-btn:active {
  transform: scale(0.98) rotate(2deg);
}

/* Floating playful circle bling for visual play (decorative only - not overlaying text!) */
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -50px;
  top: 28px;
  width: 84px; height: 84px;
  background: var(--fw-extra2);
  border-radius: 50%;
  opacity: 0.10;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
  animation: playfulCircle 4.5s infinite alternate cubic-bezier(.5,0,.5,1);
}
@keyframes playfulCircle {
  0% {transform:scale(.85) translateY(0); opacity:0.08;}
  70%{transform:scale(1.05) translateY(26px); opacity:0.15;}
  100%{transform:scale(.82) translateY(-13px); opacity:.11;}
}

/* Hide decorative bling on mobile */
@media (max-width:768px) {
  .section:before {
    display: none;
  }
}

/* =========================
      VISUAL HIERARCHY
========================= */
.content-wrapper h2 {
  margin-bottom: 22px;
  color: var(--fw-primary);
  font-weight: 900;
}
.content-wrapper h3 {
  color: var(--fw-extra2);
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.values-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px #4367c018;
  padding: 22px 18px;
  flex: 1 1 180px;
  min-width: 140px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s cubic-bezier(.77,0,.18,1);
}
.values-grid > div:hover {
  box-shadow: 0 6px 22px #19355b12;
  transform: scale(1.04);
}

/* =========================
    FORM ELEMENT STYLES
========================= */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--fw-secondary);
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s;
  width: 100%;
  background: #fefefe;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--fw-primary);
  background: #e7f5fb;
}
label {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
  color: var(--fw-primary);
}

/* =========================
    ACCESSIBILITY & UTILITY
========================= */
[tabindex]:focus,
button:focus,
.cta-btn:focus,
a:focus {
  outline: 3px solid var(--fw-extra1);
  outline-offset: 1px;
}

/* =========================
   MISCELLANEA
========================= */
::-webkit-scrollbar-thumb { background: var(--fw-extra2); border-radius:5px; }
::-webkit-scrollbar { width:7px; background: #e4ece8; }

/* Body hover animation for playful mood */
body {
  animation: bgSwing 11s infinite alternate cubic-bezier(.59,0,.35,1);
}
@keyframes bgSwing {
  0% {background-color: #FAF8F3;}
  60%{background-color: #fffcf8;}
  100%{background-color: #FAF8F3;}
}

/* =========================
         END OF CSS
========================= */
