/* =========================================================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F5F7FA;
  color: #1D2734;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #B79A4C;
  outline: 0;
}
ul, ol {
  padding-left: 20px;  
  margin-bottom: 1.5em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #003366;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, address {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #1d2734;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.65;
}
strong {
  font-weight: 700;
  color: #003366;
}

/* =========================================================
   LAYOUT WRAPPERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
}
.text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,37,102,0.03);
  padding: 32px 24px;
  margin-bottom: 60px;
}
/* Section spacing as required */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,37,102,0.02);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  justify-content: flex-start;
}
.main-nav a {
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F7FA;
  color: #B79A4C;
}
.main-nav .cta-primary {
  background: #003366;
  color: #fff !important;
  font-weight: 700;
  padding: 8px 22px;
  margin-left: 16px;
  border-radius: 6px;
  border: none;
  transition: background 0.16s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 1px 8px rgba(0,37,102,0.07);
}
.main-nav .cta-primary:hover, 
.main-nav .cta-primary:focus {
  background: #B79A4C;
  color: #fff !important;
  box-shadow: 0 2px 14px rgba(183,154,76,0.09);
}
/* Burger button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #003366;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  border: 1px solid #f0f0f6;
  transition: background 0.22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5F7FA;
  color: #B79A4C;
}
/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px rgba(0,37,102,0.09);
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.87,0.08,0.21,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 24px 0 0;
  align-self: flex-end;
  font-size: 2rem;
  color: #003366;
  background: none;
  border-radius: 6px;
  transition: background 0.2s;
  width: 44px;
  height: 44px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5F7FA;
  color: #B79A4C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 30px 34px;
}
.mobile-nav a {
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 8px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F7FA;
  color: #B79A4C;
}
/* Hide nav on mobile, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================================================
   CTA BUTTONS
   ========================================================= */
.cta-primary {
  display: inline-block;
  background: #003366;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0,37,102,0.09);
  font-size: 1rem;
  border: none;
  transition: background 0.17s, color 0.14s, box-shadow 0.18s, transform 0.13s;
  text-align: center;
  letter-spacing: 0.015em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B79A4C;
  color: #fff;
  box-shadow: 0 2px 22px rgba(183,154,76,0.13);
  transform: translateY(-1px) scale(1.025);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: #003366;
  border: 2px solid #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 18px;
  box-shadow: none;
  transition: background 0.16s, color 0.16s, border-color 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #003366;
  color: #fff;
  border-color: #003366;
}

/* =========================================================
   FLEXBOX LAYOUT PATTERNS
   ========================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .service-cards, .testimonials, .team-profiles, .content-grid, .features, .feature-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,37,102,0.06);
  padding: 28px 24px;
  gap: 16px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(0,37,102,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 370px;
}
.testimonial-card p {
  color: #283546;
  font-size: 1.09rem;
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #003366;
  opacity: 0.88;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Feature and service grids */
.feature-grid, .feature-icons {
  gap: 24px;
}
.feature-grid li, .feature-icons li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(0,37,102,0.07);
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 225px;
  max-width: 340px;
  margin-bottom: 20px;
}
.feature-grid img, .feature-icons img {
  width: 36px;
  height: 36px;
}

.service-card,
.service-card-analysis {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,37,102,0.07);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 230px;
  max-width: 338px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.service-card:hover, .service-card:focus, .service-card-analysis:hover {
  box-shadow: 0 8px 32px rgba(183,154,76,0.09);
  transform: translateY(-4px) scale(1.02);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B79A4C;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 14px;
}

/* Card containers and multi-column wrappers */
@media (max-width: 900px) {
  .feature-grid, .service-cards, .testimonials, .team-profiles {
    flex-direction: column;
    gap: 20px;
  }
}

/* Steps Timeline, Table, Other Lists */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.steps-timeline li {
  list-style-position: inside;
  margin-bottom: 6px;
}

.neighborhood-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,37,102,0.04);
}
.neighborhood-comparison-table th, .neighborhood-comparison-table td {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  padding: 18px 10px;
  border-bottom: 1px solid #F5F7FA;
  text-align: left;
  font-size: 1rem;
}
.neighborhood-comparison-table th {
  background: #F5F7FA;
  color: #003366;
  font-weight: 600;
}

/****
FOOTER & FOOTER NAVIGATION
****/
footer {
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,37,102,0.03);
  padding: 44px 0 30px 0;
}
footer .container {
  padding-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  opacity: 0.87;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.16s;
}
.footer-nav a:hover,.footer-nav a:focus {
  background: #F5F7FA;
  color: #B79A4C;
}
.footer-contact-details {
  margin: 10px 0 10px 0;
  font-size: 0.96rem;
}
.footer-contact-details a {
  color: #003366;
  text-decoration: underline dotted;
  opacity: 0.9;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
  margin: 20px 0 16px 0;
}
.footer-legal-links a {
  color: #475D75;
  opacity: 0.7;
  transition: color 0.14s, opacity 0.14s;
}
.footer-legal-links a:hover { 
  color: #003366; opacity: 1; 
}
.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.footer-social-icons img {
  width: 28px; height: 28px;
  opacity: 0.85;
  transition: opacity 0.13s, transform 0.14s;
  border-radius: 5px;
}
.footer-social-icons img:hover {
  opacity: 1;
  transform: scale(1.09);
}

/****
  FAQ, ACCORDION, DETAILS
****/
.accordion-faq details {
  margin-bottom: 14px;
  border-radius: 8px;
  background: #F5F7FA;
  box-shadow: 0 2px 8px rgba(0,37,102,0.03);
  padding: 0;
  transition: box-shadow 0.12s;
}
.accordion-faq summary {
  color: #003366;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 18px;
  cursor: pointer;
  user-select: none;
}
.accordion-faq details[open] {
  box-shadow: 0 3px 16px rgba(183,154,76,0.09);
}
.accordion-faq details[open] summary {
  color: #B79A4C;
}
.accordion-faq details > div {
  padding: 12px 18px 18px 18px;
  color: #283546;
  background: #fff;
  border-top: 1px solid #F5F7FA;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
}

/****
  ADDITIONAL CONTENT STYLES
****/
.contact-info-block {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(0,37,102,0.07);
  padding: 30px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.contact-details, .location-map {
  margin-bottom: 20px;
}
.quick-guide-links, .quick-response-info {
  margin-top: 8px;
}
.quick-guide-links a {
  font-size: 1rem;
  color: #003366;
  border-bottom: 1px dotted #003366;
  opacity: 0.92;
  transition: color 0.14s;
}
.quick-guide-links a:hover {
  color: #B79A4C;
}
/* Rating summary bar */
.rating-summary {
  display: flex;
  align-items: center;
  background: #F5F7FA;
  border-radius: 7px;
  padding: 12px 16px;
  margin-top: 16px;
  box-shadow: 0 1px 8px rgba(0,37,102,0.03);
  font-size: 1rem;
}
.rating-summary img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
@media (max-width: 700px) {
  .rating-summary {
    margin-top: 12px;
    font-size: 0.98rem;
  }
}
/****
  TABLES
****/
table {
  border-collapse: collapse;
}
th, td {
  padding: 10px;
  border: 0;
}
/****
  MISC components (snippets, boxes)
****/
.facts-box, .success-story, .resident-story, .brand-story {
  background: #F5F7FA;
  border-radius: 10px;
  padding: 22px 18px;
  margin: 12px 0 16px 0;
  color: #1D2734;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(0,37,102,0.025);
}
.facts-box strong, .success-story strong, .resident-story strong, .brand-story strong {
  color: #003366;
}
.key-criteria-grid {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .key-criteria-grid {
    flex-direction: column;
    gap: 13px;
  }
}
.values-grid, .statistical-highlights, .expertise-highlights, .service-success-snippets {
  margin: 16px 0 0 0;
}
.values-grid ul, .statistical-highlights ul, .expertise-highlights ul, .service-success-snippets ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 0;
}
.partnership-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 18px 0 0 0;
}
.partnership-logos img {
  width: 38px;
  height: 38px;
  filter: grayscale(35%);
  opacity: 0.94;
  transition: filter 0.13s, opacity 0.14s, transform 0.14s;
}
.partnership-logos img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

/****
  THANK YOU / NEXT STEPS / MODULAR MSG
****/
.thankyou-message {
  background: #F5F7FA;
  border-radius: 11px;
  padding: 22px;
  color: #003366;
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.next-steps-info ul {
  margin-top: 12px;
}

/****
  RESPONSIVE SETTINGS
****/
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 740px) {
  section,
  .text-section {
    padding: 22px 10px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.02rem; }
  .service-card, .service-card-analysis, .testimonial-card,
  .feature-grid li, .feature-icons li {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px;
  }
}
@media (max-width: 530px) {
  .content-wrapper {
    padding: 0;
    gap: 9px;
  }
  .text-section {
    padding: 10px 4px;
    border-radius: 7px;
  }
  .facts-box, .thankyou-message, .contact-info-block {
    padding: 12px 7px;
    border-radius: 7px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
  section {
    padding: 22px 2px;
    margin-bottom: 32px;
  }
  .main-nav .cta-primary, .cta-primary, .cta-secondary {
    font-size: 0.98rem;
    padding: 8px 16px;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #003366;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 -2px 28px rgba(0,37,102,0.09);
  padding: 20px 14px 20px 18px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.34s, transform 0.33s cubic-bezier(0.7,0.15,0.2,1);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  transition: background 0.14s, color 0.15s, box-shadow 0.13s;
  margin-left: 0;
}
.cookie-consent-banner .accept {
  background: #003366;
  color: #fff;
  margin-right: 4px;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #B79A4C;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #F5F7FA;
  color: #003366;
  border: 1px solid #003366;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #003366;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #003366;
  text-decoration: underline;
  padding: 9px 15px;
}
.cookie-consent-banner .settings:hover {
  color: #B79A4C;
  text-decoration: none;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    padding: 18px 5px 18px 8px;
  }
  .cookie-consent-banner .cookie-buttons {
    width: 100%;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 40%) scale(0.96);
  min-width: 330px;
  max-width: 97vw;
  background: #fff;
  z-index: 2100;
  padding: 34px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 42px rgba(0,37,102,0.15);
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.33s, transform 0.35s cubic-bezier(0.73,0.12,0.16,1);
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 9px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: #003366;
  margin-left: 0;
  font-size: 1.03rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #003366;
  width: 20px;
  height: 20px;
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #666;
  margin-left: 2px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #003366;
  font-size: 1.19rem;
  font-weight: 600;
  border: none;
  position: absolute;
  right: 16px;
  top: 15px;
  cursor: pointer;
  padding: 2px 7px;
}
.cookie-modal .accept, .cookie-modal .reject {
  padding: 9px 20px;
}
.cookie-modal .accept {
  background: #003366;
  color: #fff;
  border: none;
}
.cookie-modal .accept:hover {
  background: #B79A4C;
}
.cookie-modal .reject {
  background: #f5f7fa;
  color: #003366;
  border: 1px solid #003366;
}
.cookie-modal .reject:hover {
  background: #003366;
  color: #fff;
}
@media (max-width:430px) {
  .cookie-modal {
    min-width: 0;
    padding: 14px 7px 21px 7px;
    font-size: 0.97rem;
    border-radius: 8px;
  }
  .cookie-modal .close-modal {
    right: 5px;
    top: 4px;
  }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }

/* High contrast for testimonial text on light backgrounds */
.testimonial-card p, .testimonial-card span, .testimonial-card strong {
  color: #1D2734 !important;
  background: none;
}
.testimonial-card {
  background: #fff !important;
  color: #1D2734 !important;
}
.service-cards {
  flex-wrap: nowrap;
}
/* ---
END OF MINIMALIST FLEXBOX CSS FOR "WOHNTRAUM DEUTSCHLAND"
--- */
