/* ---- CSS RESET & NORMALIZATION ---- */
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;
}
footer p {
  color: white !important;
}
body {
  line-height: 1.5;
  background: #FAFAF7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --brand-primary: #224C38;
  --brand-secondary: #E5C07B;
  --brand-accent: #FFFFFF;
  --brand-emerald: #39D98A;
  --brand-coral: #FF8577;
  --brand-blue: #32A6EA;
  --gray-100: #FAFAF7;
  --gray-200: #F2EFE9;
  --gray-300: #E8E5DD;
  --gray-700: #43413E;
  --shadow-fun: 0px 4px 24px 0 rgba(50,166,234,0.09);
  --radius-card: 22px;
  --radius-btn: 18px;
  --radius-section: 32px;
  --transition-base: 0.18s cubic-bezier(.64,.02,.35,1.54);
  --font-display: 'Playfair Display', serif;
  --font-fun: 'Fredoka', 'Montserrat', Arial, sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: local("Playfair Display Bold"), url('https://fonts.gstatic.com/s/playfairdisplay/v36/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYh9gFGuKcG9Qg5w.woff2') format('woff2');
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm459WxhzQ.woff2') format('woff2');
}
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 700;
  src: local("Fredoka Bold"), url('https://fonts.gstatic.com/s/fredoka/v13/h-IkKXCRb2AF5VYhCZYOcWh_LQ.woff2') format('woff2');
}

/* ---- TYPOGRAPHY ---- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brand-primary);
  background: var(--gray-100);
}
h1, h2, h3,h4, h5, h6 {
  font-family: var(--font-display), var(--font-fun);
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.65rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--brand-coral);
  text-shadow: 2px 4px 0 var(--brand-secondary), 1px 1px 0 var(--gray-300);
  font-family: var(--font-fun);
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-family: var(--font-fun);
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: var(--font-fun);
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-primary);
}
.subheadline {
  font-size: 1.15em;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--brand-blue);
}
em {
  color: var(--brand-coral);
  font-family: var(--font-fun);
}

/* ---- LAYOUT WRAPPERS AND SPACING ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-200);
  border-radius: var(--radius-section);
  box-shadow: 0 7px 22px 0 rgba(50,166,234,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ---- PLAYFUL DYNAMIC CARDS AND FEATURE GRIDS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 24px 0 rgba(50,166,234,0.09), 0 1.5px 10px 0 rgba(239,163,160,.09);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 270px;
  flex: 1 1 280px;
  position: relative;
  transition: transform .18s cubic-bezier(.64,.02,.35,1.54), box-shadow .18s;
  z-index: 1;
}
.card:hover {
  transform: translateY(-6px) scale(1.027);
  box-shadow: 0 6px 32px 0 rgba(50,166,234,0.17), 0 4px 18px 0 rgba(255,133,119,.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 18px 0 rgba(50, 166, 234, 0.09);
  padding: 22px 18px 22px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow .18s, transform .18s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  box-shadow: 0 4px 12px 0 rgba(255,133,119,.13);
  border-radius: 12px;
  background: #eafdf4;
  padding: 6px;
}
.feature-item:hover {
  background: var(--gray-200);
  transform: scale(1.04) rotate(-3deg);
  box-shadow: 0 8px 30px 0 rgba(57,217,138,.12);
}

/* ---- BUTTONS & CTA ---- */
.cta-btn, .header-cta, .services-list a, .service-list a, .text-section a, .footer-menu a, .mobile-nav a, .cookie-btn, .cookie-modal-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--brand-accent);
  border-radius: var(--radius-btn);
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.12rem;
  padding: 11px 28px;
  box-shadow: 0 2.5px 8px 0 rgba(32,76,56,0.08);
  margin-top: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  transition: background .22s, color .2s, transform .12s, box-shadow .18s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover, .header-cta:hover, .services-list a:hover, .service-list a:hover, .text-section a.cta-btn:hover, .cookie-btn:hover, .cookie-modal-btn:hover {
  background: var(--brand-coral);
  color: var(--brand-accent);
  transform: scale(1.06) rotate(-1.8deg);
  box-shadow: 0 5px 14px 0 rgba(32,76,56,0.17);
}
.header-cta {
  margin-left: 18px;
  background: var(--brand-coral);
  color: var(--brand-accent);
  padding: 8px 23px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-family: var(--font-fun);
  font-size: 1rem;
  letter-spacing: 1.4px;
  box-shadow: 0 2px 7px 0 rgba(255,133,119,0.07);
  transition: background .19s, color .17s, box-shadow .14s, transform .12s;
}
.header-cta:active {
  background: var(--brand-blue);
}

/* ---- NAVIGATION STYLES ---- */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px 0;
  position: relative;
  z-index: 6;
  background: transparent;
}
.logo-link img {
  height: 48px; width: auto;
  margin-right: 14px;
  transition: transform .21s;
}
.logo-link:hover img { transform: scale(1.07) rotate(-7deg); }
.main-menu {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.08rem;
}
.main-menu a {
  color: var(--brand-primary);
  padding: 2px 8px;
  border-radius: 9px;
  transition: background 0.18s, color 0.17s, transform .11s;
}
.main-menu a:hover, .main-menu a.active {
  color: var(--brand-accent);
  background: var(--brand-coral);
  transform: scale(1.04);
}

/* Nav responsiveness: hide menu on mobile */
@media (max-width: 880px) {
  .main-menu, .header-cta {
    display: none !important;
  }
  .logo-link img {
    height: 40px;
  }
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-coral);
  color: var(--brand-accent);
  border: none;
  font-size: 2.3rem;
  border-radius: 16px;
  padding: 2px 15px 4px 15px;
  margin-left: 8px;
  cursor: pointer;
  transition: background .17s, transform .11s;
  box-shadow: 0 3px 16px 0 rgba(255,133,119,0.10);
  z-index: 6003;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-blue);
  color: var(--brand-accent);
  transform: scale(1.13) rotate(-5deg);
}
@media (max-width: 880px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,76,56,0.95);
  color: var(--brand-accent);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.6,.08,.36,1.12);
  box-shadow: 0 6px 34px 0 rgba(32,76,56,0.17);
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2rem;
  background: var(--brand-coral);
  border-radius: 50%;
  color: var(--brand-accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 18px 0 rgba(255,133,119,0.20);
  border: none;
  cursor: pointer;
  z-index: 10003;
  transition: background .15s, color .12s, transform .10s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-blue);
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 70px 0 0 28px;
  width: 80vw;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.24rem;
  font-family: var(--font-fun);
  font-weight: 700;
  letter-spacing: 1px;
  background: transparent;
  padding: 8px 0; margin: 0;
  border-radius: 10px;
  transition: background .16s, color .14s, transform .13s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--brand-coral);
  color: var(--brand-accent);
  padding-left: 10px;
  transform: scale(1.09) translateX(3px);
}

/* ---- SERVICES & LISTS ---- */
.services-list,
.service-list{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.services-list li, .service-list li {
  background: var(--gray-200);
  border-radius: var(--radius-card);
  box-shadow: 0 2.5px 10px 0 rgba(239,163,160,.08);
  padding: 22px 18px 18px 18px;
  transition: background .18s, transform .11s, box-shadow .17s;
}
.services-list li:hover, .service-list li:hover {
  background: var(--brand-secondary);
  box-shadow: 0 7px 21px 0 rgba(57,217,138,.13);
  transform: scale(1.018) rotate(-2deg);
}
.services-list h3, .service-list h2 {
  color: var(--brand-blue);
  font-family: var(--font-fun);
  font-size: 1.22rem;
}
.services-list p, .service-list p {
  margin-top: 6px;
  font-size: 1rem;
}
.service-price {
  color: var(--brand-coral);
  font-family: var(--font-fun);
  font-size: 1.08rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: var(--radius-card);
  box-shadow: 0 5px 20px 0 rgba(34,76,56,0.09), 0 2px 10px 0 rgba(239,163,160,.07);
  font-size: 1.08rem;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow .19s, transform .18s, background .11s;
}
.testimonial-card p {
  color: #222D1C;
  font-style: italic;
  margin-bottom: 0!important;
  font-family: var(--font-fun);
  font-size: 1.06rem;
}
.testimonial-card .testimonial-author {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brand-blue);
}
.testimonial-card:hover {
  background: var(--brand-accent);
  box-shadow: 0 9px 38px 0 rgba(50,166,234,0.19), 0 2px 10px 0 rgba(57,217,138,.11);
  transform: translateY(-4px) rotate(-2deg) scale(1.025);
}

/* DARK TEXT ON LIGHT FOR CONTRAST */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-author {
  color: #222D1C;
}

/* ---- OTHER UI ELEMENTS ---- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0 8px 0;
  font-weight: 500;
  font-family: var(--font-fun);
  color: var(--brand-primary);
}
.contact-info-list img {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}
.contact-info-list a {
  color: var(--brand-blue);
  font-family: var(--font-fun);
  transition: color .13s;
  text-decoration: underline dotted;
}
.contact-info-list a:hover {
  color: var(--brand-coral);
}

/* ---- FOOTER ---- */
footer {
  margin-top: 70px;
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -5px 32px 0 rgba(34,76,56,0.10);
  padding: 44px 0 0 0;
  font-family: var(--font-fun);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 26px;
}
.footer-logo {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-logo img {
  height: 48px;
}
.brand-tagline {
  color: var(--brand-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-fun);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.1rem;
  margin-top: 6px;
}
.footer-menu a {
  color: var(--brand-accent);
  padding: 6px 2px;
  border-radius: 8px;
  transition: background .11s, color .13s;
  font-weight: 500;
}
.footer-menu a:hover, .footer-menu a.active {
  background: var(--brand-coral);
  color: var(--brand-accent);
}
.footer-contact {
  flex: 1 1 240px;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--brand-secondary);
}
.footer-contact a {
  color: var(--brand-secondary);
  text-decoration: underline dotted;
  transition: color .13s;
}
.footer-contact a:hover {
  color: var(--brand-coral);
}

@media (max-width: 930px) {
  .footer-row {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-logo, .footer-contact {
    align-items: flex-start;
  }
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 2.15rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 850px) {
  .feature-grid,
  .testimonials,
  .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-row {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 26px 7px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.20rem; }
}

@media (max-width: 540px) {
  .container {
    padding: 0 3vw;
  }
  .header-nav { padding: 19px 0 13px 0; }
  .footer-row { gap: 21px; }
  .footer-logo img { height: 34px; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 99000;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 -6px 32px 0 rgba(255,133,119,0.11);
  padding: 24px 18px 23px 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  animation: banner-slide-in 0.84s cubic-bezier(.62,.12,.41,1.11);
}
@keyframes banner-slide-in {
  from { transform: translateY(120%); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner-message {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-fun);
  margin-right: 17px;
}
.cookie-btn {
  background: var(--brand-blue);
  color: var(--brand-accent);
  border-radius: 16px;
  padding: 8px 20px;
  font-family: var(--font-fun);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 4px;
  transition: background .19s, transform .13s;
  cursor: pointer;
  border: none;
}
.cookie-btn.reject {
  background: var(--brand-coral);
  color: var(--brand-accent);
}
.cookie-btn.settings {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.cookie-btn:hover {
  transform: scale(1.09) rotate(-2deg);
  background: var(--brand-emerald);
  color: var(--brand-primary);
}
.cookie-btn.settings:hover {
  background: var(--brand-blue);
  color: var(--brand-accent);
}
.cookie-btn.reject:hover {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

/* ---- COOKIE SETTINGS MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0; right:0; top: 0; bottom: 0;
  z-index: 99500;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(34,76,56,0.72);
  animation: cookie-modal-fade .32s cubic-bezier(.46,.14,.39,.93);
}
@keyframes cookie-modal-fade {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-inner {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 22px;
  padding: 44px 30px 30px 30px;
  max-width: 330px;
  width: 95vw;
  box-shadow: 0 8px 46px 0 rgba(32,76,56,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-fun);
}
.cookie-modal-header{
  font-size:1.33rem;
  font-weight:700;
  color:var(--brand-blue);
  margin-bottom:5px;
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 26px;
  font-size: 1.8rem;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 100032;
  transition: background .12s, color .09s, transform .08s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus{
  background:var(--brand-coral);
  color:var(--brand-accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 10px 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--gray-200);
  padding: 12px 14px;
  border-radius: 11px;
}
.cookie-category label {
  font-size: 1.01rem;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  background: var(--gray-300);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .21s;
}
.cookie-switch[data-checked="true"] {
  background: var(--brand-emerald);
}
.cookie-switch[data-checked="true"]:before {
  left: 17px;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: left .22s cubic-bezier(.64,.02,.35,1.44);
  box-shadow: 0 2px 6px 0 rgba(32,76,56,0.09);
}
.cookie-modal-btn {
  background: var(--brand-blue);
  color: var(--brand-accent);
  border-radius: 14px;
  padding: 8px 19px;
  font-family: var(--font-fun);
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
  transition: background .19s, transform .14s;
  cursor: pointer;
  border: none;
}
.cookie-modal-btn.cancel {
  background: var(--brand-coral);
  color: var(--brand-accent);
}
.cookie-modal-btn:hover {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: scale(1.07) rotate(-3deg);
}
.cookie-modal-btn.cancel:hover {
  background:var(--brand-blue);
}

/* ---- UTILITIES ---- */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.text-center { text-align: center; }

/* ---- MICRO-INTERACTIONS & ANIMATIONS ---- */
@keyframes fun-pop {
  0% { transform: scale(1) rotate(0); }
  23% { transform: scale(1.07) rotate(-5deg); }
  53% { transform: scale(0.97) rotate(6deg); }
  100% { transform: scale(1) rotate(0); }
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  animation: fun-pop 0.39s;
}
.cta-btn:focus, .header-cta:focus, .cookie-btn:focus {
  outline: 2px dashed var(--brand-coral);
  outline-offset: 3px;
}

/* ==== END STYLE.CSS ==== */
