/* ======================
   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,
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;
}
body {
  line-height: 1.5;
  background: #f6fcff;
  color: #222;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ======================
   VARIABLES: BRAND COLORS
========================= */
:root {
  --color-primary: #21759b;
  --color-secondary: #ffffff;
  --color-accent: #43b17a;
  --color-dark: #176845;
  --color-fun1: #ffe25f;
  --color-fun2: #fd7092;
  --color-fun3: #56d5e5;
  --color-bg: #f6fcff;
  --color-neutral: #e4edf3;
  --shadow-elev: 0 4px 20px 0 rgba(33,117,155,0.12), 0 1.5px 3px 0 rgba(67,177,122,0.10);
  --radius-lg: 32px;
  --radius-sm: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');

body {
  background: var(--color-bg);
  font-family: var(--font-body);
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

/* ======================
   LAYOUT & CONTAINERS
========================= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-elev);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elev);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(67,177,122,0.20);
  transform: translateY(-4px) scale(1.015) rotate(-1.5deg);
}

.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;
  background: #fffbe7;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elev);
  margin-bottom: 20px;
  color: #242222;
  position: relative;
  min-width: 0;
}

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

address {
  font-style: normal;
}

/* Feature grid (3 column look via flex) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 360px;
  background: #f4fbfb;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elev);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(33,117,155,0.18);
  transform: translateY(-6px) scale(1.022) rotate(1deg);
  z-index: 2;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #56d5e5);
}

/* ======================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.6rem;
  line-height: 1.17;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-fun2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 2px 0 #ffe25f38, 0 2px 20px #43b17a1e;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.26rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-weight: 700;
}
p, ul, dl, address, td, th {
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1rem;
  color: #252f34;
  margin-bottom: 0.6em;
}
strong {
  font-weight: 700;
}

/* Give text in testimonials HIGH contrast */
.testimonial-card p,
.testimonial-card strong {
  color: #2a2332;
}

/* Fun, playful subtitles */
.hero h1, .confirmation h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  animation: rainbowPop 4.5s infinite linear alternate;
}
@keyframes rainbowPop {
  0% { text-shadow: 2px 8px 24px #21759bab, 0 2px 38px #fd70926c;}
  30% { text-shadow: 2px 5px 20px #ffe25faa, 0 1px 12px #43b17a6a;}
  60% { text-shadow: 2px 3px 15px #56d5e5b7, 0 2px 32px #21759b6a;}
  100% { text-shadow: 2px 8px 18px #fd7092cc, 0 2px 22px #21759bab;}
}

/* Stylize definition lists in FAQ */
dl { margin-bottom: 24px; }
dt { font-weight: 700; color: var(--color-primary); margin-top: 12px; }
dd { margin-left: 14px; margin-bottom: 6px; }

/* ======================
   NAVIGATION & HEADER
========================= */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 20px rgba(33,117,155,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
  border-radius: 8px;
  padding: 7px 13px;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.07) rotate(-1.5deg);
}
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 28px;
  padding: 12px 30px;
  margin-left: 22px;
  box-shadow: 0 2px 12px #43b17a55, 0 2px 6px #21759b26;
  transition: background 0.2s, color 0.16s, box-shadow 0.16s, transform 0.18s;
  cursor: pointer;
  display: inline-block;
  text-shadow: 0 1px 7px #43b17a49;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fffbe7;
  box-shadow: 0 4px 24px #fd709289, 0 4px 10px #21759b33;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

/* ===========
   MOBILE NAV
============== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    padding: 4px 15px;
    margin-left: 18px;
    transition: background 0.2s, box-shadow 0.16s, transform 0.18s;
    box-shadow: 0 2px 8px #56d5e5b9;
    z-index: 51;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--color-fun2);
    transform: scale(1.08) rotate(-6deg);
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 32px #56d5e5cc;
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.7,-0.41,.25,1.36);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-fun2);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 7px 17px;
  margin: 20px 20px 0 0;
  border-radius: 14px;
  cursor: pointer;
  z-index: 201;
  box-shadow: 0 2px 14px #21759b23;
  transition: background 0.24s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun1);
  color: var(--color-primary);
  transform: scale(1.1) rotate(-8deg);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: stretch;
  margin-top: 40px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 18px 0 12px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.15s, transform 0.11s;
  text-align: left;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun3);
  color: var(--color-dark);
  transform: scale(1.07) rotate(2deg);
}

@media (max-width: 600px) {
  .mobile-nav { padding: 0 20px; }
  .mobile-menu-close {
    margin: 6px 10px 0 0; font-size: 2rem;
  }
}

/* Show/hide mobile controls */
@media (max-width: 960px) {
  .mobile-menu-toggle { display: flex; }
}

/* ================
   HERO SECTION
================== */
.hero {
  padding: 44px 0 46px 0;
  background: linear-gradient(110deg, #fffbe7 55%, #ffe25f24 100%), var(--color-bg);
  border-radius: 0 0 52px 52px;
  box-shadow: none;
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: center;
  gap: 17px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-fun2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-dark);
  margin-bottom: 0.6em;
}
.hero .cta-btn {
  font-size: 19px;
  padding: 14px 36px;
  background: var(--color-accent);
  margin-top: 12px;
}

@media (max-width: 600px) {
  .hero { border-radius: 0 0 24px 24px; padding: 25px 0 24px 0; }
  .hero h1 { font-size: 1.35rem; }
}


/* ===================
   BUTTONS
===================== */
.cta-btn, button, input[type=submit] {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  outline: none;
  border: none;
  border-radius: 22px;
  padding: 11px 28px;
  margin: 8px 0;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 9px #43b17a41;
  transition: background 0.2s, color 0.18s, transform 0.15s, box-shadow 0.16s;
}
.cta-btn:hover, button:hover, input[type=submit]:hover,
.cta-btn:focus, button:focus, input[type=submit]:focus {
  background: var(--color-accent);
  color: #fffbe7;
  transform: scale(1.035) rotate(-1.5deg);
  box-shadow: 0 4px 14px #21759b23;
}

/* Fun ripple animation for buttons */
.cta-btn:active {
  animation: funBounce 0.20s linear;
}
@keyframes funBounce {
  0% { transform: scale(1.01) rotate(-1deg); }
  60% { transform: scale(0.98) rotate(1.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ================
   FEATURES
================== */
.features {
  background: #fcfff7;
  border: 2px dashed var(--color-fun1);
  border-radius: var(--radius-lg);
}
.features h2 {
  color: var(--color-fun2);
  margin-bottom: 18px;
  font-size: 2.12rem;
  text-shadow: 0 2px 8px #fc83ca26;
}

@media (max-width: 768px) {
  .feature-grid { flex-direction: column; }
  .feature-grid > div { min-width: 0; max-width: 100%; }
}

/* ================
   TESTIMONIALS
================== */
.testimonials {
  background: #fffbe7;
  border-radius: var(--radius-lg);
}
.testimonials h2 {
  color: var(--color-fun2);
}
.testimonial-card {
  border: 2px solid var(--color-fun1);
  box-shadow: 0 1.5px 8px #43b17a41;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 24px;
  background: #fffef9;
  position: relative;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--color-dark);
  margin-left: 10px;
}

/* ======================
   CARD WHITE BG
========================= */
.card, .content-wrapper > .card {
  background: #fafdff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elev);
  margin-bottom: 20px;
  padding: 30px 20px;
  transition: box-shadow 0.22s, transform 0.15s;
}

/* ======================
   PRICING & FAQ TABLES
========================= */
.pricing table {
  width: 100%;
  margin: 20px 0 32px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fafeff;
  box-shadow: 0 1.5px 4px #21759b0a;
}
.pricing th, .pricing td {
  text-align: left;
  padding: 0.8em 1.1em;
  border-bottom: 1px solid #e7f0f7;
  font-family: var(--font-display);
}
.pricing th {
  background: #ffe25f1d;
  color: var(--color-accent);
}
.pricing tr:last-child td {
  border-bottom: 0;
}

/* ======================
   CONTACT SECTION
========================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.contact-details img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.contact-details address, .contact-details div {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
}

/* ======================
   FOOTER
========================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 40px;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 18px #21759b13;
}
footer .container { align-items: stretch; }
footer .content-wrapper {
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  opacity: 0.95;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 8px;
  padding: 2px 6px 3px 0;
  transition: background 0.14s, color 0.2s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: var(--color-fun1);
  background: transparent;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}
.footer-contact a {
  color: var(--color-fun3);
  font-weight: 700;
  word-break: break-all;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 600px) {
  footer { border-radius: 18px 18px 0 0; }
}

/* ======================
   CTA SECTION/AREA
========================= */
.cta {
  background: linear-gradient(95deg, #ffe25f 50%, #f6fcff 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px #21759b16;
}
.cta h2 {
  color: var(--color-accent);
  text-shadow: 0 1px 14px #43b17a39;
}

/* ======================
   FORM ELEMENTS
========================= */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 18px;
  border: 1.5px solid #dbf2e1;
  border-radius: 10px;
  background: #f8ffff;
  margin-bottom: 17px;
  transition: border-color 0.16s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
}

/* ======================
   RESPONSIVE LAYOUT
========================= */
@media (max-width: 1100px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .section, section { padding: 24px 6px; }
}
@media (max-width: 768px) {
  .container, .content-wrapper { padding: 0 6px; }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ================
   COOKIE BANNER
================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 130;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffe25f;
  color: #262222;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -2px 14px #21759b12;
  font-family: var(--font-display);
  transition: transform 0.45s cubic-bezier(.79,1.01,.25,1.15), opacity 0.19s;
  opacity: 1;
  transform: translateY(0);
  border-radius: 18px 18px 0 0;
  gap: 20px;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(170px);
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin: 0 5px;
  font-size: 1rem;
  border-radius: 21px;
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .reject {
  background: #fd7092;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #21759b;
  border: 2px solid var(--color-primary);
}
.cookie-banner .cookie-btn:hover {
  filter: brightness(0.98) contrast(1.15);
  transform: scale(1.049);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,117,155,0.17);
  z-index: 199;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  z-index: 211;
  background: #fff;
  border-radius: 32px;
  padding: 48px 32px 30px 32px;
  box-shadow: 0 8px 54px #54aecf81;
  min-width: 320px; max-width: 95vw;
  width: 430px;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: popOpen 0.34s cubic-bezier(.5,-0.41,.35,1.6);
}
@keyframes popOpen {
  0% { opacity: 0; transform: scale(0.91) translateY(34px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.48rem;
  margin-bottom: 13px;
  color: var(--color-primary);
}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 18px; top: 18px;
  background: #fd7092;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.3rem;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.11s;
}
.cookie-modal .close-cookie-modal:hover {
  background:var(--color-fun1); color: #222;
}
.cookie-preferences-list {
  margin-top: 16px;
  margin-bottom: 11px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-preferences-list label {
  font-size: 1.08rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-preferences-list input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: var(--color-accent);
}
.essential-cookie-label {
  font-weight: 700;
  color: var(--color-primary);
}

/* ================
   ANIMATIONS
================== */
.card, .feature-grid > div, .testimonial-card, .cta, .section, section,
.cta-btn, .footer-nav a, .legal-nav a, .main-nav a, .mobile-nav a, .mobile-menu-close {
  transition: box-shadow 0.15s, background 0.15s, transform 0.11s, color 0.15s;
}
section, .section, .feature-grid > div, .testimonial-card {
  will-change: transform, box-shadow;
}

/* ================
   PLAYFUL DECORATIONS
================== */
.feature-grid > div::before {
  content: '';
  position: absolute;
  top: -22px; right: -22px;
  width: 28px; height: 28px;
  z-index: 1;
  background: var(--color-fun3);
  opacity: 0.37;
  border-radius: 14px 11px 28px 4px;
  pointer-events: none;
  filter: blur(3px);
}
.feature-grid > div:nth-child(2)::before {
  background: var(--color-fun2);
  opacity: 0.27;
  right: auto; left: -22px;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -18px; left: 48px;
  width: 34px; height: 16px;
  border-radius: 12px 14px 14px 12px;
  background: var(--color-fun1);
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

/* ======================
   MISC ELEMENTS
========================= */
.map-placeholder {
  background: #e4edf3;
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  margin-top: 18px;
  box-shadow: 0 2px 12px #43b17a29;
}

.business-hours {
  background: #fcfff7;
  border-radius: 12px;
  padding: 15px 17px;
  margin: 14px 0 24px 0;
  box-shadow: 0 2px 8px #56d5e53d;
  font-family: var(--font-display);
}

/* ========================
   RESPONSIVE SCALES
=========================== */
@media (max-width: 485px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .cta-btn { padding: 8px 22px; font-size: 1rem; }
  .section, section { padding: 15px 2px; }
}

/* ========================
   PRINT FRIENDLY TABLES
=========================== */
@media print {
  html, body { background: #fff !important; color: #111 !important; }
  .container { width: 98vw; padding: 0; }
  nav, .cta-btn, .mobile-menu-toggle, .cookie-banner, .mobile-menu { display: none !important; }
}

/* ========================
   ACCESSIBILITY FOCUS VISIBLE
=========================== */
a:focus, .cta-btn:focus, button:focus, input:focus {
  outline: 2px dashed var(--color-fun2);
  outline-offset: 2px;
  background: #fffcf2a8;
}

/* END OF STYLE.CSS */