/* =======================================================
   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, 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,
main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-size: 100%;
    font: inherit;
    background: transparent;
    box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #19191A;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #19191A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #1B4965;
  outline-offset: 1px;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* ===============================
   COLOR PALETTE & THEME CLASSES
=============================== */
:root {
  --color-bg: #fff;
  --color-bg-alt: #F7F8FA;
  --color-black: #19191A;
  --color-primary: #1B1C20; /* Monochrome: replaces brand primary #1B4965 */
  --color-secondary: #EFEFEF; /* Lighter gray as secondary */
  --color-accent: #A0A0A0;
  --color-brand: #1B4965;
  --color-brand-highlight: #CAE9FF;
  --color-yellow: #F6D55C;
  --color-white: #fff;
  --box-radius: 12px;
  --shadow-sm: 0 2px 8px 0 rgba(25,25,26,0.06);
  --shadow-md: 0 6px 24px 0 rgba(25,25,26,0.14);
}

/* =====================
   TYPOGRAPHY
===================== */
h1, .display {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #19191A;
  font-size: 2.2rem;
  line-height: 1.19;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  margin-top: 0;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1B1C20;
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1B1C20;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #292929;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232325;
  margin-bottom: 10px;
}
blockquote {
  font-size: 1.18rem;
  color: #19191A;
  font-style: italic;
  background: #fff;
  border-left: 4px solid #222;
  padding: 18px 24px;
  margin: 0 0 10px 0;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-sm);
}
cite {
  font-style: normal;
  color: #4B4B4B;
  font-size: 1rem;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.4px;
}
a {
  color: #19191A;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover {
  color: #1B4965;
}

/* =============================
   CONTAINER & LAYOUT
============================= */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.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: var(--box-radius);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.02);
}

.content-grid, .feature-grid, .courses-teaser-grid, .values-grid, .blog-post-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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafd;
  color: #19191A;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid #E1E1E3;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
}

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

.values-highlights, .values-grid, .course-offerings-list, .skills-gained-list, .faq-list, .success-stats, .event-impact-stats, .history-timeline, .core-principles, .feature-list, .upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.navbar, .main-nav, .footer-nav, .mobile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-nav {
  gap: 24px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 0 0;
}
.footer-brand {
  margin-top: 18px;
  font-size: 0.96rem;
  color: #A0A0A0;
  letter-spacing: 0.6px;
}

/* ===============================
   HEADER / LOGO / MAIN NAV
=============================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  min-height: 70px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  gap: 24px;
  margin-left: 44px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #292929;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1B4965;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.17s, box-shadow 0.15s, transform 0.18s;
}
.btn-primary {
  background: #fff;
  color: #19191A;
  border: 2px solid #1B4965;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1B4965;
  color: #fff;
  border-color: #1B4965;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #1B4965;
  color: #fff;
  border: 2px solid #1B4965;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #1B4965;
  border-color: #1B4965;
  transform: translateY(-2px) scale(1.03);
}

/* ===============
   HERO SECTION
================ */
.hero {
  background: linear-gradient(90deg, #fff 60%, #E6E9F0 100%);
  padding: 68px 0 88px 0;
  margin-bottom: 64px;
  box-shadow: 0 2px 12px 0 rgba(25,25,26,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
}
.subheadline {
  font-size: 1.19rem;
  color: #333;
  margin-bottom: 26px;
}

/* =====================
   FEATURES & GRIDS
===================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 28px;
  column-gap: 24px;
  margin-top: 22px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 22px 26px 22px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 12px;
  border: 1px solid #E1E1E5;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 18px;
  filter: grayscale(100%) contrast(1.3);
}
.feature-grid h3 {
  margin-bottom: 8px;
}

.values-grid li, .courses-teaser-grid li, .blog-post {
  background: #f7f8fa;
  border-radius: var(--box-radius);
  padding: 26px 20px 20px 20px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E0E0E2;
  transition: box-shadow 0.19s, transform 0.17s;
}
.values-grid li:hover, .courses-teaser-grid li:hover, .blog-post:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.025);
}

/* =====================
   BLOG LIST & FILTERS
===================== */
.blog-post-grid {
  gap: 24px;
}
.blog-post {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.category-filters {
  margin: 18px 0 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.category-filters a {
  font-family: 'Montserrat', sans-serif;
  border-bottom: 2px solid transparent;
  color: #222;
  font-size: 1rem;
  padding: 2px 10px;
}
.category-filters a.active, .category-filters a:hover {
  border-bottom: 2px solid #19191A;
  color: #1B4965;
}
.top-posts-highlight {
  background: #EFEFEF;
  border-radius: var(--box-radius);
  padding: 18px 20px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

/* =====================
  COURSE & EVENT LISTS
===================== */
.course-offerings-list > li, .skills-gained-list > li, .faq-list > li, .upcoming-events-list > li {
  background: #F7F7F8;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  font-size: 1.09rem;
  border: 1px solid #E5E6E7;
  transition: box-shadow 0.16s, transform 0.14s;
}
.course-offerings-list > li:hover, .upcoming-events-list > li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px) scale(1.018);
}
.course-meta {
  margin-top: 10px;
  color: #888;
  font-size: 0.98rem;
}

.event-impact-stats, .success-stats {
  flex-direction: row;
  gap: 38px;
  justify-content: flex-start;
  margin-top: 14px;
  flex-wrap: wrap;
}
.event-impact-stats > li, .success-stats > li {
  font-weight: 600;
  font-size: 1.07rem;
  color: #19191A;
  background: #F7F8FA;
  border-radius: 7px;
  padding: 11px 18px;
  margin-bottom: 10px;
  min-width: 160px;
  text-align: center;
}

/* =====================
   CTA BANNER SECTION
===================== */
.cta-banner, .blog-cta-banner {
  padding: 54px 0 54px 0;
  border-radius: var(--box-radius);
  margin-bottom: 54px;
}
.cta-banner .btn-secondary, .blog-cta-banner .btn-secondary {
  margin-top: 16px;
  background: #fff;
  color: #19191A;
  border: 2px solid #fff;
}
.cta-banner .btn-secondary:hover, .blog-cta-banner .btn-secondary:hover {
  background: #19191A;
  color: #fff;
}


/* =====================
   FOOTER
===================== */
footer {
  background: #1B1C20;
  color: #fff;
  padding: 40px 0 20px 0;
  border-top: 2px solid #222;
  margin-top: 32px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  opacity: 0.86;
  transition: opacity 0.17s;
}
.footer-nav a:hover {
  opacity: 1;
}
.footer-contact {
  color: #E0E1E5;
  font-size: 1rem;
  margin-top: 16px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
  filter: grayscale(100%) brightness(1.6);
}
.footer-brand {
  color: #b0b0b2;
  margin-top: 24px;
  font-size: 0.97rem;
}

/* ===============
   ADDRESS MAP
================ */
.address-map {
  background: #F7F8FA;
  border-radius: var(--box-radius);
  padding: 15px 20px;
  margin: 18px 0 10px 0;
  border: 1px solid #ECECF0;
  font-size: 1rem;
}

/* ================================
   MOBILE MENU (BURGER NAV)
================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 20px;
  z-index: 102;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #1B4965;
  font-size: 2rem;
  border: 2px solid #1B4965;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.15s;
}
.mobile-menu-toggle:active {
  background: #f3f3f9;
  box-shadow: 0 0 0 2px #1B4965 inset;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  z-index: 3000;
  box-shadow: 0 2px 40px 0 rgba(30,30,35,0.29);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1), box-shadow 0.2s;
  padding: 34px 24px 60px 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #1B4965;
  color: #1B4965;
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f3f3f9;
}
.mobile-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 34px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #19191A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(29,49,101,0.09);
  width: 100%;
  display: block;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: #1B4965;
}

/* ============================
   COOKIE CONSENT BANNER
============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4500;
  background: #19191A;
  color: #fff;
  box-shadow: 0 -2px 24px 0 rgba(30,33,44,0.12);
  padding: 22px 14px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  border-top: 2px solid #222;
}
.cookie-consent-banner .cookie-banner-content {
  flex: 1 1 250px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  background: #fff;
  color: #19191A;
  border: 2px solid #fff;
  border-radius: 99px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 9px 28px;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.16s, border 0.14s;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #19191A;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.reject {
  background: #EFEFEF;
  color: #2C2C2C;
  border: 2px solid #e0e0e0;
}
.cookie-btn.reject:hover {
  background: #19191A;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-settings-btn {
  background: #1B4965;
  color: #fff;
  border: 2px solid #1B4965;
}
.cookie-settings-btn:hover {
  background: #fff;
  color: #1B4965;
}
/* Cookie preferences modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(25,25,26,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.26s;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B1C20;
  border-radius: 14px;
  box-shadow: 0 20px 48px 0 rgba(30,30,35,0.22);
  max-width: 480px;
  width: 90%;
  padding: 38px 28px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: cookieSlideUp 0.32s cubic-bezier(.22,1.15,.36,1);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(80px) scale(.97); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #1B4965;
  margin-bottom: 10px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.06rem;
  background: #F7F8FA;
  padding: 13px 20px;
  border-radius: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #DDDFE3;
  border-radius: 33px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #1B4965;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal-btns {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #1B4965;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #1B4965;
  transition: background 0.17s;
}
.cookie-modal .close-modal:hover {
  background: #fff;
  color: #1B4965;
}

/* =====================
   RESPONSIVE DESIGN
===================== */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
  .main-nav {
    gap: 14px;
    font-size: 1rem;
  }
}
@media (max-width: 860px) {
  .container {
    max-width: 760px;
    padding: 0 12px;
  }
  .content-grid, .feature-grid, .courses-teaser-grid, .values-grid, .blog-post-grid {
    gap: 14px;
  }
  .event-impact-stats, .success-stats {
    gap: 20px;
  }
  header .container {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  /* Mobile nav */
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    padding: 14px 10px;
  }
  /* Section spacing */
  .section {
    margin-bottom: 32px;
    padding: 20px 7px;
  }
  .hero {
    padding: 32px 0 40px 0;
    margin-bottom: 32px;
  }
  .cta-banner, .blog-cta-banner {
    border-radius: 0px;
    padding: 32px 0 32px 0;
    margin-bottom: 32px;
  }
  /* Layout stacks vertically */
  .content-grid, .feature-grid, .courses-teaser-grid, .values-grid, .blog-post-grid {
    flex-direction: column;
    gap: 14px;
  }
  .event-impact-stats, .success-stats {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-contact {
    gap: 6px;
    font-size: 0.98rem;
  }
  .footer-brand {
    font-size: 0.91rem;
    margin-top: 12px;
  }
  .testimonial-card {
    margin-bottom: 18px;
    padding: 16px;
    font-size: 1rem;
  }
  .about-preview ul.values-highlights, .values-grid, .courses-teaser-grid {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .address-map {
    padding: 8px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 540px) {
  h1, .display {
    font-size: 1.34rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.16rem;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 1.02rem;
    margin-bottom: 7px;
  }
  .container {
    padding: 0 3px;
  }
  .cta-banner, .blog-cta-banner, .hero {
    border-radius: 0;
    padding: 12px 0;
  }
  .testimonial-card, .values-grid li, .feature-grid li, .courses-teaser-grid li, .blog-post {
    padding: 11px 8px 12px 8px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 17px 3vw 18px 3vw;
  }
  .cookie-consent-banner {
    padding: 8px 3vw 10px 3vw;
    font-size: 1rem;
    gap: 8px;
  }
  .btn-primary, .btn-secondary {
    padding: 8px 16px;
    font-size: 0.99rem;
  }
}

/* =====================
   ANIMATIONS & EFFECTS
===================== */
.btn-primary, .btn-secondary, .cookie-btn, .cookie-settings-btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.19s, transform 0.16s, border 0.12s;
}
.card:hover, .values-grid li:hover, .courses-teaser-grid li:hover, .blog-post:hover {
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  transition: box-shadow 0.22s;
}

/* =====================
   ACCESSIBILITY (HIGH CONTRAST)
===================== */
.testimonial-card, .testimonial-card blockquote {
  color: #19191A !important;
  background: #fff !important;
}
.testimonial-card cite {
  color: #444 !important;
}

/* Utility styles */
.muted, .faq-list strong {
  color: #363636;
}

/* ===============
   END OF CSS
================ */
