/* ========== CSS RESET & BASE ========== */
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-color: #F7F8FA;
  color: #192231;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========== FONT IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;700&display=swap');

:root {
  --color-primary: #192231;
  --color-secondary: #C7A46F;
  --color-accent: #E7ECEF;
  --color-bg: #F7F8FA;
  --color-gray: #5C677D;
  --color-light: #FFFFFF;
  --color-error: #cb1c3e;
  --radius: 16px;
  --shadow-card: 0 2px 14px 0 rgba(25,34,49,0.13);
  --shadow-hover: 0 4px 24px 2px rgba(25,34,49,0.12);
  --transition-fast: 0.18s cubic-bezier(.5,1.5,.45,1);
  --transition-smooth: 0.35s cubic-bezier(.25,.46,.45,.94);
}

/* ========== LAYOUT - CONTAINER, FLEX UTILS ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 850px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg, #eef1f4  65%, #e6e3d9 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
  .container, .content-wrapper {
    padding: 0 8px;
  }
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-top: 0.4em;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
p, ul, ol, li, dl, dt, dd {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: bold;
}
a {
  color: var(--color-secondary);
  font-weight: 700;
  transition: color var(--transition-fast);
}
a:hover, a:focus {
  color: #a98137;
  text-decoration: underline;
}

ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
}
dt {
  font-weight: 600;
  margin-bottom: 6px;
}
dd {
  margin-bottom: 15px;
  padding-left: 10px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: linear-gradient(90deg, #e7ecef 10%, #fff 90%);
  box-shadow: 0 0 7px 0 rgba(25,34,49,0.10);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px 20px;
  gap: 18px;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 4px 2px;
  transition: color var(--transition-fast);
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: 4px auto 0;
  background: #C7A46F;
  transition: width 0.2s cubic-bezier(.5,1.5,.45,1);
}
header nav a.active, header nav a:hover, header nav a:focus {
  color: #a98137;
}
header nav a:hover:after,header nav a:focus:after {
  width: 60%;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 2.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-light);
  background: linear-gradient(100deg, #C7A46F 0%, #bfa760 100%);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px 0 rgba(199,164,111,0.12);
  border: none;
  transition: background var(--transition-smooth), box-shadow var(--transition-fast), transform 0.13s;
  cursor: pointer;
  outline: none;
  margin-left: 24px;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg,#bfa760 10%,#C7A46F 95%);
  color: #fff7ed;
  box-shadow: 0 4px 18px 1px rgba(199,164,111,0.23);
  transform: translateY(-1px) scale(1.02);
}
@media (max-width: 950px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    gap: 14px;
  }
  .cta-btn {
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 13px 8px 10px 8px;
  }
  nav {
    display: none !important;
  }
  .cta-btn {
    display: none;
  }
}

/* ========== MOBILE BURGER MENU ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: transparent;
  z-index: 29;
  padding: 6px 10px;
  border-radius: 12px;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: rgba(25,34,49,0.07);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 24px;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(130deg, #e7ecef 80%, #e6e3d9 100%);
  box-shadow: 0 2px 25px 3px rgba(25,34,49, 0.20);
  z-index: 120;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.45,1.25,.45,1);
  padding-top: 25px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 16px;
  margin-bottom: 7px;
  font-size: 2rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 12px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.19s;
}
.mobile-menu-close:focus {
  background: rgba(25,34,49,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
}
.mobile-nav a {
  padding: 16px 32px 16px 30px;
  width: 100%;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  border-left: 5px solid transparent;
  transition: background .18s, color .18s, border-left .18s;
  border-radius: 0 25px 25px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C7A46F22;
  color: var(--color-secondary);
  border-left: 5px solid var(--color-secondary);
}
@media (max-width: 350px) {
  .mobile-nav a {
    font-size: 0.95rem;
    padding: 14px 12px 14px 10px;
  }
}

/* ========== MAIN & FLEX LAYOUTS ========== */
.features-grid,
.opportunity-list, .insights-articles-list,
.trend-highlights ul, .market-statistics ul,
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow var(--transition-fast), transform 0.16s;
}
.card:hover, .card:focus {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 950px) {
  .features-grid, .content-grid {
    gap: 12px;
  }
  .card {
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card {
    margin-bottom: 10px;
    padding: 13px 10px;
  }
}

/* Feature items (home/benefits/why us) */
.features-grid > div,
.feature-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 210px;
  transition: box-shadow var(--transition-fast), transform 0.14s;
}
.features-grid > div:hover,
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.018);
}
.features-grid img, .feature-item img {
  height: 38px;
  width: auto;
}
.features-grid h3, .feature-item h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  color: var(--color-secondary);
}
.features-grid p, .feature-item p {
  margin-bottom: 0;
  color: var(--color-gray);
  font-size: 0.98rem;
}

/* Process Timeline (How it works) */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 24px 0 0 0;
  width: 100%;
}
.process-timeline li {
  flex: 1 1 210px;
  min-width: 180px;
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 12px;
  margin-bottom: 12px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-fast), transform 0.13s;
}
.process-timeline li:hover {
  box-shadow: 0 3px 15px 2px #cab37c33;
  transform: scale(1.015);
}
.process-timeline img {
  width: 40px; height: 40px;
  margin-bottom: 9px;
}
.process-timeline strong {
  color: var(--color-secondary);
  margin-bottom: 0;
}
@media (max-width: 950px) {
  .process-timeline {
    gap: 12px;
  }
  .process-timeline li {
    padding: 13px 5px;
  }
}
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 8px;
  }
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.feature-checklist img {
  width: 20px; height: 20px;
}

/* Opportunity Table (Investment Opportunities) */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 20px 0 0 0;
  font-family: 'Lato', Arial, sans-serif;
}
thead {
  background: #C7A46F11;
}
th, td {
  text-align: left;
  padding: 15px 10px;
  border-bottom: 1px solid #E7ECEF;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-secondary);
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 10px 4px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0;
}
.testimonial-card {
  flex: 1 1 270px;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-fast), transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: var(--shadow-hover);
  transform: scale(1.016);
}
.testimonial-content {
  flex: 1 1 0%;
  font-size: 1.08rem;
  color: #212d37;
  line-height: 1.5;
}
.testimonial-meta {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-secondary);
  font-weight: 700;
  margin-left: 7px;
}
@media (max-width: 880px) {
  .testimonial-list {
    gap: 16px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}
@media (max-width: 600px) {
  .testimonial-list {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    min-width: unset;
  }
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(90deg, #e7ecef 0%, #ece5d4 100%);
  padding: 36px 0 25px 0;
  margin-top: 65px;
  box-shadow: 0 -1px 10px 0 #0001;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 3px;
}
footer nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
footer img {
  height: 38px;
}
footer p {
  margin: 2px 0 0 0;
  color: #435368;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  footer nav {
    gap: 12px;
  }
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-secondary);
  margin-bottom: 4px;
  margin-top: 12px;
}
.faq-list dd {
  font-size: 1rem;
  color: var(--color-primary);
  margin-left: 8px;
  margin-bottom: 2px;
}
.quick-links-info h3 {
  margin-top: 18px;
}
.quick-links-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-links-info li a {
  background: #e7ecef;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 4px 14px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background .16s;
}
.quick-links-info li a:hover {
  background: #c7a46f11;
  color: var(--color-secondary);
}

/* ========== CONTACT PAGE & FORMS ========== */
.contact-details {
  display: flex;
  gap: 36px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.info-list p {
  margin-bottom: 5px;
  font-size: 0.97rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.visit-map-snippet {
  margin-top: 12px;
  font-size: 1.05rem;
  background: #e7ecef;
  color: #2f3c51;
  border-radius: 9px;
  padding: 10px 14px;
  box-shadow: 0 1px 4px 0 #c7a46f22;
  font-style: italic;
}
.booking-cta {
  margin-top: 18px;
}
@media (max-width: 700px) {
  .contact-details {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== MODALS & UTILS ========== */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,34,49, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
.modal.hidden {
  pointer-events: none;
  opacity: 0;
}
.modal-content {
  background: #fff;
  padding: 34px 32px 26px 32px;
  border-radius: var(--radius);
  box-shadow: 0 6px 40px #19223122;
  width: 94vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalup 0.44s cubic-bezier(.5,.9,.45,1);
  position: relative;
}
@keyframes modalup {
  from { transform: translateY(60px) scale(.94); opacity:.4; }
  to { transform: none; opacity:1; }
}
/* Modal close */
.modal-close {
  position: absolute; right: 14px; top: 11px;
  font-size: 1.55rem;
  color: #444;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 3px 7px;
  cursor: pointer;
  transition: background .16s;
}
.modal-close:hover {
  background: #e7ecef;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(95deg,#fff 80%, #e7ecef 100%);
  color: #2b3440;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 22px 24px 16px 24px;
  box-shadow: 0 -2px 22px 3px #19223116;
  font-size: 1rem;
  z-index: 260;
  animation: cookie-slide-up 0.6s cubic-bezier(.17,.67,.74,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(60px); opacity:.5; }
  to { transform: none; opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  max-width: 500px;
  color: #253444;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 2px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 4px 0 #c7a46f18;
  cursor: pointer;
  transition: background .16s, color .13s;
}
.cookie-btn.accept {
  background: linear-gradient(100deg, #C7A46F 0%, #bfa760 100%);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(100deg,#bfa760 10%,#C7A46F 95%);
  color: #fff7ed;
}
.cookie-btn.reject {
  background: #d4dadc;
  color: #262828;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #adadad;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #767e8e;
  border: 1px solid #e7ecef;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e7ecef;
  color: var(--color-primary);
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.97rem;
    padding: 16px 7px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

.cookie-modal-list {
  margin: 16px 0 12px 0;
  padding: 0;
  width: 100%;
}
.cookie-modal-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.cookie-modal-list strong {
  color: var(--color-secondary);
  margin-right: 7px;
}
/* Cookie category toggles */
.cookie-category-toggle {
  display: inline-block;
  width: 44px; height: 24px;
  background: #e2e6ea;
  border-radius: 18px;
  position: relative;
  margin-left: 10px;
  vertical-align: middle;
  transition: background .18s;
}
.cookie-category-toggle input {
  visibility: hidden; position: absolute;
}
.cookie-category-toggle .toggle-slider {
  position: absolute; left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #678;
  transition: left 0.19s cubic-bezier(.5,1.5,.45,1), background .14s;
}
.cookie-category-toggle input:checked + .toggle-slider {
  left: 22px;
  background: #C7A46F;
}
.cookie-category-toggle.disabled {
  pointer-events: none;
  background: #e7ecef;
}

/* ========== BUTTONS ========== */
button, .cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, transform 0.11s;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ========== ANIMATIONS & TRANSITIONS ========== */
.card, .features-grid > div, .testimonial-card, .process-timeline li {
  transition: box-shadow 0.16s, transform 0.13s;
}
.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.13s, box-shadow 0.16s, transform 0.14s;
}

/* Misc elements */
.team-highlight {
  margin-top: 22px;
  background: #e7ecef;
  border-radius: 12px;
  padding: 18px 14px;
  box-shadow: 0 1px 4px 0 #19223110;
  color: #36373c;
}
.trust-indicators ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-indicators li {
  background: #fff;
  border-radius: 8px;
  padding: 4px 13px;
  box-shadow: 0 1px 4px 0 #C7A46F22;
  color: #2e2b24;
  font-weight: 600;
  font-size: 0.97rem;
}

/* Responsive utility classes */
@media (max-width: 450px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1rem; }
  .cta-btn { font-size: 0.97rem; padding: 0.7em 1.6em; }
}

/* ========== VISUAL MODERN GRADIENT ACCENTS ========== */
.section {
  /* already applied linear gradient above */
}
.card, .features-grid > div, .feature-item, .testimonial-card, .process-timeline li {
  /* Optionally add subtle gradient shadow border */
  border: 1px solid rgba(199,164,111,0.05);
}
hr {
  border: none;
  border-top: 1px solid #e7ecef;
  margin: 28px 0;
}

/* ========== OVERRIDES FOR DARK TEXT IN TESTIMONIALS ========== */
.testimonial-card, .testimonial-content, .testimonial-meta {
  color: #1B2334 !important;
}

/* Accessibility: force high contrast in testimonials/reviews */
.testimonial-card p, .testimonial-content, .testimonial-meta {
  color: #17213a !important;
  background: none;
}

/* ========== END OF FILE ========== */
