/* RESET & BASE TYPOGRAPHY ------------------------- */
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 {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 1.65;
  background: #fff;
  min-height: 100vh;
  position: relative;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4B653F;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #A38449;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
  color: #232B19;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
strong {
  color: #A38449;
  font-weight: 700;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  font-size: 1em;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.text-section {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 40px;
  }
}
/* COLOR PALETTE ------------------------------- */
:root {
  --primary: #4B653F;
  --secondary: #A38449;
  --accent: #F4F0E7;
  --energize-green: #5FD068;
  --vivid-orange: #FF8901;
  --hot-pink: #F54197;
  --electric-blue: #2496FF;
  --deep-violet: #500AFF;
  --light-shade: #fff;
  --dark-text: #231F20;
  --vibrant-yellow: #FFD600;
  --high-contrast-bg: #fff;
}

/* HEADER & NAVIGATION ------------------------- */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 8px 24px -12px rgba(34,80,38,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  z-index: 1401;
}
.main-nav {
  display: none;
}
.main-nav a {
  color: #fff;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  margin: 0 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--vibrant-yellow);
  text-shadow: 0 2px 14px var(--electric-blue, #2496FF33);
}
.cta.primary {
  background: linear-gradient(90deg, var(--vivid-orange), var(--energize-green) 80%);
  color: #fff;
  border: none;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 38px;
  border-radius: 48px;
  text-decoration: none;
  font-size: 1.15rem;
  box-shadow: 0 5px 18px -8px var(--vivid-orange, #FF8901aa);
  margin-left: 18px;
  transition: background 0.21s, transform 0.15s;
  cursor: pointer;
  z-index: 1301;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--hot-pink) 20%, var(--electric-blue) 90%);
  color: var(--vibrant-yellow);
  transform: translateY(-2px) scale(1.045);
}
.cta {
  background: var(--deep-violet);
  color: var(--light-shade);
  border-radius: 44px;
  padding: 12px 32px;
  font-size: 1em;
  text-decoration: none;
  font-weight: 700;
  font-family: Quicksand, Arial, sans-serif;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 4px 16px -6px var(--deep-violet, #500AFF33);
  border: none;
}
.cta:hover, .cta:focus {
  background: var(--hot-pink);
  color: var(--vibrant-yellow);
  transform: scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--vibrant-yellow);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  z-index: 1501;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--hot-pink);
  color: #fff;
  outline: none;
}
@media (min-width: 1000px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
  }
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* MOBILE MENU --------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,12,32,0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.61,.13,.28,1.1);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--vibrant-yellow);
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 20px 20px 8px 0;
  cursor: pointer;
  padding: 8px 12px 8px 12px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-blue);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 34px 10px 34px;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: .01em;
  text-decoration: none;
  margin: 8px 0;
  padding: 12px 0;
  display: block;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.21s, background 0.19s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vibrant-yellow);
  background: #fff2;
  border-color: var(--electric-blue);
}
@media (min-width: 1000px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN LAYOUT & SECTIONS ----------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 28px;
  position: relative;
}
.hero {
  background: linear-gradient(88deg, var(--electric-blue) 0%, var(--energize-green) 100%);
  color: #fff;
  box-shadow: 0 8px 34px -11px var(--electric-blue, #2496ff22);
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--vibrant-yellow);
  line-height: 1.17;
  word-break: break-word;
  text-shadow: 0 3px 20px var(--hot-pink, #F5419744);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 27px;
  font-family: Montserrat, Arial, sans-serif;
  color: #fff;
}
.hero .cta.primary {
  font-size: 1.18rem;
}
.usp {
  background: var(--accent);
  color: var(--dark-text);
  box-shadow: 0 6px 24px -10px #A3844955;
  border-radius: 26px;
}
.usp h2 {
  color: var(--primary);
}
.usp ul li {
  font-size: 1.1em;
  margin-bottom: 8px;
  font-weight: 500;
}

/* FLEXBOX LAYOUT PATTERNS ---------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px -8px var(--energetic-green, #5FD06844);
  padding: 22px 30px;
  transition: box-shadow 0.22s, transform 0.15s;
  min-width: 250px;
  flex: 1 1 250px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px -6px var(--hot-pink, #F5419733), 0 8px 32px -8px var(--electric-blue, #2496FF33);
  transform: translateY(-3px) 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;
  margin-bottom: 24px;
  background: #fff;
  color: #27112E;
  border-radius: 24px;
  font-size: 1.18em;
  box-shadow: 0 4px 20px -9px #2496FF22, 0 1px 0 #F4F0E7;
  border-left: 5px solid var(--hot-pink);
  transition: box-shadow .19s;
  word-break: break-word;
  font-family: Montserrat, Arial, sans-serif;
}
.testimonial-card p {
  color: #231F20;
}
.testimonial-card span {
  margin-left: 12px;
  font-weight: 700;
  color: var(--vivid-orange);
}
.testimonials-preview .cta {
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 19px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 340px;
  box-shadow: 0 2px 14px -7px var(--energize-green, #5fd06837);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 25px 18px 25px;
  gap: 10px;
  transition: box-shadow .16s, transform 0.12s;
  border-bottom: 4px solid var(--electric-blue);
}
.feature-grid > div:hover {
  box-shadow: 0 8px 26px -6px var(--hot-pink, #F5419744);
  transform: translateY(-2px) scale(1.017);
}
.feature-grid img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 5px;
}
.feature-grid h3 {
  color: var(--deep-violet);
}
.feature-grid p {
  color: var(--primary);
}

/* FOOTER -------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 16px 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 20px -9px #A3844955;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 1em;
  letter-spacing: 0.01em;
  transition: color .18s;
  font-family: Quicksand, Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vibrant-yellow);
}
.footer-contact {
  font-size: 0.97em;
  color: var(--accent);
}
footer img {
  width: 64px; height: auto;
  margin-bottom: 8px;
}

/* MISC CARDS, ALERTS, ETC ---------------------- */
.privacy-notice {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92em;
  margin: 12px 0 0 0;
  box-shadow: 0 1px 6px -2px #A3844911;
}

/* RESPONSIVE LAYOUTS (Mobile-First) ------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  section, .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .main-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .container {
    padding: 0 3vw;
  }
  section, .hero {
    padding: 28px 3vw;
    margin-bottom: 34px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 17px;
    justify-content: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* FURTHER MICRO-INTERACTIONS & SHADOWS ---------- */
button, .cta, .cta.primary {
  outline: none;
}
button:active, .cta:active, .cta.primary:active {
  filter: brightness(0.89);
  transform: scale(0.98);
}
button:focus-visible, .cta:focus-visible {
  outline: 2px dashed var(--vivid-orange);
  outline-offset: 2px;
}

/* UTILITIES -------------------------------------- */
.hide {
  display: none !important;
}
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* COOKIE CONSENT BANNER -------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: linear-gradient(90deg, var(--deep-violet), var(--hot-pink) 85%);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 24px;
  box-shadow: 0 -4px 30px -12px #500AFF77;
  justify-content: space-between;
  transition: transform .29s cubic-bezier(.85,0,.45,1.3), opacity .21s;
  gap: 20px;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  max-width: 770px;
  font-size: 1.03em;
  font-family: Montserrat, Arial, sans-serif;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-buttons button, .cookie-buttons .cc-link {
  border: none;
  border-radius: 46px;
  padding: 10px 26px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background .19s, color .19s, border .18s;
  font-family: Quicksand, Arial, sans-serif;
}
.cookie-buttons .accept {
  background: var(--vivid-orange);
  color: #fff;
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus {
  background: var(--energize-green);
  color: var(--deep-violet);
}
.cookie-buttons .reject {
  background: #fff;
  color: var(--hot-pink);
  border: 2px solid var(--hot-pink);
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-buttons .settings {
  background: var(--deep-violet);
  color: var(--vibrant-yellow);
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: var(--vibrant-yellow);
  color: var(--deep-violet);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 12px 22px 12px;
  }
  .cookie-buttons {
    width: 100%;
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL --------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,8,44,.86);
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--accent);
  border-radius: 30px;
  padding: 38px 28px 30px 28px;
  min-width: 340px;
  max-width: 90vw;
  color: #222;
  box-shadow: 0 8px 40px -10px var(--deep-violet, #500AFF33);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popup-anim .33s cubic-bezier(.64,-0.06,.39,1.22);
}
@keyframes popup-anim {
  from { opacity: 0; transform: scale(.93) translateY(36px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: Quicksand, Arial, sans-serif;
  font-size: 1.34em;
  color: var(--primary);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-modal .category label {
  font-size: 1.09em;
  font-weight: 500;
  color: var(--deep-violet);
}
.cookie-modal .toggle {
  width: 36px; height: 22px;
  border-radius: 16px;
  background: #d3e4d8;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal .toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .toggle::before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #4B653F22;
  transition: left .19s, background .16s;
}
.cookie-modal .toggle input:checked + .toggle::before {
  left: 17px;
  background: var(--vivid-orange);
}
.cookie-modal .toggle input:checked + .toggle {
  background: var(--energize-green);
}
.cookie-modal .category.essential label {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .category.essential .toggle {
  filter: grayscale(1);
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 24px;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 36px;
  font-size: 1em;
  background: var(--electric-blue);
  color: #fff;
  transition: background .17s, color .12s;
  cursor: pointer;
  box-shadow: 0 2px 6px -2px var(--deep-violet, #500AFF22);
}
.cookie-modal .modal-actions button:hover {
  background: var(--hot-pink);
  color: var(--vibrant-yellow);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--deep-violet);
  cursor: pointer;
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .10s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--hot-pink);
  color: #fff;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 26px 7vw 24px 7vw;
  }
}

/* HIGH ENERGY DECORATIVE ELEMENTS --------------- */
.hero::before {
  content: '';
  position: absolute;
  top: -16px; left: -41px;
  width: 110px; height: 110px;
  background: var(--deep-violet);
  opacity: 0.13;
  border-radius: 48% 62% 44% 68%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
  animation: deco-float 5.6s infinite alternate ease-in-out;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  background: var(--vivid-orange);
  opacity: 0.10;
  border-radius: 74% 42% 53% 74%;
  filter: blur(1.5px);
  animation: deco-float 10.6s 1.5s infinite alternate-reverse ease-in-out;
}
@keyframes deco-float {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(14px) scale(1.08); }
}

/* TYPOGRAPHY SPECIALS ------------------------- */
.quote, blockquote {
  font-style: italic;
  color: var(--deep-violet);
  background: var(--accent);
  padding: 16px 24px;
  border-left: 6px solid var(--vivid-orange);
  border-radius: 13px;
  margin: 24px 0 12px 0;
}
.quote strong, blockquote strong {
  color: var(--hot-pink);
}

/* SPACING & VISUAL HIERARCHY ----------------- */
section > h1, section > h2, section > h3 {
  margin-bottom: 16px;
}
section > p, .text-section > p {
  margin-bottom: 12px;
}


/* FORMS & FIELDS ----------------------------- */
input, textarea {
  font-family: Montserrat, Arial, sans-serif;
  border: 2px solid var(--energize-green);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 1.05em;
  width: 100%;
  margin-bottom: 16px;
  background: #fff;
  color: #241B1A;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--hot-pink);
  box-shadow: 0 2px 10px -4px var(--hot-pink, #F5419720);
  outline: none;
}
label {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
button[type="submit"] {
  background: linear-gradient(87deg, var(--vivid-orange), var(--hot-pink) 80%);
  color: #fff;
  border: none;
  padding: 13px 40px;
  font-size: 1.07em;
  border-radius: 24px;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
  transition: background .21s, transform 0.17s;
  box-shadow: 0 2px 14px -5px var(--vivid-orange, #FF8901aa);
  cursor: pointer;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: linear-gradient(87deg, var(--electric-blue), var(--hot-pink) 90%);
  color: var(--vibrant-yellow);
  transform: scale(1.01);
}

/* ANIMATIONS ----------------------------------- */
.fade-in {
  animation: fadein .8s cubic-bezier(.62,.08,.63,1.06);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: none; }
}

/* SCROLLBAR ------------------------------------ */
::-webkit-scrollbar {
  width: 9px;
  background: #EEE;
}
::-webkit-scrollbar-thumb {
  background: var(--vivid-orange);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--hot-pink);
}

/* SELECTED TEXT ------------------------------- */
::selection {
  background: var(--electric-blue);
  color: var(--vibrant-yellow);
}

/* BRAND FOCUS EFFECT -------------------------- */
*:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 1px;
}

/* ACCESSIBILITY/CONTRAST FOR TESTIMONIALS ------ */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #231F20 !important;
  background: #fff !important;
}

/* Z-INDEX LAYERING ---------------------------- */
header, .cookie-banner, .cookie-modal-overlay, .mobile-menu {
  z-index: 2000;
}
footer {
  z-index: 900;
}
.hero, .section, main {
  z-index: 1;
}

/* END ----------------------------------------- */
