/* ===========================================================
   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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F5F7;
  color: #20232A;
  min-height: 100vh;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ===========================================================
   BRAND VARIABLES (Fallback for older browsers)
   ======================================================== */
:root {
  --color-primary: #20232A;
  --color-secondary: #F4F5F7;
  --color-accent: #F36B26;
  --color-link: #325ABB;
  --color-border: #D1D5DA;
  --color-muted: #6B7687;
  --shadow-card: 0 2px 12px rgba(32,35,42,0.09),0 1.5px 4px rgba(32,35,42,0.07);
  --radius: 10px;
  --transition: all 0.2s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ===========================================================
   STRUCTURE AND CONTAINERS
   ======================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===========================================================
   TYPOGRAPHY
   ======================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
h4 { font-size: 1rem; line-height: 1.4; }
p, li, address, label, select, input, textarea {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
a {
  color: var(--color-link);
  transition: color .2s;
}
a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
blockquote {
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  margin-bottom: 12px;
}

/* ===========================================================
   HEADER AND NAVIGATION
   ======================================================== */
header {
  background: #fff;
  box-shadow: 0 1px 9px rgba(32,35,42,0.08);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header a img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border .19s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  box-shadow: 0 3px 15px rgba(243,107,38,0.11);
  transition: var(--transition);
  margin-left: 24px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #e15c18;
  color: #fff;
  box-shadow: 0 6px 28px rgba(243,107,38,0.18);
}

/* ===========================================================
   MOBILE NAVIGATION
   ======================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color .15s;
  margin-left: 20px;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 29, 36, 0.81);
  transition: transform .38s cubic-bezier(.7,.1,.37,1), opacity .33s cubic-bezier(.5,0,.2,1);
  transform: translateX(100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  pointer-events: none;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  z-index: 201;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100vw;
  max-width: 350px;
  padding: 38px 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 500;
  background: none;
  transition: background .19s, color .17s;
  padding: 13px 0;
  width: 100%;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(243,107,38,0.08);
}

/* Responsive navigation */
@media (max-width: 1024px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===========================================================
   HERO SECTION
   ======================================================== */
.hero {
  background: linear-gradient(90deg, #e9ecf3 87%, #dbe7fa 100%);
  padding: 56px 0 0 0;
  border-radius: 0 0 52px 52px;
  box-shadow: 0 6px 32px rgba(50,90,187,0.06);
  margin-bottom: 60px;
}
.hero .container {
  justify-content: flex-start;
}
.hero .content-wrapper {
  padding: 30px 0 40px 0;
  gap: 16px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.hero p {
  color: var(--color-muted);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.hero .cta-primary {
  font-size: 1.1rem;
  padding: 17px 38px;
  margin-left: 0;
  margin-top: 8px;
}

/* ===========================================================
   SECTIONS & LAYOUTS (Flexbox Only)
   ======================================================== */
.features, .services-overview, .how-it-works, .values, .about {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}
.features ul, .services-overview ul, .how-it-works ol, .about ul {
  margin-left: 18px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features li, .services-overview li, .about li, .how-it-works li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-muted);
}
.catalog-preview, .cta-banner, .how-it-works, .brand-filter, .thank-you {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
}
.catalog-preview a, .brand-filter a,
.cta-banner a {
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 10px;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.catalog-preview a:hover, .cta-banner a:hover {
  text-decoration: underline;
}
.catalog-list .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background: #eef1f7;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 12px 0 28px 0;
}
.catalog-list .filter-bar ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 0;
  padding: 0;
  font-size: 0.96rem;
}
.catalog-list .filter-bar li {
  color: var(--color-primary);
  background: #ecf2fc;
  padding: 7px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.13s;
  border: 1px solid #d0dbef;
}
.catalog-list .filter-bar li:hover {
  background: #e0e9fb;
}
.catalog-list select {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 17px 6px 8px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-left: 10px;
  cursor: pointer;
  transition: border .14s;
}
.catalog-list select:focus {
  border: 1px solid var(--color-accent);
}

/* Flex card layouts */
.card-container, .value-grid, .brand-cards, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 4px;
  margin-top: 10px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 25px 22px;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(50,90,187,0.07), 0 2px 12px rgba(50,90,187,0.10);
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: none;
  padding: 0;
  margin: 0;
}
.text-section h3 {
  font-size: 1.13rem;
  color: var(--color-primary);
}
.text-section ul {
  margin: 0 0 0 16px;
  gap: 7px;
}
.service-price {
  margin-top: 8px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.02rem;
}
.value-grid > .text-section,
.brand-cards > .text-section,
.services-grid > .text-section {
  background: #f4f5f7;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 350px;
  padding: 20px 18px;
  margin-bottom: 0;
  margin-right: 0;
}
.brand-chip-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 16px 0;
}
.brand-chip-list span {
  background: #e3eaf7;
  color: var(--color-primary);
  border-radius: 18px;
  padding: 6px 16px;
  font-size: 1rem;
  font-family: var(--font-display);
  border: 1px solid #cfd9e9;
  transition: background .13s, border .13s;
  cursor: pointer;
  font-weight: 500;
}
.brand-chip-list span:hover {
  background: #dde4f3;
  border-color: var(--color-accent);
}
.community-focus {
  background: #eef1f7;
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0 2px 0;
  font-size: 1.05rem;
}

/* Content alignment for grid-like wrappers */
.content-grid, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.content-grid > *, .product-grid > * {
  flex: 1 1 260px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

/* Testimonials - readable, formal, high contrast */
.testimonials {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F8FAFC;
  color: #20232A;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(32,35,42,0.07), 0 0.5px 1px rgba(50,90,187,0.04);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 5px solid var(--color-accent);
  transition: box-shadow .17s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(50,90,187,0.10), 0 2px 12px rgba(243,107,38,0.13);
}
.testimonial-author {
  font-size: 1rem;
  font-style: normal;
  color: var(--color-muted);
  margin-left: auto;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Cards, Lists, Chips spacing enforce */
.card:not(:last-child), .value-grid > .text-section:not(:last-child), .brand-cards > .text-section:not(:last-child), .services-grid > .text-section:not(:last-child) {
  margin-right: 20px;
}

/* Review-Form, Thank-You Section, and Utility */
.review-form, .thank-you {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
  margin-bottom: 60px;
}

/* Legal sections */
.legal {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  color: var(--color-primary);
}
.legal ul {
  margin-left: 17px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal li {
  color: var(--color-muted);
  font-size: 1rem;
}

/* Cookie Policy/Legal Links: underline & accent on hover */
.footer-nav a {
  font-size: 1rem;
  margin-right: 16px;
  color: var(--color-muted);
  transition: color .16s, text-decoration .13s;
  padding: 9px 0;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #E1E4E8;
  padding-top: 28px;
  padding-bottom: 24px;
}
footer .container {
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-info img {
  width: 48px;
  height: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  max-width: 380px;
  margin-bottom: 5px;
}
.footer-info address {
  font-style: normal;
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer-info a {
  color: var(--color-link);
  text-decoration: underline;
}
.footer-info a:hover, .footer-info a:focus {
  color: var(--color-accent);
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222B38;
  color: #fff;
  z-index: 99999;
  box-shadow: 0 -1px 12px rgba(32,35,42,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 25px 18px 25px 18px;
  gap: 26px;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.7,.1,.37,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #fff;
  max-width: 510px;
}
.cookie-banner .cookie-btn {
  margin-left: 14px;
  padding: 12px 23px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  box-shadow: 0px 2.7px 9px rgba(243,107,38,0.11);
  transition: background .18s, color .16s;
}
.cookie-banner .cookie-btn.cookie-btn-settings {
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn.cookie-btn-reject {
  background: #484f59;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #e15c18;
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-btn-settings:hover, .cookie-banner .cookie-btn.cookie-btn-settings:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-btn-reject:hover, .cookie-banner .cookie-btn.cookie-btn-reject:focus {
  background: #323940;
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100002;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,35,42,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s cubic-bezier(.8,.2,.1,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  box-shadow: 0 6px 32px rgba(32,35,42,0.23);
  padding: 36px 32px 32px 32px;
  min-width: 340px;
  max-width: 96vw;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--color-primary);
  margin-bottom: 9px;
  font-family: var(--font-display);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-category label {
  font-weight: 600;
  margin-right: 7px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
}
.cookie-modal-category .cookie-essential {
  color: #aaa;
  font-size: 0.95rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 13px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.7rem;
  transition: color .13s;
  z-index: 102;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #e15c18;
}

/* ===========================================================
   RESPONSIVE DESIGN (Mobile-first)
   ======================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
    max-width: 97vw;
  }
  header .container {
    padding: 12px 10px;
  }
  .card, .value-grid > .text-section, .brand-cards > .text-section, .services-grid > .text-section {
    min-width: 90vw;
    max-width: 100vw;
    margin-right: 0;
  }
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .card-container, .value-grid, .brand-cards, .services-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .brand-chip-list {
    gap: 6px;
  }
  .hero {
    padding-bottom: 26px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .section, .testimonials, .cta-banner,
  .about, .values, .legal, .review-form, .thank-you {
    margin-bottom: 36px;
    padding: 30px 7px;
  }
  .features ul, .services-overview ul, .how-it-works ol, .about ul {
    gap: 5px;
    font-size: 0.98rem;
  }
  .testimonial-card, .card, .text-section, .value-grid > .text-section, .brand-cards > .text-section, .services-grid > .text-section  {
    padding: 15px 8px;
    min-width: 90vw;
    max-width: 100vw;
  }
  .testimonial-author {
    font-size: 0.96rem;
    margin-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .value-grid, .brand-cards, .services-grid {
    flex-direction: column;
    gap: 13px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .brand-chip-list {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal {
    min-width: 92vw;
    padding: 23px 10px 18px 10px;
  }
  .cookie-modal h2 {
    font-size: 1.1rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.99rem;
    padding: 17px 7px 17px 7px;
  }
  .cookie-banner .cookie-btn {
    font-size: 0.98rem;
    padding: 10px 11px;
    margin-left: 0;
  }
}

/* ===========================================================
   UTILITY CLASSES & ANIMATIONS
   ======================================================== */
@media (prefers-reduced-motion: no-preference) {
  .cta-primary, .cookie-btn,
  .main-nav a, .mobile-nav a,
  .card, .testimonial-card,
  .brand-chip-list span,
  .cookie-modal, .mobile-menu {
    transition: var(--transition);
  }
  .cookie-modal,
  .mobile-menu {
    will-change: transform, opacity;
  }
}

/* Hide visually only but remain accessible */
.visually-hidden {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: -1px!important;
  border: 0!important;
  padding: 0!important;
  overflow: hidden!important;
  clip: rect(0 0 0 0)!important;
  clip-path: inset(100%)!important;
  white-space: nowrap!important;
}

/* Misc utility */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* Ensure no element overlaps! Cards, sections, etc. */
.card, .testimonial-card, .section, .cta-banner, .about, .legal, .review-form, .thank-you, .brand-cards > .text-section, .services-grid > .text-section, .value-grid > .text-section, .footer-info, .container, .content-wrapper {
  margin-bottom: 20px;
}
/* Remove extra last-child spacing */
.card:last-child, .testimonial-card:last-child,
.section:last-child, .cta-banner:last-child, .about:last-child, .legal:last-child, .review-form:last-child, .thank-you:last-child,
.brand-cards > .text-section:last-child, .value-grid > .text-section:last-child, .services-grid > .text-section:last-child {
  margin-bottom: 0 !important;
}

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