/* ===========================
    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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #17325B;
  background-color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol { margin-left: 1.3em; }
a { color: #25A18E; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #F6C85F; }
img { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ================================
   BRAND FONTS - Playful/Dynamic
   (using Montserrat/Display + Open Sans/Body)
================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #17325B;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }

p, li, .lead, label, input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #17325B;
}
.lead {
  font-size: 1.2rem;
  color: #25A18E;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.6;
}

strong, b {
  font-weight: 700;
  color: #17325B;
}

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

/* Mandatory Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 18px -8px rgba(38,104,137,0.11);
  position: sticky;
  top: 0;
  z-index: 1002;
  transition: box-shadow 0.25s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.2s;
}
.logo:hover img {
  transform: rotate(-6deg) scale(1.1);
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #17325B;
  position: relative;
  padding: 7px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #25A18E;
  text-decoration: none;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F6C85F;
  color: #17325B;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 30px;
  padding: 12px 34px;
  box-shadow: 0 3px 18px -7px rgba(246,200,95,0.3);
  letter-spacing: 0.05em;
  margin-left: 12px;
  transition: background 0.23s, transform 0.13s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover,.cta.primary:focus {
  background: #25A18E;
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 28px -5px rgba(37,161,142,0.28);
}
.cta.secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25A18E;
  background: #fff;
  border: 2px solid #25A18E;
  border-radius: 28px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.21s, color 0.19s, border 0.18s;
  margin-top: 0.8em;
  margin-bottom: 0;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #25A18E;
  color: #fff;
}

/* =====================
   MOBILE NAVIGATION
===================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 2004;
  background: #F6C85F;
  color: #17325B;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 9px -3px rgba(246,200,95,0.22);
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #25A18E;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 2003;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.85,.11,.37,.99);
  box-shadow: 0 4px 36px 0 rgba(23,50,91,0.33);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #fff;
  color: #17325B;
  border: 2px solid #F6C85F;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  box-shadow: 0 3px 11px -2px rgba(37,161,142,0.06);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2005;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6C85F;
  color: #17325B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  gap: 22px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #17325B;
  font-size: 1.3rem;
  padding: 12px 0 12px 10px;
  border-radius: 6px;
  transition: background 0.22s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25A18E;
  color: #fff;
}

@media (max-width: 980px) {
  header .container { gap: 18px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 870px) {
  header .container { gap: 6px; }
  .cta.primary { padding: 11px 19px; font-size: 1rem; }
}
@media (max-width: 790px) {
  .main-nav { display: none !important; }
  .cta.primary { margin-left: 0; }
  .mobile-menu-toggle { display: flex; }
}

/* ==============
   HERO SECTIONS
================ */
.hero {
  width: 100%;
  background: #F6C85F;
  background-position: bottom right;
  background-repeat: no-repeat;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  margin-bottom: 60px;
  padding: 56px 0 58px 0;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  z-index: 1;
  animation: heroPopDown 0.8s ease;
}
@keyframes heroPopDown {
  from { opacity: 0; transform: translateY(-38px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.hero .container { display: flex; justify-content: center; }
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 670px;
}
.hero h1 {
  color: #17325B;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 0 rgba(37,161,142,0.11);
}
.hero .lead { color: #17325B; font-size: 1.25rem; }
@media (max-width: 730px) {
  .hero {
    border-radius: 0 0 30px 30px;
    padding: 40px 0;
  }
  .hero .content-wrapper { max-width: 100%; }
  .hero h1 { font-size: 2rem; }
}
/* ===============
   CTA BANNERS
================ */
.cta-banner {
  background: #25A18E;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 38px 20px 42px;
  color: #fff;
  box-shadow: 0 4px 26px -5px rgba(37,161,142,0.17);
  text-align: center;
}
.cta-banner h2, .cta-banner p {
  color: #fff !important;
}
.cta-banner .cta.primary {
  margin-left: 0;
  margin-top: 14px;
  background: #fff;
  color: #25A18E;
  font-weight: 900;
}
.cta-banner .cta.primary:hover {
  background: #17325B;
  color: #fff;
}
.cta-banner.newsletter {
  background: #F6C85F;
  color: #17325B;
  margin-bottom: 60px;
  border-radius: 26px;
}
.cta-banner.newsletter h2, .cta-banner.newsletter p {
  color: #17325B !important;
}

/* =====================
   FEATURES + CARD GRIDS
====================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 36px 0;
}
.feature {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px 22px 24px;
  box-shadow: 0 2px 14px -8px rgba(37,161,142,0.14), 0 1.5px 0 #F6C85F;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  gap: 13px;
  transition: transform 0.23s, box-shadow 0.15s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 48px; height: 48px;
  align-self: flex-start;
  filter: drop-shadow(0 2px 6px rgba(37,161,142,0.06));
  animation: iconBounce 1.6s infinite cubic-bezier(.2,.8,.4,1.1);
}
@keyframes iconBounce {
  0%,100%{transform:translateY(0);}
  40%{transform:translateY(-5px) scale(1.1);}
  80%{transform:translateY(0);}
}
.feature:hover, .feature:focus {
  transform: translateY(-10px) scale(1.024) rotate(-2deg);
  box-shadow: 0 12px 32px -5px rgba(246,200,95,0.14), 0 2.5px 0 #25A18E;
  z-index: 3;
}
.feature h3 {
  color: #25A18E;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.feature p { font-size: 1rem; color: #17325B; }
.service-price {
  color: #F6C85F;
  background: #17325B;
  border-radius: 7px;
  font-size: .97rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 800;
  padding: 4px 11px;
  letter-spacing: 0.03em;
  margin-top: 10px;
  animation: pricePulse 1.3s infinite alternate ease-in-out;
}
@keyframes pricePulse {
  0% { box-shadow: 0 0 0 0 rgba(246,200,95,0.18); }
  100% { box-shadow: 0 0 18px 2px rgba(37,161,142,0.19); }
}

/* ========================
   BLOG LISTS & ENTRY CARDS
======================== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-bottom: 20px;
}
.blog-filters {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-filters input[type="search"] {
  border-radius: 8px;
  border: 1.7px solid #25A18E;
  padding: 11px 15px;
  font-size: 1em;
  width: 210px;
  transition: border 0.19s;
}
.blog-filters select {
  border-radius: 8px;
  border: 1.7px solid #F6C85F;
  padding: 11px 16px;
  font-size: 1em;
  background: #fff;
}
.blog-entry {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px -6px #17325B22;
  padding: 26px 23px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .21s, transform .19s;
  border-left: 5.5px solid #F6C85F;
  position: relative;
}
.blog-entry:hover {
  box-shadow: 0 6px 26px -2px #25A18E24;
  transform: translateY(-6px) scale(1.013);
  border-left: 5.5px solid #25A18E;
}
.blog-entry h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  color: #25A18E;
}

/* ==========================
   TESTIMONIALS CARDS
========================== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px -7px #17325B10, 0 1.3px 0 #25A18E25;
  border-left: 6px solid #25A18E;
  min-width: 220px;
  margin-bottom: 20px;
  padding: 24px 22px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #17325B;
  position: relative;
  font-size: 1.1em;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 29px -3px #F6C85F44, 0 2px 0 #25A18E55;
  transform: scale(1.01) translateY(-4px);
}
.testimonial-card strong {
  color: #25A18E;
  font-size: 1em;
}
.testimonial-card span {
  font-size: 1.15em;
  color: #F6C85F;
  margin-top: 3px;
  letter-spacing: 0.13em;
}

/* ============================
    TEXT & INFO SECTIONS
============================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.04em;
}
ul {
  margin-top: 6px;
  margin-bottom: 14px;
  padding-left: 20px;
  line-height: 1.7;
}
li {
  margin-bottom: 5px;
  position: relative;
}
ul > li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25A18E;
  box-shadow: 0 1.5px 0 #F6C85F;
}

/* =====================
    FORMS
===================== */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
input[type="email"], input[type="text"], textarea {
  border-radius: 10px;
  border: 1.5px solid #17325B;
  padding: 13px 14px;
  font-size: 1em;
  width: 255px;
  transition: border 0.19s;
}
input[type="email"]:focus {
  border-color: #25A18E;
  outline: none;
}
button.cta.primary[type="submit"] {
  padding: 11px 32px;
  font-size: 1em;
  margin-left: 6px;
}

/* =======================
   FOOTER
======================= */
footer {
  background: #17325B;
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 60px;
  padding: 36px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 44px;
  filter: brightness(1.4) grayscale(0.15);
}
.footer-nav {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-nav a {
  color: #F6C85F;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #25A18E;
}
.footer-contact {
  flex: 1 1 300px;
  color: #fff;
  font-size: 1em;
  line-height: 1.7;
}
.footer-contact p{margin-bottom:6px;}

/* ====================================
   COOKIE CONSENT BANNER + MODAL
==================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #17325B;
  border-top: 5.5px solid #F6C85F;
  box-shadow: 0 -4px 18px -3px rgba(23,50,91,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px 24px;
  flex-wrap: wrap;
  gap: 24px;
  width: 100vw;
  animation: cookiePopIn 0.51s ease;
}
@keyframes cookiePopIn {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner p {
  font-size: 1em;
  margin-right: 20px;
  max-width: 460px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner .cookie-btn {
  background: #25A18E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 16px;
  padding: 9px 22px;
  font-size: 1.02em;
  border: none;
  transition: background 0.17s, color 0.14s;
  margin: 0;
}
.cookie-consent-banner .cookie-btn:focus, .cookie-consent-banner .cookie-btn:hover {
  background: #F6C85F;
  color: #17325B;
}
.cookie-consent-banner .cookie-btn.settings{
  background: #fff;
  color: #25A18E;
  border: 2px solid #25A18E;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: #25A18E;
  color: #fff;
}

/* COOKIE MODAL DIALOG */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3011;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(23,50,91,0.29);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  from{opacity:0;}
  to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 46px -8px #25A18E33,0 2.5px 0 #F6C85F80;
  padding: 35px 32px 29px 32px;
  min-width: 310px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  animation: modalPopIn 0.48s cubic-bezier(.7,.1,.4,.99);
}
@keyframes modalPopIn {
  from { transform: scale(.86) translateY(40px); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #fff;
  border: 2px solid #25A18E;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.3rem;
  color: #25A18E;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.19s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #25A18E;
  color: #fff;
}
.cookie-modal h2 {
  color: #17325B;
  font-size: 1.3em;
  margin-bottom: 9px;
}
.cookie-modal ul {
  margin: 0 0 0 16px;
  font-size: 1em;
}
.cookie-modal li { margin-bottom: 7px; }
.cookie-switch-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
}
.cookie-switch input[type="checkbox"] {
  width: 38px; height: 22px;
  accent-color: #F6C85F;
  -webkit-appearance: none;
  appearance: none;
  outline: 2px solid #25A18E;
  border-radius: 14px;
  transition: outline 0.13s;
  position: relative;
  background: #fff;
  box-shadow: 0 1.2px 2px #17325B0A;
}
.cookie-switch input[type="checkbox"]:checked {
  outline: 2px solid #F6C85F;
  background: #F6C85F;
}
.cookie-switch label {
  font-weight: bold;
  color: #25A18E;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: .99em;
  margin-left: 7px;
}
.cookie-switch .switch-desc {
  font-size: .97em;
  color: #17325B;
  margin-left: 10px;
  opacity: .8;
}

/* =======================
   RESPONSIVE QUERIES
======================= */
@media (max-width: 1100px) {
  .container { max-width: 970px; }
  .footer-logo img { height: 38px; }
  footer .container { gap: 18px; }
  .footer-contact { font-size: 0.98em; }
}
@media (max-width: 900px) {
  .container { max-width: 800px; }
  .features-grid { gap: 20px; }
  .feature { min-width: 170px; padding: 20px 14px 16px 14px; }
}
@media (max-width: 750px) {
  .container { max-width: 98vw; padding: 0 11px; }
  .content-wrapper{gap:16px;}
  .features-grid { gap: 14px; }
  .feature { min-width: 135px; padding: 13px 7px 11px 9px; }
  .hero { border-radius: 0 0 17px 17px; padding: 26px 0; }
  footer .container {
    gap: 9px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .features-grid { flex-direction: column; }
  .feature { width: 100%; min-width: 0; align-items: flex-start; }
  .main-nav { gap: 6px; }
  .footer-nav { flex-direction: column; gap: 7px; align-items: flex-start; }
}
@media (max-width: 540px) {
  body { font-size: 15px; }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.09rem; }
  .hero h1 { font-size: 1.5rem; }
  .cta.primary { font-size: .99rem; padding: 9px 17px; }
  .testimonial-card { padding: 13px 8px 13px 12px; font-size: .98em; }
}

/* For .text-image-section on mobile: column layout */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* Other spacing consistency */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =============
   ANIMATIONS
============== */
.card, .feature, .testimonial-card, .blog-entry {
  animation: fadePopIn .96s ease both;
}
@keyframes fadePopIn {
  from { opacity: 0; transform: scale(.973) translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ============
   UTILITIES
============ */
.hide { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }
.mr-20 { margin-right: 20px; }

/* ===============
   PLAYFUL TOUCHES
================ */
h1, h2, h3, .cta, .footer-logo img, .feature img {
  /* fun font, playful movement */
  transition: transform 0.14s cubic-bezier(.76,.06,.37,1.23) !important;
}
h1:hover, h2:hover, h3:hover {
  transform: rotate(-2deg) scale(1.03);
}

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