/* 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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #232D20;
  color: #F4F7F2;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.4s;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #8CFDAD;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
}
ul, ol {
  margin-left: 1.2em;
}
strong {
  font-weight: 600;
  color: #E6FF57;
}

:root {
  --color-primary: #396D3B;
  --color-secondary: #F4F7F2;
  --color-accent: #8CFDAD;
  --color-bg: #232D20;
  --color-card-bg: #2E3730;
  --color-footer-bg: #1A2118;
  --color-cta: #396D3B;
  --color-cta-shadow: 0 0 0 3px rgba(115,140,70,0.18);
  --color-nav-bg: #21281B;
  --color-border: #464F45;
  --color-error: #FF4561;
  --color-success: #8CFDAD;
  --color-dark: #191E13;
  --font-display: 'PT Sans', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION ===================== */
header {
  background: var(--color-nav-bg);
  box-shadow: 0 4px 16px 0 rgba(21,34,17, 0.15);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #C8F5B6;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
  padding: 2px 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.cta-primary {
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 12px 30px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 0 8px 0 #8CFDAD, 0 8px 32px -10px #396D3B77;
  cursor: pointer;
  outline: none;
  text-shadow: 0 0 8px #26521e44;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  position: relative;
  margin-left: 16px;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2bc173;
  color: #fff;
  box-shadow: 0 0 0 4px #8CFDAD77, 0 4px 24px -4px #264726BB;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 16px;
  padding: 10px 22px;
  transition: background 0.20s, color 0.20s, border 0.2s, box-shadow 0.2s;
  margin-top: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: #1A2118;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 20px #8CFDAD77;
}

/* Mobile Menu ===================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #8CFDAD;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.2s, transform 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
  transform: scale(1.12);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: #1B2119;
  box-shadow: 4px 0 32px -10px #296d3b2a;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.86,0,0.07,1);
  z-index: 2000;
  padding: 32px 24px 24px 24px;
  gap: 16px;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #8CFDAD;
  font-size: 30px;
  margin-left: auto;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.22s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  transform: scale(1.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 4px;
  width: 100%;
}
.mobile-nav a {
  color: #C8F5B6;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2bc1731c;
  color: #fff;
}

/* MAIN HERO ===================== */
.hero {
  min-height: 54vh;
  background: linear-gradient(132deg, #264726 0%, #396D3B 85%);
  color: #F4F7F2;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 6px 28px 0 #232D2099;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
}
.hero .content-wrapper {
  gap: 20px;
  margin-left: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 700;
  color: #E6FF57;
  text-shadow: 0 4px 32px #26472699;
  margin-bottom: 8px;
}
.hero p {
  font-size: 20px;
  color: #DDF7D8;
  font-family: var(--font-display);
  line-height: 1.35;
  margin-bottom: 8px;
}

/* FEATURE GRID ===================== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 #2bc1731a;
}
.feature-grid, .service-teasers, .profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: space-between;
}
.feature-grid > div,
.service-teasers > div, .profile-card {
  background: #21271d;
  border-radius: 20px;
  flex: 1 1 240px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 2px 12px 0 #8cfdad22;
  border: 1.5px solid #2bc17336;
  transition: box-shadow 0.2s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
}
.feature-grid > div:hover, .service-teasers > div:hover, .profile-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 4px 24px #8CFDAD65, 0 0 0 4px #2bc1732a;
  border: 1.5px solid var(--color-accent);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px #8CFDAD88);
}
.feature-grid h3, .service-teasers h3, .profile-card h3 {
  color: #E6FF57;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-grid p, .service-teasers p, .profile-card p {
  color: #F4F7F2;
  font-size: 16px;
  line-height: 1.42;
}

/* SERVICES OVERVIEW & SERVICE-LIST ===================== */
.services-overview, .service-list {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-teasers, .service-list {
  gap: 24px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #22291E;
  border-radius: 18px;
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  border: 1.5px solid #8CFDAD36;
  box-shadow: 0 2px 12px #8cfdad18;
  transition: box-shadow 0.19s, transform 0.15s;
}
.service-item:hover {
  box-shadow: 0 4px 28px #8CFDAD55, 0 0 0 4px #8CFDAD22;
  transform: translateY(-3px) scale(1.01);
  border: 1.5px solid var(--color-accent);
}
.service-item h3 {
  color: #8CFDAD;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.service-item p, .service-item strong {
  color: #F4F7F2;
  font-size: 15px;
}
.service-item strong {
  color: #E6FF57;
}

/* GENERIC CONTENT: TEXT SECTIONS, LISTS, ETC. ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #8CFDAD;
  margin-bottom: 8px;
}
.text-section ul li, .text-section li {
  color: #F4F7F2;
  font-size: 16px;
  margin-bottom: 8px;
  list-style-type: disc;
  padding-left: 2px;
}
.text-section ul {
  margin-left: 16px;
}
.text-section a {
  color: #8CFDAD;
  border-bottom: 1px dotted #8CFDAD88;
  transition: border-color 0.18s;
}
.text-section a:hover,
.text-section a:focus {
  color: #E6FF57;
  border-bottom: 1px solid #E6FF57;
}
.legal {
  padding: 40px 0 80px 0;
}
.legal h1,
.legal h2 {
  color: #8CFDAD;
  font-family: var(--font-display);
}
.legal .text-section {
  background: #1B2119;
  border-radius: 16px;
  padding: 26px 22px 22px 22px;
  margin-top: 20px;
  box-shadow: 0 2px 16px #a0ffb355;
}

/* TEAM & PROFILES ===================== */
.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.profile-card {
  background: #232D20;
  border-radius: 16px;
  box-shadow: 0 0 12px #8CFDAD22;
  border: 1.2px solid #8CFDAD28;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 324px;
  flex: 1 1 220px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.profile-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 14px #8CFDAD55, 0 0 0 4px #8CFDAD33;
  border: 1.2px solid #8CFDAD;
}

.brand-values ul, .team-values ul {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-values li, .team-values li {
  background: #22291E;
  color: #F4F7F2;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #8CFDAD;
  margin-bottom: 8px;
}

/* CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(90deg, #264726 12%, #396D3B 100%);
  color: #E6FF57;
  border-radius: 22px;
  box-shadow: 0 4px 18px #2bc17322;
  margin-bottom: 40px;
  padding: 36px 0 36px 0;
  text-align: center;
}
.cta-banner p {
  font-family: var(--font-display);
  font-size: 22px;
  color: #E6FF57;
  text-shadow: 0 0 12px #26521e55;
  margin-bottom: 8px;
}

/* FOOTER ===================== */
footer {
  background: var(--color-footer-bg);
  color: #C5EBC5;
  padding: 40px 0 22px 0;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 24px 24px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo img {
  width: 52px;
  height: auto;
  margin-bottom: 16px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a, .legal-nav a {
  color: #C5EBC5;
  font-family: var(--font-display);
  font-size: 16px;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .legal-nav a:hover,
.footer-nav a:focus, .legal-nav a:focus {
  color: #8CFDAD;
}
.footer-contact {
  min-width: 200px;
  flex: 1 1 200px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li img {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  margin-right: 10px;
}
.footer-contact li, .footer-contact a {
  color: #C5EBC5;
  font-size: 15px;
  line-height: 1.4;
  word-break: break-word;
}
.footer-contact a {
  color: #8CFDAD;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #E6FF57;
}

/* THANK YOU PAGE ===================== */
.thanks {
  background: #2E3730;
  border-radius: 20px;
  box-shadow: 0 2px 12px #8CFDAD22;
  padding: 40px 20px;
  margin: 50px 0 30px 0;
}
.thanks .text-section {
  color: #F4F7F2;
  font-size: 18px;
}

/* RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .service-teasers, .profile-list {
    gap: 16px;
  }
}

@media (max-width: 850px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .footer-contact ul, .footer-nav, .legal-nav {
    gap: 10px;
  }
  .feature-grid > div, .service-teasers > div, .profile-card {
    min-width: 190px;
    padding: 18px 12px 16px 12px;
  }
  .service-item {
    padding: 20px 14px 14px 14px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
    font-size: 16px;
    padding: 10px 17px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 25px;
  }
  .hero p {
    font-size: 16px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-teasers, .profile-list {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .section, .features, .services-overview, .service-list, .legal {
    padding: 28px 2vw 22px 2vw;
    margin-bottom: 38px;
  }
  .cta-banner {
    padding: 20px 5vw 22px 5vw;
  }
  .brand-values li, .team-values li {
    padding: 13px;
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  header .container {
    gap: 6px;
  }
  .hero {
    padding: 10px 0 30px 0;
    min-height: 210px;
  }
}

/* ANIMATIONS ===================== */
@keyframes neon-glow {
  0% {
    box-shadow: 0 0 6px #8CFDAD22, 0 0 18px #2bc17322;
  }
  80% {
    box-shadow: 0 0 32px #8CFDAD44, 0 0 40px #2bc17342;
  }
  100% {
    box-shadow: 0 0 6px #8CFDAD22, 0 0 18px #2bc17322;
  }
}
.cta-primary, .cta-secondary {
  animation: neon-glow 3.6s infinite cubic-bezier(0.77,0,0.175,1);
}

/* MICRO INTERACTIONS ===================== */
.cta-primary:active, .cta-secondary:active {
  transform: translateY(1.5px) scale(.96);
  box-shadow: 0 2px 4px #8CFDAD23;
}

/* COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #21281B;
  color: #F4F7F2;
  box-shadow: 0 -4px 24px #26472633;
  padding: 22px 28px 22px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  z-index: 3100;
  font-size: 15px;
  font-family: var(--font-body);
  animation: banner-slideup 0.3s cubic-bezier(0.8,0,0.2,1);
}
@keyframes banner-slideup {
  from {transform: translateY(110%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 15px;
  border-radius: 12px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  letter-spacing: 0.02em;
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #232D20;
  font-weight: 700;
}
.cookie-btn.reject {
  background: #ff3347;
  color: #fff;
  font-weight: 600;
}
.cookie-btn.settings {
  background: transparent;
  color: #8CFDAD;
  border: 1.5px solid var(--color-accent);
  font-weight: 500;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E6FF57;
  color: #232D20;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #d11b33;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #2bc17316;
  color: #E6FF57;
  border-color: #E6FF57;
}
@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px 16px 10px;
    font-size: 14px;
  }
  .cookie-banner__buttons {
    margin-left: 0;
  }
}

/* Cookie Preferences Modal ===================== */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(34,41,30,0.74);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #1B2119;
  color: #F4F7F2;
  border-radius: 16px;
  max-width: 400px;
  width: 95vw;
  box-shadow: 0 4px 44px #232D2040;
  padding: 32px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-up 0.23s cubic-bezier(0.92,0,0.08,1);
}
@keyframes modal-up {
  from {transform: translateY(80px); opacity: 0.5;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: #8CFDAD;
  font-size: 20px;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8CFDAD;
  border-radius: 7px;
  border: 1.2px solid #8CFDAD77;
}
.cookie-category label {
  font-size: 16px;
}
.cookie-category .cookie-essential {
  color: #8CFDAD;
  font-weight: bold;
  margin-right: 4px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 19px;
  background: none;
  color: #8CFDAD;
  border: none;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.17s, transform 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff;
  transform: scale(1.14);
}

/* TESTIMONIALS/REVIEWS ===================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F7F2;
  color: #232D20;
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 2px 18px #232D2066;
  margin-bottom: 20px;
}
.testimonial-card .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8CFDAD44;
  overflow: hidden;
}
.testimonial-card .testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.testimonial-card .testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #396D3B;
}

/* TEXT IMAGE SECTION ======================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* VARIOUS FLEX LAYOUTS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232D20;
  border-radius: 18px;
  box-shadow: 0 2px 12px #8CFDAD15;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px 14px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* MISC ===================== */
::-webkit-scrollbar {
  width: 12px;
  background: #232D20;
}
::-webkit-scrollbar-thumb {
  background: #314A26;
  border-radius: 7px;
  border: 2.5px solid #232D20;
}

/* FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  color: #8CFDAD;
}
h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
p, li, ul, ol, a, button, input, textarea {
  font-family: var(--font-body);
  font-size: 16px;
}

/* VISUAL HIERARCHY, SPACING, WHITE SPACE ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:700px){
  section {
    margin-bottom: 36px;
    padding: 23px 6px;
  }
}

/* VISUAL OVERRIDES for clarity on testimonials/reviews */
.testimonial-card,
.text-image-section,
.card-container,
.card,
.content-grid,
.card-content,
.profile-list,
.profile-card,
.brand-values ul,
.team-values ul,
.section, .features, .services-overview, .service-list {
  margin-bottom: 20px;
}

/* END */
