/* ===========================================================================
   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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
footer p {
  color: white !important;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A1A1A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 8px;
}
a {
  color: #223370;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9BC1B;
  outline: none;
}
:focus-visible {
  outline: 2px solid #F9BC1B;
}

/* ===========================================================================
   BRAND FONTS (Montserrat / Roboto)
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #223370;
  margin-bottom: 0.5em;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
}
h4, h5, h6 {
  font-size: 1.2rem;
}
.subheadline {
  color: #223370;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Text Section for info pages */
.text-section {
  margin-bottom: 60px;
  padding: 36px 20px;
  background: #F7F9FC;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,51,112,0.06);
}

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #20242C;
  margin-bottom: 1em;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: 700;
  color: #223370;
}

/* ===========================================================================
   LAYOUT CONTAINERS & SPACING (Flexbox Only!)
   =========================================================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(34,51,112,0.06);
  padding: 24px 22px;
  min-width: 250px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px 0 rgba(34,51,112,0.15);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}

/* ========== HERO SECTION ========== */
.hero {
  background: #223370 url('../assets/hero-bg.svg') no-repeat center/cover;
  color: #fff;
  padding: 70px 0 64px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 580px;
  padding-left: 0;
}
.hero h1 {
  color: #fff;
}
.hero .subheadline {
  color: #F9BC1B;
}
.hero .cta-button {
  margin-top: 32px;
}

/* ========== FEATURES GRID ========== */
.features {
  background: #F7F9FC;
  border-bottom: 3px solid #F9BC1B;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

/* ========== ABOUT PREVIEW & SERVICE PREVIEW ========== */
.about-preview, .services-preview, .contact-cta {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,51,112,0.08);
  margin-top: 36px;
  margin-bottom: 60px;
  padding: 38px 22px;
  display: flex;
  align-items: stretch;
}
.about-preview .cta-link, .services-preview .cta-link {
  display: inline-block;
  margin-top: 18px;
  color: #223370;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  text-decoration: underline;
  transition: color 0.18s;
}
.about-preview .cta-link:hover, .services-preview .cta-link:hover {
  color: #F9BC1B;
}

/* ========== TESTIMONIALS ========== */
.testimonials-preview {
  background: #F7F9FC;
  padding: 40px 20px 0 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(34,51,112,0.07);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 650px;
  width: 100%;
}
.testimonial-text {
  font-size: 1.18rem;
  color: #223370;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.testimonial-author {
  font-family: 'Roboto', Arial, sans-serif;
  color: #20242C;
  font-weight: 500;
  font-size: 0.98rem;
}

/* ========== SERVICES PAGE: SERVICES GRID ========== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,51,112,0.07);
  flex: 1 1 240px;
  min-width: 240px;
  padding: 26px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.21s, transform 0.21s;
  position: relative;
}
.service-item:hover {
  box-shadow: 0 7px 30px 0 rgba(249,188,27,0.10), 0 2px 10px 0 rgba(34,51,112,0.08);
  transform: translateY(-4px) scale(1.026);
  z-index: 1;
}

/* TEAM PAGE: TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(34,51,112,0.06);
  flex: 1 1 270px;
  min-width: 220px;
  padding: 24px 18px 16px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.team-member:hover {
  box-shadow: 0 6px 24px 0 rgba(34,51,112,0.15);
  transform: translateY(-3px) scale(1.017);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #F9BC1B;
  border-radius: 9px;
  box-shadow: 0 2px 9px 0 rgba(34,51,112,0.06);
  padding: 18px 20px;
  margin-bottom: 8px;
}
.faq-item h2 {
  color: #223370;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.faq-item p {
  color: #20242C;
  font-size: 1rem;
}

/* ========== BUTTONS & CTA ========== */
.cta-button {
  background: #F9BC1B;
  color: #223370;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.18rem;
  padding: 16px 38px;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(34,51,112,0.12);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.11s;
  margin-right: 14px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: #223370;
  color: #F9BC1B;
  box-shadow: 0 8px 22px 0 rgba(34,51,112,0.13); 
  transform: translateY(-2px) scale(1.02);
  outline: none;
}
.cta-link {
  color: #223370;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.18s;
}
.cta-link:hover {
  color: #F9BC1B;
}
/* Footer CTA Fix */
.contact-cta .cta-button {
  margin-right: 0;
  margin-bottom: 0;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 3px 12px -5px rgba(34,51,112,0.09);
  position: sticky;
  top: 0;
  z-index: 990;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
  padding: 0 18px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav > a {
  color: #223370;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 2px;
  border-radius: 4px;
  transition: color 0.16s, background 0.14s;
  position: relative;
}
.main-nav > a:not(.cta-button):hover, .main-nav > a:not(.cta-button):focus {
  color: #F9BC1B;
  background: #ECEFF7;
}
.main-nav .cta-button {
  margin-right: 0;
  margin-left: 10px;
  margin-bottom: 0;
  box-shadow: 0 6px 20px 0 rgba(34,51,112,0.10);
}
.main-nav .cta-button:hover {
  background: #223370;
  color: #F9BC1B;
}

/* ==================== MOBILE BURGER MENU ==================== */
.mobile-menu-toggle {
  display: none;
  background: #223370;
  color: #F9BC1B;
  border: none;
  padding: 10px 18px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  margin-left: 18px;
  transition: background .17s, color .15s, box-shadow .12s;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  outline: 2.5px solid #F9BC1B;
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #223370;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.17,.67,.83,.67), box-shadow 0.22s;
  box-shadow: 0 14px 36px rgba(34,51,112,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 100vw rgba(34,51,112,0.46);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F9BC1B;
  border: none;
  font-size: 2rem;
  margin: 26px 26px 0 0;
  cursor: pointer;
  transition: color .15s, background .13s;
  z-index: 2000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 0;
  transition: color .19s, background .16s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F9BC1B;
  background: rgba(249,188,27,0.11);
}

@media (max-width: 1023px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  header .container {
    height: 61px;
    padding: 0 10px;
  }
  .logo img {
    height: 36px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 26px;
  }
}
@media (max-width: 790px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== FOOTER ========== */
footer {
  background: #223370;
  color: #fff;
  padding: 36px 0 22px 0;
  font-size: 16px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.98em;
  letter-spacing: .02em;
  transition: color .15s, text-shadow .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9BC1B;
}
.footer-info {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F9BC1B;
  font-size: 1rem;
  line-height: 1.45;
}
.footer-info a {
  color: #F9BC1B;
  text-decoration: underline;
  font-size: 1rem;
  font-family: 'Roboto';
}
.footer-logo img {
  height: 40px;
  width: auto;
}

/* ========== ICON ADJUSTMENT (in contact.html, etc.) ========== */
ul img, li img {
  height: 22px;
  width: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== COOKIE BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3000;
  width: 100vw;
  background: #223370;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 12px 32px 12px;
  box-shadow: 0 -8px 30px 0 rgba(34,51,112,0.22);
  transition: transform 0.5s cubic-bezier(.65,.05,.36,1), opacity 0.20s;
  transform: translateY(0);
  opacity: 1;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-left: 32px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #223370;
  background: #F9BC1B;
  border: none;
  border-radius: 24px;
  padding: 11px 30px;
  margin-right: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.14s;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #223370;
  color: #F9BC1B;
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #F9BC1B;
  border: 2px solid #F9BC1B;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F9BC1B;
  color: #223370;
}

.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 50%;
  top: 50%;
  transform: translate(-50%,100%);
  background: #fff;
  color: #223370;
  border-radius: 17px;
  box-shadow: 0 14px 40px 0 rgba(34,51,112,0.17);
  padding: 36px 30px 26px 30px;
  min-width: 350px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.47,.05,.36,0.93), opacity 0.19s;
}
.cookie-modal.open {
  transform: translate(-50%,-50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #223370;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
  margin-top: 10px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E0E0E0;
  border-radius: 20px;
  position: relative;
  outline: none;
  margin-inline-start: 6px;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch:checked {
  background: #F9BC1B;
}
.cookie-modal .cookie-switch:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #223370;
  border-radius: 50%;
  transition: left 0.19s, background 0.19s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 19px;
  background: #fff;
}
.cookie-modal .cookie-category.essential label {
  color: #aaa;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #F9BC1B;
  color: #223370;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.17s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #223370;
  color: #F9BC1B;
}

/* ========== GENERAL RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 1100px) {
  .features .feature-grid, .services-grid, .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
  }
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid, .services-grid, .team-grid {
    gap: 13px;
  }
  .features, .about-preview, .services-preview, .testimonials-preview, .contact-cta, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero {
    padding: 36px 0 36px 0;
    min-height: 190px;
  }
  .hero .container, .features .container, .about-preview .container, .testimonials-preview .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .feature-grid, .services-grid, .team-grid {
    flex-direction: column;
    gap: 0px;
  }
  .feature-item, .service-item, .team-member, .testimonial-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 22px;
  }
  .about-preview, .services-preview, .contact-cta {
    padding: 22px 8px;
    min-width: 0;
    margin-top: 22px;
    margin-bottom: 26px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .testimonials-preview, .section {
    padding: 22px 8px 0 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-logo img {
    height: 32px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px 20px 10px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
    margin-top: 18px;
    gap: 11px;
  }
  .cookie-modal {
    padding: 18px 5vw 17px 5vw;
    min-width: 0;
    max-width: 98vw;
  }
}
@media (max-width: 540px) {
  .section, .about-preview, .services-preview, .contact-cta {
    padding: 10px 4px;
    margin-bottom: 16px;
    margin-top: 10px;
  }
  .faq-accordion, .feature-grid, .services-grid, .team-grid {
    gap: 0;
  }
}

/* ========== UTILITIES ========== */
.hide {
  display: none !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.text-center {
  text-align: center;
}

/* ========== MICRO-ANIMATIONS ========== */
.cta-button, .cookie-banner button, .mobile-menu-toggle, .main-nav > a, .footer-nav a {
  transition: background 0.20s, color 0.15s, box-shadow 0.16s, transform 0.10s;
}

/* ========== Z-INDEX LAYERS ========== */
header { z-index: 990; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* ========== GEOMETRIC/SPECIAL MODERN BOLD VISUAL ELEMENTS ========== */
.feature-item:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 60px;
  height: 60px;
  background: rgba(249,188,27,0.10);
  border-radius: 16px 50% 28px 22px;
  z-index: 0;
}
.feature-item img {
  z-index: 2;
  position: relative;
}

/* ========== CARD GENERAL ========== */
.card, .feature-item, .service-item, .team-member, .testimonial-card {
  border-radius: 15px;
  box-shadow: 0 2px 9px 0 rgba(34,51,112,0.09);
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .feature-item:hover, .service-item:hover, .team-member:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(249,188,27,0.15);
  transform: translateY(-3px) scale(1.01);
}

/* ========== VISUAL HIERARCHY CLASSES ========== */
.heading-xl { font-size: 2.8rem; font-weight: 900; }
.heading-lg { font-size: 2rem; font-weight: 900; }
.heading-md { font-size: 1.45rem; font-weight: 700; }
.heading-sm { font-size: 1.18rem; font-weight: 700; color: #223370; }

/* ========== OVERRIDES & FIXES ========== */
main ul {
  margin-bottom: 1.2em;
}
main ul li {
  color: #20242C;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* Ensure no content overlapping and minimum 20px margin between blocks */
.section + .section,
.about-preview + .section,
.services-preview + .section,
.contact-cta + .section,
.testimonials-preview + .section {
  margin-top: 20px;
}

.card + .card, .testimonial-card + .testimonial-card, .feature-item + .feature-item, .service-item + .service-item, .team-member + .team-member {
  margin-top: 20px!important;
}

/* =========== END =========== */
