/* --- 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F6FB;
  color: #23496D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: #23496D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: #E8C64B;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
  border: none;
  outline: none;
}
:focus {
  outline: 2px dotted #E8C64B;
  outline-offset: 2px;
}

/* --- BRAND COLORS & FONTS --- */
:root {
  --color-primary: #23496D;
  --color-secondary: #E8C64B;
  --color-accent: #F5F6FB;
  --color-text: #23496D;
  --color-white: #fff;
  --color-shadow: rgba(35,73,109,.11);
  --color-hover: #ffc400;
  --border-radius: 22px;
  --shadow: 0 4px 24px var(--color-shadow);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: var(--color-accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #23496D;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.13;
  margin-bottom: 26px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote, em {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--color-text);
}
blockquote {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.13rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  background: var(--color-accent);
  padding: 12px 20px;
  border-left: 6px solid var(--color-secondary);
  border-radius: 10px;
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* --- LAYOUT FLEXBOX PATTERNS --- */
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features-grid, .services-list, .testimonials, .blog-list, .faq-accordion,
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  margin-top: 10px;
}
.feature {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .18s, box-shadow .18s;
  position: relative;
  will-change: transform;
}
.feature:hover {
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(35, 73, 109, 0.16);
  z-index: 2;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px;
  position: relative;
  min-width: 260px;
  transition: box-shadow .18s, transform .16s;
}
.card:hover {
  transform: translateY(-5px) scale(1.03);
}

.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;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(35, 73, 109, 0.12);
  min-width: 250px;
  flex: 1 1 280px;
  transition: transform .18s, box-shadow .18s;
  border: 3px dashed var(--color-secondary);
}
.testimonial-card:hover {
  transform: scale(1.03) rotate(1.4deg);
  box-shadow: 0 12px 40px rgba(35, 73, 109, 0.18);
}
.testimonial-card blockquote,
.testimonial-card .testimonial-author {
  color: #1b3553;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.05rem;
  color: #23496D;
}

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

.service-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .16s, box-shadow .16s;
  border: 2px solid var(--color-accent);
}
.service-item:hover {
  transform: scale(1.02) rotate(-1.5deg);
  box-shadow: 0 10px 34px 0 rgba(35,73,109,0.10);
  border: 2px solid var(--color-secondary);
}

.blog-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  padding: 18px 22px;
  transition: box-shadow .19s, background .21s;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 22px;
  color: var(--color-secondary);
  font-size: 1.6rem;
}
.faq-item.open {
  background: #ffeeab;
  box-shadow: 0 10px 34px 0 rgba(232,198,75,0.10);
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn .28s;
}
.faq-answer {
  margin-top: 12px;
  color: #23496D;
  display: none;
  font-size: 1rem;
}
.faq-item.open .faq-question::after {
  content: '-';
}

.legal-text {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 34px 28px 24px 28px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.success-message {
  background: var(--color-secondary);
  color: #23496D;
  font-family: var(--font-display);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  box-shadow: 0 4px 30px 0 rgba(35,73,109,.08);
  margin-bottom: 28px;
  font-size: 1.2rem;
  animation: bounceIn 1.1s both;
}

@keyframes bounceIn {
  0% {
    transform: scale(.8);
    opacity: 0.1;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  padding: 0;
  box-shadow: 0 4px 18px rgba(35,73,109,.06);
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
  position: relative;
}
.logo img {
  height: 46px;
  margin-right: 12px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #fff;
  font-size: 1.03rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background .19s, color .19s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.cta-button {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.08rem;
  border-radius: 25px;
  padding: 13px 34px;
  box-shadow: 0 4px 20px 0 rgba(35, 73, 109, 0.14);
  margin-left: 10px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: transform .17s, background .21s, color .17s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-hover);
  color: #23496D;
  transform: scale(1.04) rotate(-3deg);
  box-shadow: 0 8px 28px 0 rgba(232,198,75,0.20);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2.2rem;
  border-radius: 16px;
  border: none;
  padding: 7px 15px 7px 13px;
  margin-left: 14px;
  cursor: pointer;
  z-index: 30;
  transition: background .18s, color .15s, transform .14s;
}
.mobile-menu-toggle:active {
  background: var(--color-hover);
  transform: scale(0.96);
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: #fff;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .42s cubic-bezier(.7,1.5,.25,1), opacity .34s ease;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  font-size: 2.3rem;
  margin: 24px 24px 10px 0;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  transition: color .13s, transform .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff200;
  transform: scale(1.03);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding: 20px 36px 0 0;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.21rem;
  font-weight: bold;
  padding: 13px 22px 13px 0;
  transition: color .15s, background .15s, transform .16s;
  border-radius: 14px 0 0 14px;
  min-width: 120px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-primary);
  background: var(--color-secondary);
  transform: scale(1.04) skewX(-8deg);
}

@media (max-width: 767px) {
  .mobile-nav {
    padding: 12px 10px 0 0;
    gap: 11px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg,#E8C64B 0%, #F5F6FB 90%);
  background: #FFE36A;
  padding: 42px 0 54px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 12px 46px rgba(232,198,75,0.16);
  z-index: 10;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.85);
  border-radius: 32px;
  padding: 32px 38px;
  box-shadow: 0 6px 44px rgba(232,198,75,0.16);
  max-width: 520px;
  min-width: 240px;
  animation: bounceIn 1.2s both;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  text-shadow: 2px 8px 22px rgba(232,198,75,0.04);
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 17px;
}
.hero p {
  color: var(--color-primary);
  font-size: 1.22rem;
  font-family: var(--font-body);
  margin-bottom: 26px;
  font-weight: 500;
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(35,73,109,.06);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 16px 0 30px 0;
}
.pricing-table th, .pricing-table td {
  padding: 18px 24px;
  text-align: left;
}
.pricing-table th {
  background: #e8c64b21;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.10rem;
  font-weight: 700;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-accent);
  transition: background .18s;
}
.pricing-table tbody tr:hover {
  background: #fffddc;
}
.pricing-table td {
  color: var(--color-text);
  font-size: 1.05rem;
}

.pricing-disclaimer {
  margin-top: 9px;
  color: #7b7b84;
  font-size: .98rem;
  font-style: italic;
}

.factors-list, .steps-list, .standards-list {
  margin-bottom: 20px;
  font-size: 1.01rem;
  color: var(--color-text);
  padding-left: 15px;
  line-height: 1.6;
}

/* Timelines and Process */
.timeline img {
  display: block;
  max-width: 270px;
  margin: 0 auto;
  border-radius: 19px;
  box-shadow: 0 1px 8px 0 rgba(35,73,109,0.09);
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 42px 0 32px 0;
  border-radius: 44px 44px 0 0;
  margin-top: 64px;
  box-shadow: 0 -2px 18px 0 rgba(35,73,109,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
}
.footer-brand img {
  height: 40px;
  width: auto;
  border-radius: 12px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-top: 3px;
}
.footer-nav a {
  color: #eee;
  transition: color .19s, text-decoration .18s;
  text-underline-offset: 6px;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.96rem;
  color: #fdfff7;
  opacity: 0.82;
}
.footer-contact p {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
}

/* --- MAP --- */
.map-embed {
  border: 5px dashed var(--color-secondary);
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0 3px 24px #e8c64b18;
  padding: 12px;
  background: #fff;
  max-width: 420px;
  margin: 0 auto;
}

/* --- CONTACT DATA --- */
.contact-data p {
  margin-bottom: 16px;
}
.contact-data a {
  color: var(--color-primary);
  text-decoration: underline dotted;
}
.contact-data a:hover {
  color: var(--color-secondary);
}

/* --- MISC META STYLES --- */
ul, ol {
  margin-bottom: 20px;
  padding-left: 22px;
}

/* --- COOKIE CONSENT STYLES --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffde7;
  color: var(--color-primary);
  box-shadow: 0 -7px 32px 0 #e8c64b38;
  padding: 21px 28px;
  border-top: 3px solid var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9999;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
  animation: fadeIn .52s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  min-width: 100px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  border-radius: 15px;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 18px;
  margin-left: 0;
  border: none;
  box-shadow: 0 2px 8px #e8c64b18;
  margin-right: 2px;
  cursor: pointer;
  transition: background .18s, color .18s, transform .16s;
  font-weight: bold;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-hover);
  color: #23496D;
  transform: scale(1.04) skewX(-7deg);
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,73,109,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .33s;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 4px 44px 0 #23496d22;
  padding: 38px 32px 29px 32px;
  min-width: 300px;
  max-width: 420px;
  font-family: var(--font-body);
  text-align: left;
  animation: bounceIn .9s;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6e39312;
  padding: 12px 0;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-secondary);
  width: 24px;
  height: 24px;
  margin-right: 13px;
}
.cookie-category.essential label {
  opacity: 0.8;
  font-weight: bold;
  color: var(--color-primary);
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-secondary);
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .close-modal:hover {
  color: var(--color-primary);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .hero .container {
    gap: 10px;
  }
  .feature, .service-item, .testimonial-card, .card {
    min-width: 190px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 900px) {
  .hero .container {
    gap: 0;
  }
  .features-grid, .services-list, .testimonials, .content-grid {
    gap: 14px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .hero {
    border-radius: 0 0 25px 25px;
    min-height: 210px;
    padding: 24px 0 34px 0;
  }
  .hero .content-wrapper {
    padding: 23px 8px;
    min-width: 0;
    max-width: 99vw;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.16rem;
    margin-bottom: 15px;
  }
  .features-grid, .services-list, .testimonials, .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card, .feature, .testimonial-card, .service-item {
    padding: 19px 10px 19px 10px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    margin-bottom: 7px;
  }
  footer {
    border-radius: 14px 14px 0 0;
    margin-top: 30px;
    padding: 31px 0 22px 0;
  }
  .legal-text {
    padding: 15px 7px 11px 11px;
  }
}

/* --- PLAYFUL + DYNAMIC ENHANCEMENTS --- */
.feature::before {
  content: '';
  display: block;
  position: absolute;
  top: -23px;
  left: 10px;
  width: 37px;
  height: 22px;
  background: #e8c64b4c;
  border-radius: 12px 22px 12px 28px;
  z-index: 0;
  filter: blur(8px);
  animation: playfulBlob 7s infinite alternate ease-in-out;
}
@keyframes playfulBlob {
  to {
    left: 60px;
    transform: scale(1.23) rotate(19deg);
    background: #f5f6fb88;
  }
}
.faq-item {
  border-left: 8px solid #e8c64bab;
  border-radius: 14px;
}
.card, .feature, .testimonial-card, .service-item {
  box-shadow: 0 4px 24px var(--color-shadow), 0 2px 2px #ffc40009;
}

/* FUN FONTS w/ SWING EFFECTS for TITLES */
h1, h2 {
  letter-spacing: -0.5px;
  font-family: var(--font-display);
  font-weight: 900;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 18px #e8c64b28;
  animation: swingTitle .86s cubic-bezier(.75,-0.11,.47,1.41) both;
}
@keyframes swingTitle {
  0% { transform: rotate(-2deg) scale(.98); }
  60% { transform: rotate(2.4deg) scale(1.06); }
  80% { transform: rotate(-1.7deg) scale(1.01); }
  100% { transform: rotate(0) scale(1); }
}

.cta-button {
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.03em;
  font-size: 1.14rem;
  border: 2px solid #fff9;
  box-shadow: 0 3px 14px 0 #e8c64b31;
  position: relative;
  animation: ctaPulse 1.5s infinite alternate;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 3px 14px 0 #e8c64b31; }
  100% { box-shadow: 0 5px 28px 0 #e8c64bad; }
}

/* --- SPACING ENFORCEMENT --- */
.features-grid > *, .services-list > *, .testimonials > *, .content-grid > *, .blog-list > *, .faq-accordion > *, .card-container > * {
  margin-bottom: 20px !important;
}

/* --- UTILITIES --- */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

/* --- COLOR CONTRAST ENFORCEMENT --- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card .testimonial-author {
  background: #fff !important;
  color: #23496D !important;
}

/* --- END --- */