/* --- 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, 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0ECEC;
  color: #243746;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  /* Energy! */
  background-color: #F0ECEC;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1977F2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F76163;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* --- BRAND COLORS (VIBRANT+ENERGETIC EXTENSION) --- */
:root {
  --primary: #243746;
  --secondary: #7091A1;
  --accent: #F0ECEC;
  --vibrant1: #F76163;
  --vibrant2: #1977F2;
  --vibrant3: #FFD600;
  --vibrant4: #39CEA9;
  --neutral-light: #FFFFFF;
  --neutral-dark: #141921;
  --card-shadow: 0 4px 20px rgba(39, 62, 100,0.13);
  --transition: 0.22s cubic-bezier(.6,-0.28,.74,.05);
}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: var(--primary);
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin: 1.4rem 0 1rem 0; }
h3 { font-size: 1.4rem; margin: 1.2rem 0 0.6rem; }
h4 { font-size: 1.1rem; margin: 1rem 0 0.5rem; }

p, ul, ol, dl, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}
strong, b {
  font-weight: 800;
}

/* --- SPACING UTILS & CONTAINERS--- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: var(--neutral-light);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  margin-bottom: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 2px 8px rgba(36,55,70,0.07);
}
header > a > img {
  height: 42px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  color: var(--neutral-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover,
header nav a:focus {
  background: var(--vibrant1);
  color: var(--neutral-light);
}
.cta-button {
  background: linear-gradient(90deg, var(--vibrant2) 55%, var(--vibrant1) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 0.72em 1.4em;
  margin-left: 22px;
  box-shadow: 0 3px 10px 0 rgba(51,100,255,0.18);
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--vibrant1) 40%, var(--vibrant2) 100%);
  box-shadow: 0 6px 28px 0 rgba(246,97,99,0.25);
  transform: translateY(-2px) scale(1.045);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--vibrant1);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  cursor: pointer;
  border: none;
  z-index: 1401;
  transition: background var(--transition), transform var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--vibrant2);
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36, 55, 70, 0.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5,1.4,.31,1), opacity 0.22s;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--vibrant1);
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 1600;
  transition: background var(--transition), transform var(--transition);
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: var(--vibrant2);
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.35rem;
  text-transform: uppercase;
  background: none;
  border-radius: 8px;
  padding: 0.6em 2em;
  transition: background var(--transition), color var(--transition);
  min-width: 180px;
  text-align: center;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant3);
  color: var(--primary);
}

@media (max-width: 1100px) {
  .container { max-width: 960px; }
}

@media (max-width: 900px) {
  .container { max-width: 730px; }
  header nav { gap: 5px; }
  .cta-button { margin-left: 6px; }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --- HERO / FEATURE SECTIONS --- */
.hero {
  min-height: 340px;
  background: linear-gradient(94deg, var(--vibrant2) 18%, var(--vibrant1) 100%);
  display: flex;
  align-items: center;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(39,65,185, 0.16);
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  color: #fff;
  gap: 22px;
}
.hero h1 {
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 2.35rem;
  margin-top: 1.3rem;
  text-shadow: 0 2px 12px rgba(27,55,113,0.15);
}
.hero p {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 600px) {
  .hero {
    min-height: 160px;
    padding: 16px 0 24px 0;
  }
  .hero .content-wrapper {
    gap: 14px;
  }
}

/* --- FEATURE GRID ---*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 32px 0 27px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 340px;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--vibrant2);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 4px rgba(39,119,242,0.12);
  border-bottom: 4px solid var(--vibrant1);
  transform: translateY(-2px) scale(1.03);
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 2px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin: 0 0 4px 0;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.96;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-item {
    min-width: 180px;
    padding: 18px 10px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item {
    padding: 12px 8px;
    margin-bottom: 14px;
  }
}

/* --- CARD, CARD-CONTAINER, CONTENT-GRID --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 36px 6px rgba(241,200,31,0.13);
  transform: translateY(-2px) 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;
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-section {
  background: var(--accent);
  padding: 48px 0 62px 0;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 15px;
  min-width: 235px;
  max-width: 360px;
  flex: 1 1 220px;
  position: relative;
  border-left: 5px solid var(--vibrant1);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-left: 5px solid var(--vibrant2);
  box-shadow: 0 8px 36px 6px rgba(25,119,242,0.14);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.testimonial-card p {
  font-size: 1.10rem;
  font-style: italic;
  color: var(--primary);
  margin: 0 0 6px 0;
}
.testimonial-card strong {
  color: var(--vibrant1);
  letter-spacing: 0.01em;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
}

/* --- BLOG SECTIONS --- */
.highlighted-posts, .blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.highlighted-posts article {
  background: #FFFDEB;
  border-left: 5px solid var(--vibrant3);
  box-shadow: var(--card-shadow);
  border-radius: 11px;
  padding: 22px 20px;
  flex: 1 1 200px;
  min-width: 200px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.highlighted-posts article:hover {
  border-left: 5px solid var(--vibrant2);
  box-shadow: 0 8px 26px 4px rgba(25,119,242,0.12);
}
.highlighted-posts h3 {
  color: var(--vibrant1);
  font-size: 1.20rem;
}
.blog-post-grid article {
  background: #fff;
  border-radius: 8px;
  padding: 15px 14px 13px 14px;
  box-shadow: var(--card-shadow);
  min-width: 160px;
  margin-bottom: 10px;
  flex: 1 1 120px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-post-grid article:hover {
  box-shadow: 0 6px 24px 2px rgba(246,97,99,0.11);
  transform: scale(1.03);
}
.blog-post-grid h4 {
  color: var(--vibrant2);
  font-size: 1rem;
}
.pagination {
  margin: 22px 0 0;
  display: flex;
  gap: 14px;
  align-items: center;
}
.pagination a, .pagination span {
  display: inline-block;
  min-width: 32px;
  min-height: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--primary);
  background: #fff;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.pagination a:hover {
  background: var(--vibrant1);
  color: #fff;
}
.pagination span {
  background: var(--vibrant2);
  color: #fff;
}
@media (max-width: 600px) {
  .highlighted-posts, .blog-post-grid {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(90deg, var(--vibrant4) 40%, var(--vibrant3) 100%);
  border-radius: 12px;
  margin: 32px 0 22px 0;
  box-shadow: 0 4px 26px 0 rgba(39,206,169,0.12);
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner .content-wrapper {
  align-items: center;
}
.cta-banner h2 {
  color: var(--neutral-dark);
}
@media (max-width: 700px) {
  .cta-banner { padding: 21px 6px; }
}

/* --- CONTACT FORM SECTION --- */
.contact-form-section {
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 14px;
  padding: 32px 20px;
  margin-bottom: 24px;
}
.success-message {
  background: var(--vibrant4);
  color: var(--primary);
  border-radius: 8px;
  padding: 16px 11px;
  font-size: 1.06rem;
  margin-top: 16px;
}

/* --- MAP EMBED --- */
.map-embed {
  display: flex;
  flex-direction: column;
  background: #F0ECEC;
  border-radius: 8px;
  padding: 1rem;
  margin: 12px 0 0 0;
}
.map-embed img {
  margin-right: 6px;
  vertical-align: middle;
  height: 22px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 20px 20px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -2px 12px rgba(36, 55, 70, 0.09);
  margin-top: 50px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--vibrant3);
  opacity: 0.90;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  padding: 3px 8px;
  transition: background var(--transition), color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  background: var(--vibrant1);
  color: #fff;
}
.footer-contact {
  margin: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.07rem;
}

.footer-contact span{
	color: #fff
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.footer-contact img {
  height: 20px;
  width: 20px;
}
footer small {
  display: block;
  color: var(--accent);
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    font-size: 0.98rem;
    gap: 4px;
  }
  footer {
    padding: 26px 9px 14px 9px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--vibrant1) 40%, var(--vibrant2) 100%);
  color: #fff;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 34px 16px 20px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px 0 rgba(25,119,242,0.17);
  font-size: 1.09rem;
  gap: 12px;
  opacity: 0.98;
  transition: transform 0.3s, opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 7px 22px;
  cursor: pointer;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 4px 0 rgba(25,119,242,0.12);
  margin: 0;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
}
.cookie-banner .accept {
  background: var(--vibrant3);
  color: var(--neutral-dark);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--vibrant2);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--neutral-light);
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--vibrant1);
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--vibrant4);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px 14px 9px;
    font-size: 0.97rem;
    gap: 6px;
  }
  .cookie-banner-buttons {
    gap: 6px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36,55,70,0.62);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 49px 10px rgba(36,55,70,0.14);
  max-width: 410px;
  width: 96vw;
  padding: 36px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn 0.33s cubic-bezier(.7,-0.2,.5,1.4);
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.88) translateY(60px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
}
.cookie-modal label {
  font-weight: 500;
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 7px 20px;
  border-radius: 6px;
  font-weight: 700;
  background: var(--vibrant2);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal button.cancel {
  background: var(--neutral-light);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-modal button.cancel:hover {
  background: var(--vibrant3);
  color: var(--primary);
}
.cookie-modal button.accept {
  background: var(--vibrant1);
  color: #fff;
}
.cookie-modal button.accept:hover {
  background: var(--vibrant2);
  color: #fff;
}
/* toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.switch input { display: none; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eaeaea;
  border-radius: 20px;
  transition: background 0.18s;
}
.switch input:checked + .slider {
  background: var(--vibrant4);
}
.switch .slider:before {
  position: absolute;
  content: '';
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s cubic-bezier(0.5,1.4,0.31,1);
}
.switch input:checked + .slider:before {
  transform: translateX(14px);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .text-section, .contact-form-section { padding: 15px 8px; }
  .container { padding: 0 8px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  p, li, dd, ul { font-size: 0.97rem; }
}

/* --- MISC --- */
ul, ol {
  margin-left: 1.13rem;
  margin-bottom: 1rem;
}
dt {
  font-weight: 700;
  margin-top: 18px;
}
dd {
  margin-bottom: 8px;
}
li b, li strong {
  color: var(--vibrant1);
}

/* --- UTILITIES & MICRO-INTERACTIONS --- */
[tabindex]:focus, button:focus {
  outline: 2px solid var(--vibrant2);
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 11px;
  background: #e7e8ec;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--vibrant2);
}
::selection {
  background: var(--vibrant3);
  color: var(--primary);
}

/* --- ACCESSIBILITY, CONTRAST & IMPROVEMENT --- */
.testimonial-section, .testimonial-card, .highlighted-posts article, .cookie-banner, .footer-contact, .cookie-modal {
  color: #222;
}
.testimonial-card {
  color: #141921;
}
.testimonial-card p, .testimonial-card strong {
  color: #243746 !important;
}

/* --- SPACING FIXES --- */
.content-wrapper > * {
  margin-bottom: 0 !important;
}
.section + .section,
.section + .testimonial-section,
.cta-banner + .section {
  margin-top: 30px;
}

/* --- END OF STYLES --- */
