/* ===================================================
  CSS RESET & BASE NORMALIZATION
=================================================== */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #151e2e;
  color: #F4F7FB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #181f2e;
  background-image: linear-gradient(135deg, #1C3251 0%, #181f2e 85%, #0e1420 100%);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #D6AE60;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffe49c;
  text-decoration: underline;
}
ul { list-style: none; }

/* ===================================================
  BRAND FONT FAMILIES
=================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F4F7FB;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p, li {
  font-size: 1rem;
  color: #e5eefd;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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;
  background: #F4F7FB;
  border-radius: 16px;
  margin-bottom: 20px;
  color: #222a3a;
  box-shadow: 0 4px 24px 0 rgba(28, 50, 81, 0.08), 0 1.5px 8px 0 rgba(214, 174, 96, 0.05);
  border: 1.5px solid #eaeff7;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1C3251;
  margin-bottom: 8px;
  line-height: 1.4;
  quotes: '“' '”' '‘' '’';
}
.testimonial-card cite {
  font-size: 1rem;
  color: #475777;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(214, 174, 96, 0.13), 0 2px 12px 0 rgba(28, 50, 81, 0.10);
  border: 1.5px solid #D6AE60;
}

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

/* ===================================================
  HEADER & NAVIGATION
=================================================== */
header {
  width: 100%;
  background: #161f2b;
  position: relative;
  border-bottom: 2px solid #222e42;
  box-shadow: 0 6px 28px 0 rgba(28, 50, 81, 0.14);
  z-index: 120;
}
.site-logo img {
  height: 48px;
  width: auto;
  margin-right: 18px;
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #F4F7FB;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 7px 0;
  letter-spacing: 0.02em;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: linear-gradient(90deg, #D6AE60 10%, #ffe49c 100%);
  border-radius: 2px;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 88%;
}

.btn-primary {
  background: #D6AE60;
  color: #181f2e;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 1.5px 8px 0 rgba(214, 174, 96, 0.19);
  cursor: pointer;
  transition: background 0.21s, color 0.18s, box-shadow 0.18s;
  outline: none;
  min-width: 160px;
  text-align: center;
  display: inline-block;
  margin-left: 12px;
  margin-top: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe49c;
  color: #1C3251;
  box-shadow: 0 5px 24px 0 rgba(214, 174, 96, 0.23);
  text-decoration: none;
}

/* Burger Menu Styles */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #D6AE60;
  cursor: pointer;
  margin-left: 10px;
  z-index: 210;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #D6AE60;
}
.mobile-menu {
  display: none;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    font-size: 0.96rem;
  }
  header .container {
    gap: 10px;
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 850px) {
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 31, 46, 0.96);
    z-index: 5000;
    transition: transform 0.4s cubic-bezier(0.7,0,0.2,1);
    transform: translateX(100%);
    will-change: transform;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 2.2rem;
    background: none;
    color: #ffe49c;
    border: none;
    cursor: pointer;
    z-index: 5100;
    transition: color 0.18s;
  }
  .mobile-menu-close:focus {
    outline: 2px solid #D6AE60;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 80px 32px 32px 32px;
  }
  .mobile-nav a {
    color: #F4F7FB;
    font-size: 1.2rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 10px 0 8px 2px;
    border-radius: 4px;
    min-width: 90vw;
    transition: background 0.18s, color 0.18s;
    display: block;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #222a3a;
    color: #D6AE60;
    text-decoration: none;
  }
}

@media (max-width: 500px) {
  .mobile-nav {
    padding: 60px 20px 20px 20px;
    gap: 13px;
  }
  .mobile-menu-close {
    top: 19px;
    right: 15px;
  }
}

/* ===================================================
  HEROES, KEY SECTIONS (BACKGROUND, GRADIENT, EFFECTS)
=================================================== */
.hero, .about-hero, .services-hero, .testimonials-hero, .contact-hero, .thank-you, .analytics-hero, .legal-hero {
  background: linear-gradient(140deg, #1C3251 0%, #19202d 100%);
  box-shadow: 0 7px 28px 0 rgba(28, 50, 81, 0.13);
  border-bottom: 2px solid #222e42;
  padding: 54px 0 60px 0;
  margin-bottom: 2rem;
}
.hero h1, .about-hero h1, .services-hero h1, .testimonials-hero h1, .contact-hero h1, .thank-you h1, .analytics-hero h1, .legal-hero h1 {
  font-size: 2.3rem;
  background: linear-gradient(90deg, #ffe49c 0%, #D6AE60 55%, #F4F7FB 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 14px rgba(214, 174, 96, 0.15);
}
.hero p,.about-hero p,.services-hero p,.testimonials-hero p,.contact-hero p,.thank-you p,.analytics-hero p,.legal-hero p {
  font-size: 1.12rem;
  color: #e0e8f7;
  margin-bottom: 12px;
}

/* ===================================================
  FEATURES & CARDS
=================================================== */
.features {
  background: #19202d;
  border-top: 1.5px solid #222e42;
  border-bottom: 1.5px solid #222e42;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
}
.features li {
  background: #232b3b;
  color: #eabe62;
  border-radius: 18px;
  padding: 28px 32px 24px 32px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 220px;
  box-shadow: 0 2px 16px rgba(27, 40, 70, 0.13);
  border: 1.5px solid #222a38;
  position: relative;
  transition: box-shadow 0.17s, border 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 1.04rem;
  gap: 12px;
}
.features li img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 0 6px #ffe49c);
}
.features li strong {
  color: #F4F7FB;
  font-size: 1.13rem;
}
.features li:hover, .features li:focus {
  box-shadow: 0 8px 32px 0 rgba(214, 174, 96, 0.17);
  border: 1.5px solid #D6AE60;
}

/* ===================================================
  CTA SECTION
=================================================== */
.cta {
  background: linear-gradient(100deg, #1C3251 70%, #19202d 100%);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 46px 10px 56px 10px;
  box-shadow: 0 5px 24px 0 rgba(214, 174, 96, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta h2 {
  color: #ffe49c;
}

/* ===================================================
  CARD DESIGNS (REVIEW/CASE)
=================================================== */
.review-summaries, .review-cards, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.review-card, .case-study-summary {
  background: #22314f;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(28, 50, 81, 0.11);
  border: 1.5px solid #253a61;
  padding: 28px 24px 24px 24px;
  width: 100%;
  max-width: 340px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  transition: border 0.16s, box-shadow 0.19s, background 0.12s;
}
.review-card a {
  margin-top: auto;
  color: #ffe49c;
  background: none;
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.04rem;
  padding: 0;
  position: relative;
  transition: color 0.11s;
}
.review-card a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ffe49c;
  border-radius: 1px;
  transition: width 0.19s;
}
.review-card a:hover:after { width: 80%; }
.review-card:hover, .case-study-summary:hover {
  border: 1.5px solid #D6AE60;
  box-shadow: 0 4px 22px 0 rgba(214, 174, 96, 0.14);
  background: #182546;
}

/* ===================================================
  SERVICE LIST CARDS/BENEFITS
=================================================== */
.services-list ul, .services-benefits ul, .team ul, .mission-vision ul, .privacy-policy ul, .gdpr-details ul, .cookie-policy ul, .terms-of-use ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services-list li, .services-benefits li, .team li, .mission-vision ul li, .privacy-policy ul li, .gdpr-details ul li, .cookie-policy ul li, .terms-of-use ul li {
  background: #232b3b;
  border-radius: 12px;
  padding: 20px 24px 20px 24px;
  border: 1.5px solid #232a38;
  color: #eabe62;
  margin-bottom: 8px;
  font-size: 1.06rem;
  box-shadow: 0 2px 15px rgba(28, 50, 81, 0.07);
}
.services-list li h3 {
  color: #ffe49c;
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.services-list li strong { color: #F4F7FB; }
.services-benefits li {
  color: #f5f7fa;
  background: #232b3b;
}

/* TEAM CARDS */
.team ul {
  gap: 22px;
}
.team li strong { color: #D6AE60; }

/* LEGAL, POLICY, MISSION ETC. */
.privacy-policy, .gdpr-details, .cookie-policy, .terms-of-use {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #161f2b;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(28, 50, 81, 0.09);
}

/* ===================================================
  STYLE: LEGAL HERO MODIFIER
=================================================== */
.legal-hero {
  background: linear-gradient(135deg, #223a61 40%, #19202d 100%);
}

/* CONTACT SECTION */
.contact-details ul {
  gap: 17px;
}
.contact-details li {
  background: #232b3b;
  border-radius: 10px;
  padding: 15px 16px;
  color: #ffe49c;
  margin-bottom: 8px;
}
.contact-details a {
  color: #ffe49c;
  text-decoration: underline;
}

/* ===================================================
  FOOTER
=================================================== */
footer {
  background: #181f2e;
  padding: 34px 0 22px 0;
  margin-top: 32px;
  border-top: 2px solid #222e42;
  box-shadow: 0 -3px 13px rgba(28, 50, 81, 0.09);
}
.footer-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #D6AE60;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #ffe49c;
}
footer p {
  color: #818cab;
  font-size: 1rem;
  text-align: center;
}

/* ===================================================
  RESPONSIVE LAYOUT ADJUSTMENTS
=================================================== */
@media (max-width: 1000px){
  .hero h1, .about-hero h1 {font-size: 2rem}
  .review-summaries, .review-cards, .case-study-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 768px){
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { gap: 16px; }
  .section { padding: 24px 3px; margin-bottom: 36px; }
  .features ul { flex-direction: column; gap: 16px; }
  .features li { min-width: 0; max-width: 100%; } 
  .review-summaries, .review-cards, .case-study-list { gap: 13px; }
  .review-card, .case-study-summary { max-width: 100%; min-width: 0; }
  .cta { border-radius: 15px; padding: 32px 3px 32px 3px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .footer-nav { gap: 14px; margin-bottom: 12px; }
  .testimonial-card { flex-direction: column; gap: 12px; padding: 14px; }
  .team ul { gap: 13px; }
}
@media (max-width: 480px){
  .hero, .about-hero, .services-hero, .testimonials-hero, .contact-hero, .thank-you, .analytics-hero, .legal-hero {
    padding: 34px 0 32px 0;
    margin-bottom: 1.1rem;
  }
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.06rem; }
  .btn-primary { font-size: 0.97rem; padding: 10px 15px; min-width: 110px; }
}

/* ===================================================
  MICRO-INTERACTIONS, ANIMATION EFFECTS
=================================================== */
.btn-primary, .main-nav a, .mobile-nav a, .review-card, .case-study-summary, .testimonial-card {
  transition: box-shadow 0.18s, border 0.17s, background 0.16s, color 0.18s;
}
.review-card:hover, .case-study-summary:hover, .testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(214, 174, 96, 0.13);
  border: 1.5px solid #D6AE60;
}

/* ===================================================
  COOKIE CONSENT BANNER
=================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6000;
  background: #222e43;
  color: #F4F7FB;
  box-shadow: 0 -3px 16px rgba(28, 50, 81, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 28px 16px 22px 16px;
  font-size: 1rem;
  border-top: 2px solid #D6AE60;
  animation: ccb-slidein 0.4s cubic-bezier(0.7,0,0.2,1);
}
@keyframes ccb-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {margin-bottom: 0; color: #F4F7FB; max-width: 420px;}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 11px 22px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s, box-shadow 0.11s;
  outline: none;
}
.cookie-banner .accept {
  background: #D6AE60;
  color: #1C3251;
  box-shadow: 0 3px 12px 0 rgba(214, 174, 96, 0.07);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffe49c;
  color: #0e1420;
}
.cookie-banner .reject {
  background: #2a3850;
  color: #F4F7FB;
  border: 1.4px solid #D6AE60;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #1C3251;
  color: #ffe49c;
}
.cookie-banner .settings {
  background: none;
  color: #ffe49c;
  border: 1.4px solid #ffe49c;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ffe49c;
  color: #1C3251;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 7000;
  background: rgba(28, 50, 81, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modaloverlayfade 0.28s cubic-bezier(0.6,0,0.2,1);
}
@keyframes modaloverlayfade {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #181f2e;
  border-radius: 20px;
  padding: 34px 40px 36px 40px;
  min-width: 340px;
  max-width: 94vw;
  color: #F4F7FB;
  box-shadow: 0 12px 40px 0 rgba(214, 174, 96, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalUp 0.28s cubic-bezier(0.6,0,0.2,1);
}
@keyframes modalUp {
  from {transform: translateY(32px) scale(0.92); opacity:0;}
  to   {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal h2 { font-size: 1.23rem; color: #ffe49c; }
.cookie-modal ul {
  margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  background: #1C3251;
  border-radius: 6px;
  margin-bottom: 0;
  padding: 10px 16px;
  color: #ffe49c;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.01rem;
  color: #ffe49c;
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #D6AE60;
  width: 18px; height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem; font-weight: 700;
  border-radius: 18px;
  border: none;
  padding: 10px 22px;
  background: #D6AE60; color: #232b3b;
  transition: background 0.16s, color 0.16s;
  margin-left: 0;
  cursor: pointer;
}
.cookie-modal button.reject {
  background: #2a3850;
  color: #F4F7FB;
  border: 1.4px solid #D6AE60;
}
.cookie-modal button.settings {
  background: none;
  color: #ffe49c;
  border: 1.4px solid #ffe49c;
}
.cookie-modal button.settings:hover, .cookie-modal button.settings:focus {
  background: #ffe49c;
  color: #1C3251;
}
.cookie-modal .alwayson {
  opacity: 0.54;
  pointer-events: none;
}
@media (max-width: 480px){
  .cookie-modal {
    padding: 18px 7vw 18px 7vw;
    min-width: 0; font-size: 0.95rem;
  }
}

/* ===================================================
  SCROLLBAR CUSTOMIZATION (subtle futuristic)
=================================================== */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #202d45;
  border-radius: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(214, 174, 96, 0.05);
}
body::-webkit-scrollbar-track {
  background: #151e2e;
}

/* ===================================================
  MISC & UTILS
=================================================== */
blockquote {
  font-style: italic;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before { content: open-quote; }
blockquote:after { content: close-quote; }

hr {
  border: none;
  border-top: 2px solid #223a61;
  margin: 32px 0;
}

/* ======================
  Z-INDEX LAYERING
====================== */
header { z-index: 120; }
.mobile-menu { z-index: 5000; }
.mobile-menu-close { z-index: 5100; }
.cookie-banner { z-index: 6000; }
.cookie-modal-overlay { z-index: 7000; }

/* ===================================================
  ENSURE NO OVERLAP / SAFETY SPACING
=================================================== */
section, .section, .review-card, .case-study-summary, .cta, .testimonial-card {
  margin-bottom: 24px;
}

/* END OF STYLE */
