/* ---------------------------------------------------------
   CSS RESET & 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F4F7FB;
  color: #233044;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
}

/* ---------------------------------------------------------
   VARIABLES/FALLBACKS (non-custom property for wide support)
--------------------------------------------------------- */
:root {
  --primary: #204060;
  --secondary: #F4F7FB;
  --accent: #66A1C2;
  --accent-dark: #387395;
  --text: #233044;
  --muted: #8193a7;
  --bg-card: #fff;
  --shadow: 0 2px 12px rgba(32, 64, 96, 0.07);
  --radius: 10px;
}

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--secondary);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 16px;
}
h4 { font-size: 1.125rem; margin-bottom: 16px; }
p, li, span {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}
strong { color: var(--primary); font-weight: 700; }
.text-section p, .text-section li {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Typography scale responsive adjustments */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  p, li, span { font-size: 0.97rem; }
}


/* ---------------------------------------------------------
   CONTAINERS, SECTIONS, LAYOUT
--------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  padding: 28px 24px;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(32,64,96,0.14);
  transform: translateY(-2px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #FFF;
  color: #233044;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 26px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 460px;
  flex: 1 1 280px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card p {
  color: #233044;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 14px;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  font-size: .98rem;
}
.testimonials .content-wrapper,
.case-studies .content-wrapper,
.references .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.about .content-wrapper.text-section,
.values .content-wrapper.text-section,
.process .content-wrapper.text-section,
.benefits .content-wrapper.text-section,
.industries .content-wrapper.text-section,
.privacy .content-wrapper.text-section,
.gdpr .content-wrapper.text-section,
.cookies .content-wrapper.text-section,
.terms .content-wrapper.text-section,
.thank-you .content-wrapper.text-section,
.offices .content-wrapper.text-section,
.blog-overview .content-wrapper {
  gap: 22px;
}

/* Inner section spacing for lists and ul/ol */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 13px;
  padding-left: 0;
  position: relative;
}
ul li:before {
  display: none;
}

/* MINIMUM MARGIN for all cards/blocks */
section > .container > .content-wrapper > * {
  margin-bottom: 20px;
}

@media (min-width: 800px) {
  .content-wrapper,
  .about .content-wrapper.text-section,
  .values .content-wrapper.text-section,
  .process .content-wrapper.text-section,
  .benefits .content-wrapper.text-section,
  .offices .content-wrapper.text-section {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .section,
  section {
    padding: 25px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ---------------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,64,96,0.04);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  min-height: 72px;
  padding: 0 20px;
  font-size: 1rem;
}
.main-navigation a {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  position: relative;
}
.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--accent-dark);
  background: #e7eff7;
}
.main-navigation a.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.08rem;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(32,64,96,0.10);
  transition: background .18s, color .2s, box-shadow .18s;
}
.main-navigation a.cta-btn:hover,
.main-navigation a.cta-btn:focus {
  background: var(--accent-dark);
  color: #FFF;
  box-shadow: 0 4px 16px rgba(56,115,149,0.10);
}

.main-navigation img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
  display: inline-block;
}

/* Hide mobile menu button by default */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 980px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    z-index: 110;
    box-shadow: 0 2px 8px rgba(32,64,96,0.07);
    transition: background .2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--accent-dark);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(32,64,96, .98);
    color: #fff;
    z-index: 200;
    transform: translateX(-100vw);
    transition: transform .36s cubic-bezier(.5,1.3,.5,1);
    box-shadow: 0 4px 20px rgba(32,64,96,0.25);
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .mobile-menu-close {
    background: none;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 32px;
    position: absolute;
    right: 24px;
    top: 20px;
    z-index: 120;
    width: 52px;
    height: 52px;
    transition: background .18s;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: rgba(100,145,177,0.23);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 90vw;
    max-width: 340px;
    margin: 90px auto auto 36px;
  }
  .mobile-nav a {
    color: #fff;
    font-family: 'Montserrat',Arial,Helvetica,sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 6px 14px 8px;
    border-radius: 7px;
    transition: background .15s, color .15s;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus {
    background: rgba(255,255,255,0.10);
    color: var(--accent);
  }
}

@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Main navigation z-index layering */
header,
.main-navigation,
.mobile-menu,
.mobile-menu-toggle { z-index: 99; }

/* ---------------------------------------------------------
   HERO SECTIONS
--------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #204060 80%, #66A1C2 100%);
  color: #fff;
  padding: 56px 0 56px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  max-width: 670px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-btn {
  margin-top: 26px;
}

/* ---------------------------------------------------------
   BUTTONS & CALLS-TO-ACTION
--------------------------------------------------------- */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 22px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 18px rgba(32,64,96,0.10);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .18s, box-shadow .18s;
  margin-top: 10px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(56,115,149,0.17);
}

button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  background: var(--secondary);
  color: var(--primary);
  transition: background .16s, color .16s, box-shadow .16s;
  border: 1px solid #d5e2f0;
  box-shadow: 0 2px 8px rgba(32,64,96,0.04);
  font-size: 1rem;
  cursor: pointer;
}
button:hover, .btn:hover,
button:focus, .btn:focus {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

/* ---------------------------------------------------------
   FEATURES SECTION, LIST STYLES
--------------------------------------------------------- */
.features .content-wrapper ul, .services .content-wrapper ul, .benefits .content-wrapper ul, .industries .content-wrapper ul, .references .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 18px 0 4px 0;
  justify-content: flex-start;
}
.features .content-wrapper ul li, .services .content-wrapper ul li, .industries .content-wrapper ul li, .references .content-wrapper ul li {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .18s, transform .18s;
  font-size: 1rem;
}
.features .content-wrapper ul li img, .services .content-wrapper ul li img, .industries .content-wrapper ul li img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.features .content-wrapper ul li strong, .services .content-wrapper ul li strong {
  display: block;
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 6px;
  margin-top: 5px;
  font-weight: 700;
}
.features .content-wrapper ul li:hover, .services .content-wrapper ul li:hover, .industries .content-wrapper ul li:hover {
  box-shadow: 0 6px 26px rgba(32,64,96,0.10);
  transform: scale(1.03);
}

/* ---------------------------------------------------------
   BLOG OVERVIEW
--------------------------------------------------------- */
.blog-overview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-overview article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 20px 18px;
  flex: 1 1 300px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .2s;
}
.blog-overview article:hover {
  box-shadow: 0 6px 32px 0 rgba(56,115,149,0.13);
  transform: translateY(-2px) scale(1.015);
}
.blog-overview article h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 11px;
}
.blog-overview article p a {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .16s;
}
.blog-overview article p a:hover {
  color: var(--accent);
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 14px 0;
}
.topic-tags span {
  background: #dbe7f2;
  color: var(--primary);
  font-size: .97rem;
  border-radius: 18px;
  padding: 6px 14px;
  font-weight: 600;
}
.newsletter-signup {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 26px 20px;
  margin-top: 16px;
  max-width: 400px;
}

/* ---------------------------------------------------------
   CONTACT PAGE
--------------------------------------------------------- */
.contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-details {
  flex: 2 0 250px;
  color: var(--primary);
  font-size: 1.1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 350px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.google-map {
  flex: 3 1 320px;
  background: #f6f8fc;
  border-radius: var(--radius);
  padding: 22px 18px;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  background: #fff;
  box-shadow: 0 -1px 6px rgba(32,64,96,0.05);
  padding: 0;
  font-size: 0.98rem;
  color: var(--muted);
}
.footer-menu, .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 17px 0 10px 0;
}
.legal-links {
  gap: 10px;
  padding-bottom: 18px;
  color: #8698af;
}
.footer-menu a {
  color: #547190;
  text-decoration: none;
  border-radius: 5px;
  padding: 4px 10px;
  transition: background .14s, color .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--accent);
  color: #FFF;
}

/* ---------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1d3650;
  color: #fff;
  z-index: 3000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 -6px 16px rgba(56, 115, 149, 0.18);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: transform .4s cubic-bezier(.4,1,.6,1), opacity .3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 3px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 20px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0;
  box-shadow: 0 2px 10px rgba(32,64,96,0.06);
  transition: background .13s, color .13s;
}
.cookie-btn.accept {
  background: var(--accent-dark);
  color: #fff;
}
.cookie-btn.accept:hover { background: #214874; }
.cookie-btn.reject {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #b5cae0;
}
.cookie-btn.reject:hover {
  background: #e8f1fa;
  color: var(--accent);
}
.cookie-btn.settings {
  background: #dde6f2;
  color: var(--primary);
}
.cookie-btn.settings:hover { background: #c9d6e9; }

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%) scale(0.98);
  background: #fff;
  color: #233044;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(32,64,96,0.22);
  z-index: 3050;
  padding: 36px 30px 22px 30px;
  min-width: 320px;
  max-width: 95vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity .19s, transform .28s cubic-bezier(.6,1.5,.5,1);
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.94);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 1.05rem;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category .toggle-switch {
  min-width: 44px;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--muted);
  border-radius: 24px;
  transition: background .23s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-dark);
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s;
  box-shadow: 0 0 6px #bbb;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(19px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 7vw 20px 7vw;
  }
  .cookie-consent-banner {
    border-radius: 0;
    padding: 19px 4vw;
  }
}

/* ---------------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
--------------------------------------------------------- */
a, input, button, .card, .testimonial-card, .features .content-wrapper ul li, .cta-btn {
  transition: box-shadow .18s, background .18s, color .16s, transform .16s;
}

/* ---------------------------------------------------------
   RESPONSIVE LAYOUTS
--------------------------------------------------------- */
@media (max-width: 820px) {
  .features .content-wrapper ul,
  .services .content-wrapper ul, .benefits .content-wrapper ul, .industries .content-wrapper ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .features .content-wrapper ul li, .services .content-wrapper ul li, .industries .content-wrapper ul li {
    max-width: unset;
    min-width: 180px;
  }
  .testimonials .content-wrapper, .case-studies .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 34px 0 36px 0;
  }
  .hero .container {
    padding: 0 2vw;
  }
  .footer-menu, .legal-links {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0 8px 0;
  }
  .about .content-wrapper.text-section, .values .content-wrapper.text-section, .process .content-wrapper.text-section, .benefits .content-wrapper.text-section, .offices .content-wrapper.text-section, .industries .content-wrapper.text-section {
    gap: 10px;
    flex-direction: column;
  }
  .contact-section .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .card, .testimonial-card {
    padding: 16px 10px;
  }
}
/* Helper classes for alignment - flexbox only */
.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.jc-center { justify-content: center; }
.jc-space-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

/* ---------------------------------------------------------
   UTILITY CLASSES
--------------------------------------------------------- */
.text-center { text-align: center; }
.mtb-32 { margin: 32px 0; }
.mtb-24 { margin: 24px 0; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }

/* ---------------------------------------------------------
   MISCELLANEOUS
--------------------------------------------------------- */
::-webkit-scrollbar { width: 7px; background: #d3e1ef; }
::-webkit-scrollbar-thumb { background: #abc7df; border-radius: 8px; }

::selection { background: #204060; color: #fff; }

/* ---------------------------------------------------------
   Fix for minimum gap between cards/sections (failsafe)
--------------------------------------------------------- */
.card + .card, .testimonial-card + .testimonial-card, .section + .section, section + section {
  margin-top: 20px;
}

@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  .container { padding: 0 3vw; }
}
