/* --- CSS RESET & BASE STYLES --- */
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;
}
body {
  line-height: 1.5;
  background: #F0F4F8;
  color: #1E2538;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.85,0,.15,1);
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #1E2538;
  letter-spacing: -0.5px;

}

/* --- BRAND COLORS, FONT SIZES, TRANSITIONS --- */
:root {
  --color-primary: #1E2538;
  --color-secondary: #70A3B1;
  --color-accent: #F0F4F8;
  --color-electric-blue: #00FFC6;
  --color-hot-pink: #FF007C;
  --color-yellow: #FFE600;
  --color-btn-bg: #1E2538;
  --color-btn-hover: #70A3B1;
  --color-btn-text: #FFF;
  --color-white: #FFF;
  --color-black: #181818;
  --card-shadow: 0 6px 30px 0 rgba(30,40,64,0.16);
  --radius: 22px;
  --gap-main: 24px;
  --gap-card: 24px;
  --shadow-vibrant: 0 6px 28px 0 rgba(112,163,177,0.16);
  --transition: all .22s cubic-bezier(.75,0,.15,1);
}

/* --- CONTAINER AND LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-vibrant);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(100deg, #00FFC6 40%, #70A3B1 100%);
  color: var(--color-black);
  padding-top: 40px;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #1E2538;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* --- NAVIGATION --- */
header {
  background: var(--color-white);
  box-shadow: 0 5px 24px rgba(30,40,64,0.07);
  border-bottom: 1.5px solid #F0F4F8;
  position: sticky;
  top: 0;
  z-index: 98;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0;
  width: 100%;
  position: relative;
}
.main-nav > a {
  display: flex;
  align-items: center;
  padding: 0;
  height: 54px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:not(.cta-btn):hover {
  color: #00FFC6;
}
.cta-btn {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: var(--color-btn-text);
  background: linear-gradient(90deg,#FF007C 30%,#00FFC6 100%);
  border-radius: 32px;
  box-shadow: 0 5px 18px rgba(255,0,124,.13);
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#00FFC6 20%,#FF007C 100%);
  color: #FFF;
  box-shadow: 0 4px 22px rgba(30,37,56,0.11);
  transform: translateY(-2px) scale(1.03);
}

/* BURGER MENU STYLES */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  padding: 6px 18px;
  background: none;
  color: #FF007C;
  border: none;
  margin-left: auto;
  position: relative;
  z-index: 120;
}
@media (max-width: 1024px) {
  .main-nav ul {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU DRAWER/OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #FF007C 40%, #00FFC6 105%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.66,0,.15,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.6rem;
  color: #FFF;
  margin: 24px 32px 20px 0;
  background: none;
  z-index: 220;
  border: 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100vw;
  padding: 22px 32px 24px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 12px 0;
  transition: color 0.18s;
  border-bottom: 1.5px solid rgba(245,245,245,.2);
  width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFE600;
}
/* Only show mobile menu toggle on small screens */
@media (max-width: 1024px) {
  .main-nav ul {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- FLEXBOX UTILITY CLASSES (MANDATORY) --- */
.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;
}

/* --- SERVICE CARDS --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px rgba(30,40,64,0.09);
  padding: 28px 20px 22px 20px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: calc(33% - 18px);
  margin-bottom: 20px;
  position: relative;
  transition: transform .21s cubic-bezier(.77,0,.17,1), box-shadow .18s;
  border-left: 8px solid #00FFC6;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 33px rgba(255,0,124,0.16);
  border-left: 8px solid #FF007C;
}

@media (max-width: 1024px) {
  .service-cards {
    gap: 18px;
  }
  .service-card {
    max-width: 100%;
    min-width: 160px;
    flex: 1 1 47%;
  }
}
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
    padding: 16px 12px 16px 16px;
  }
}

/* --- CASE STUDIES --- */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  flex: 1 1 280px;
  min-width: 230px;
  max-width: calc(50% - 18px);
  padding: 26px 20px 20px 22px;
  border-left: 5px solid #FF007C;
  margin-bottom: 20px;
  transition: box-shadow .16s, border-color .23s;
}
.case-study:hover {
  box-shadow: 0 8px 33px rgba(0,255,198,0.085);
  border-left: 5px solid #00FFC6;
}
@media (max-width: 950px) {
  .case-studies {
    gap: 14px;
  }
  .case-study {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 98%;
  }
}
@media (max-width: 660px) {
  .case-studies {
    flex-direction: column;
    gap: 14px;
  }
  .case-study {
    padding: 15px 7px 14px 11px;
  }
}

/* --- BLOG --- */
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 28px;
}
.blog-post-list li {
  background: #FFF;
  border-radius: 14px;
  padding: 23px 18px;
  box-shadow: 0 1.5px 12px rgba(112,163,177,0.07);
  border-left: 5px solid #FF007C;
  transition: box-shadow .11s, border-color .19s;
}
.blog-post-list li:hover {
  border-left: 5px solid #00FFC6;
  box-shadow: 0 7px 30px rgba(0,255,198,0.06);
}
.featured-articles {
  background: #00FFC6;
  color: #181818;
  border-radius: 9px;
  padding: 14px 20px;
  font-weight: bold;
  margin-top: 14px;
}

/* --- TABLES --- */
.services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.05rem;
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2.5px 9px rgba(30,37,56,0.08);
}
.services-table th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  background: #FFE600;
  color: #181818;
  font-weight: 900;
  padding: 16px 16px;
  border-bottom: 2px solid #00FFC6;
}
.services-table td {
  padding: 15px 14px;
  border-bottom: 1.3px solid #E3E7ED;
  font-weight: 500;
  color: #1E2538;
}
.services-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .services-table, .services-table thead, .services-table tbody, .services-table tr {
    display: block;
  }
  .services-table th, .services-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
  }
  .services-table tr {
    margin-bottom: 19px;
    box-shadow: 0 2.5px 6px rgba(30,37,56,0.08);
    border-radius: 8px;
    background: #fff;
  }
  .services-table th {
    border-radius: 8px 8px 0 0;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #FFE600;
  margin-bottom: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(255,0,124,0.07);
  padding: 38px 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials h2 {
  color: #1E2538;
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-weight: 900;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-left: 0;
  justify-content: center;
}
.testimonial-card {
  background: #FFF;
  color: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(112,163,177,0.13);
  padding: 22px 26px 20px 26px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 285px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
  transition: box-shadow .17s cubic-bezier(.8,0,.18,1), transform .24s cubic-bezier(.67,0,.19,1);
}
.testimonial-card:hover {
  transform: scale(1.035) translateY(-5px);
  box-shadow: 0 10px 32px 0 rgba(0,255,198,0.11), 0 1.5px 13px 0 rgba(255,0,124,0.09);
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03em;
  letter-spacing: 0.3px;
  color: #FF007C;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1E2538;
}
@media (max-width: 700px) {
  .testimonials, .testimonials .container {
    padding: 20px 0;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 10px 8px 13px 15px;
    min-width: 0;
    max-width: 100%;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #FFF;
  padding: 52px 0 24px 0;
  font-size: 1rem;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
}
.footer-nav img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
}
.footer-nav > span {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFE600;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 24px;
}
.footer-nav a {
  color: #fff;
  font-size: 1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.2px;
  padding: 3px 0;
  opacity: 0.93;
  transition: color .16s, opacity .2s;
}
.footer-nav a:hover {
  color: #00FFC6;
  opacity: 1;
}
.footer-nav address {
  font-style: normal;
  color: #F0F4F8;
  font-size: 0.97em;
  margin-top: 8px;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .footer-nav {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* --- SECTION & TYPOGRAPHY HIERARCHY --- */
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.10;
  margin-bottom: 10px;
  color: #1E2538;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #70A3B1;
  letter-spacing: -0.6px;
}
h3 {
  font-size: 1.27rem;
  font-weight: 700;
  color: #FF007C;
  margin-bottom: 7px;
}
h4 {
  font-size: 1.07rem;
}
p, ul li {
  font-size: 1.08rem;
  color: #1E2538;
  line-height: 1.6;
}
ul, ol {
  margin-bottom: 12px;
}
ul > li, ol > li {
  padding-left: 0;
  margin-bottom: 6px;
  list-style: disc inside;
}
ul > li:last-child, ol > li:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
  color: #1E2538;
}
@media (max-width:650px) {
  h1 {font-size:1.55rem;}
  h2 {font-size:1.18rem;}
  h3 {font-size:1.07rem;}
}

/* --- BUTTONS --- */
button, .cta-btn {
  cursor: pointer;
  border: none;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FF007C 20%, #00FFC6 100%);
  color: #181818;
  padding: 28px 16px 20px 16px;
  z-index: 3010;
  box-shadow: 0 0 25px 0 rgba(30,37,56,.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  border-radius: 18px 18px 0 0;
  animation: cookieBannerIn 0.44s cubic-bezier(.85,0,.15,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 3px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  background: #FFF;
  color: #1E2538;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  border-radius: 28px;
  box-shadow: 0 0.5px 5px rgba(112,163,177,0.07);
  padding: 9px 22px;
  margin-right: 0;
  margin-bottom: 0;
  border: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: #00FFC6;
  color: #181818;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FF007C;
  color: #FFF;
}
.cookie-banner .reject {
  background: #FF007C;
  color: #FFF;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #00FFC6;
  color: #181818;
}
.cookie-banner .settings {
  background: #1E2538;
  color: #FFF;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFE600;
  color: #1E2538;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    font-size: 0.97rem;
    padding: 19px 5px 17px 7px;
  }
  .cookie-banner .cookie-buttons {
    gap: 11px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,37,56,0.42);
  z-index: 3030;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.24s cubic-bezier(.65,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF;
  padding: 32px 26px;
  border-radius: 24px;
  box-shadow: 0 10px 42px 0 rgba(30,40,64,0.13);
  min-width: 330px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.34s cubic-bezier(.66,0,.18,1);
}
@keyframes modalIn {
  from { transform: scale(0.96) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.5rem; color: #00FFC6; margin-bottom: 12px; }
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.11rem;
  margin-bottom: 13px;
  gap: 9px;
}
.cookie-modal .switch {
  display: inline-block;
  width: 40px;
  height: 22px;
  background: #F0F4F8;
  border-radius: 15px;
  position: relative;
  margin-left: 8px;
}
.cookie-modal .switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #70A3B1;
  transition: left .18s, background .22s;
}
.cookie-modal .switch input:checked + .slider {
  left: 21px;
  background: #FF007C;
}
.cookie-modal .close-modal {
  position: absolute; right: 12px; top: 12px;
  background: none;
  font-size: 2rem;
  color: #70A3B1;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #FF007C;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .accept {
  background: #00FFC6; color: #181818;
}
.cookie-modal .accept:hover { background: #FF007C; color: #FFF; }
.cookie-modal .reject {
  background: #FF007C; color: #FFF;
}
.cookie-modal .reject:hover { background: #00FFC6; color: #181818; }
@media (max-width: 500px) {
  .cookie-modal { min-width: 0; max-width: 98vw; padding: 16px 7px; }
}

/* --- CONTACT BLOCK --- */
.contact-block {
  background: #FFF;
  border-radius: 16px;
  box-shadow: var(--shadow-vibrant);
  padding: 18px 26px;
  font-size: 1.1em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-block a {
  color: #FF007C;
  font-weight: bold;
  text-decoration: underline;
}
.contact-block a:hover, .contact-block a:focus {
  color: #00FFC6;
}

/* --- CONTENT SPACING --- */
section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section { margin-bottom: 36px; }
}

/* --- FLEXBOX RESPONSIVE RULES --- */
@media (max-width: 900px) {
  .feature-item, .content-grid, .card-container, .service-cards, .case-studies, .footer-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-wrapper, .content-grid {
    gap: 13px;
  }
}

/* --- MICRO-INTERACTIONS & ANIMATIONS --- */
a, button, .cta-btn, .cookie-banner button, .cookie-btn {
  transition: color 0.19s cubic-bezier(.8,0,.19,1), background 0.21s, box-shadow 0.13s, transform 0.17s;
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #ABB4BF; }
::-moz-placeholder { color: #ABB4BF; }
:-ms-input-placeholder { color: #ABB4BF; }
::placeholder { color: #ABB4BF; }

/* PROACTIVE: Ensure no element overlaps or is too cramped */
section, .section, .card, .service-card, .case-study, .testimonial-card, .contact-block, .blog-post-list li {
  margin-bottom: 20px;
}

/* Accessibility & Contrast Ensurance for Testimonials */
.testimonial-card, .testimonials {
  color: #181818 !important;
}

/* Hide outline except for keyboard navigation */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 2px dotted #00FFC6;
  outline-offset: 1px;
}

/* --- END --- */
