/* =========================================================
   CSS RESET & FONT IMPORTS
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #23211e;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #23211e;
  color: #F5F3EE;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Remove all list-style, reset button border etc. */
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button { cursor: pointer; background: none; }

/* =========================================================
   CSS VARIABLES FOR BRAND COLORS & SIZING
   ========================================================= */
:root {
  --color-primary: #4A3F33; /* Metallisch dunkelbraun */
  --color-secondary: #C8AD7F; /* Brass/metallic gold */
  --color-accent: #F5F3EE; /* Helles accent/creme */
  --color-bg: #23211e; /* Sehr dunkles Braun/Grau */
  --color-metal: #969087; /* Metallischer Urban-Grau */
  --color-error: #8B201D;
  --font-display: 'Merriweather', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(30,26,22,0.16), 0 1.5px 4px rgba(80,70,30,0.08);
  --shadow-card: 0 2px 8px rgba(50,40,30,0.14), 0 1px 4px rgba(80,70,30,0.05);
}

/* =========================================================
   TYPOGRAPHY & HEADING SCALE
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.24;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 8px;
  font-weight: 700;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
p, li, a, span, label, input, textarea {
  font-size: 1rem;
  font-family: var(--font-body);
}
p {
  margin-bottom: 18px;
}
strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
}

.text-section ul, .text-section ol, .content-wrapper ul, .content-wrapper ol {
  margin: 0 0 18px 0;
  padding-left: 0;
}
.text-section ul li, .text-section ol li,
.content-wrapper ul li, .content-wrapper ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  color: var(--color-accent);
}
.text-section ul li:before, .content-wrapper ul li:before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 10px;
}
.text-section ol {
  counter-reset: industrial-ol;
}
.text-section ol li {
  margin-left: 0;
  padding-left: 36px;
}
.text-section ol li:before {
  content: counter(industrial-ol) ". ";
  counter-increment: industrial-ol;
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  color: var(--color-secondary);
}

/* =========================================================
   CONTAINER & SPACING
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #26221b;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Flex containers from mandatory rules */
.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;
}

/* Index-specific feature grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  background: #2c2822;
  border: 1.5px solid var(--color-metal);
  border-radius: var(--radius);
  padding: 22px 18px 18px 18px;
  min-width: 0;
  flex: 1 1 270px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(200,173,127,0.14);
  border-color: var(--color-secondary);
  transform: translateY(-3px) scale(1.02);
}

/* SERVICES (Leistungen) */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-item {
  background: #292724;
  border: 1.5px solid var(--color-metal);
  border-radius: var(--radius);
  padding: 24px 16px 20px 16px;
  flex: 1 1 260px;
  min-width: 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.service-item:hover {
  box-shadow: 0 6px 24px rgba(200,173,127,0.12);
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.01);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(100deg, #3d372b 65%, #4A3F33 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  border-bottom: 3px solid var(--color-secondary);
  box-shadow: 0 8px 44px rgba(50,40,30,0.10);
}
.hero-section .container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero-section h1 {
  color: var(--color-accent);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.19);
}
.hero-section p {
  color: var(--color-secondary);
  font-size: 1.18rem;
  margin-bottom: 28px;
}
.hero-section .cta-btn {
  font-size: 1.08rem;
}



/* =========================================================
   BUTTONS & CTA
   ========================================================= */
.cta-btn, .feature-item a, .service-item a {
  display: inline-block;
  padding: 13px 28px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 28px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1.5px 5px rgba(60,50,30,0.13);
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.22s, color 0.19s, box-shadow 0.17s, transform 0.14s;
  position: relative;
}
.cta-btn:hover, .feature-item a:hover, .service-item a:hover {
  background: #e3cb99;
  color: #23211e;
  box-shadow: 0 8px 20px 0 rgba(200,173,127,0.21);
  transform: translateY(-1.5px) scale(1.025);
}
.cta-btn:focus { outline: 2px solid var(--color-metal); }

/* =========================================================
   HEADER & NAVIGATION (including MOBILE)
   ========================================================= */
header {
  background: #191714;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 2px 16px rgba(50,40,30,0.08);
  position: relative;
  z-index: 50;
}
header .container {
  padding-top: 13px;
  padding-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  /* Urban metallic underline effect */
  border-bottom: 2.5px solid transparent;
  transition: border-bottom 0.16s, color 0.15s;
  letter-spacing: 0.01em;
  position: relative;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2.5px solid var(--color-secondary);
  color: var(--color-accent);
}
header img {
  height: 44px;
  width: auto;
  display: block;
}
header .cta-btn {
  margin-left: 28px;
  margin-right: 0;
  padding: 10px 23px;
  font-size: 1rem;
}
.header-spacer {
  flex: 1 0 0;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  font-size: 2em;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  padding: 5px 12px;
  border-radius: 50%;
  transition: background 0.15s, color 0.19s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,33,30, 0.98);
  box-shadow: 0 10px 40px 0 rgba(74,63,51,0.18);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(0.905,0.035,0.095,0.965);
  overflow-y: auto;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2em;
  margin: 24px 0 12px 0;
  color: var(--color-secondary);
  background: transparent;
  border: none;
  align-self: flex-end;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.19rem;
  color: var(--color-secondary);
  font-weight: 700;
  padding: 10px 0 6px 4px;
  border-bottom: 2px solid transparent;
  border-radius: 0px;
  transition: color .19s, border-bottom 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2px solid var(--color-secondary);
  color: var(--color-accent);
}

/* Hide the main nav and show burger on mobile */
@media (max-width: 980px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: space-between;
    gap: 0;
  }
}

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

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #191714;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -1.5px 14px rgba(74,63,51,0.07);
  color: var(--color-secondary);
  padding: 38px 0 26px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 2px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 1rem;
  transition: color 0.17s;
  font-weight: 600;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--color-metal);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 3px;
}
.footer-social a img {
  height: 22px;
  width: auto;
  opacity: 0.85;
  transition: opacity .2s, filter .18s;
  filter: grayscale(40%) contrast(800%);
}
.footer-social a:hover img {
  opacity: 1;
  filter: none;
}

@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-social { margin-top: 10px; }
}

/* =========================================================
   TESTIMONIALS & CARDS
   ========================================================= */
.testimonial-card {
  background: var(--color-accent);
  color: #322D23;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
  font-size: 1.08rem;
  margin-bottom: 24px;
  flex-direction: column;
  padding: 24px 22px 18px 22px;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--color-secondary);
  position: relative;
  transition: box-shadow 0.17s, border-left-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(80,70,30,0.12);
  border-left-color: var(--color-metal);
}
.testimonial-card p {
  color: #322D23;
  font-family: var(--font-body);
  font-size: 1.07rem;
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-author {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.01rem;
}

.testimonial-summary {
  background: #28251f;
  color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}
.testimonial-summary h2 {
  color: var(--color-secondary);
}
.testimonial-summary ul {
  padding-left: 0;
}
.testimonial-summary li {
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--color-accent);
}

/* =========================================================
   TEXT-IMAGE & GENERIC SECTIONS
   ========================================================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

/* Contact Info List with Icons */
.text-section ul li img, .content-wrapper ul li img {
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-right: 12px;
  position: relative;
  top: 4px;
  filter: grayscale(50%) contrast(110%) brightness(0.93);
}


/* Gallery List styling (if any in the future) */

/* =========================================================
   MISC STYLING (FORMS, LINKS, ETC.)
   ========================================================= */
a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: var(--color-accent);
  text-decoration: underline wavy var(--color-secondary);
}
.content-wrapper a:not(.cta-btn):not(.footer-nav a):not(.mobile-nav a):not(.footer-social a) {
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 2px 0.3em;
  display: inline-block;
  transition: background 0.19s, color 0.16s;
  border-radius: 4px;
}
.content-wrapper a:not(.cta-btn):not(.footer-nav a):not(.mobile-nav a):not(.footer-social a):hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  text-decoration: none;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #201e1a;
  color: var(--color-accent);
  box-shadow: 0 -2px 30px rgba(200,173,127,0.14), 0 -0.5px 5px rgba(100,90,70,0.16);
  z-index: 1100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 26px;
  font-size: 1rem;
  animation: slideup-bounce 0.65s cubic-bezier(.37,1.41,.68,.99);
}
@keyframes slideup-bounce {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-message {
  color: var(--color-accent);
  flex: 1 1 230px;
  margin-right: 22px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 18px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 19px;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 1.5px 9px rgba(200,173,127,0.11);
  transition: background .18s, color 0.16s, transform 0.14s;
}
.cookie-btn.reject {
  background: #23201B;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn.settings {
  background: var(--color-metal);
  color: var(--color-accent);
}
.cookie-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.045);
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%) scale(1);
  min-width: 330px;
  max-width: 99vw;
  width: 410px;
  background: #28251f;
  color: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 8px 80px 0 rgba(0,0,0,0.52);
  z-index: 1201;
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  animation: fadein-modal 0.37s cubic-bezier(.45,1.05,.47,.99);
}
@keyframes fadein-modal {
  from { opacity: 0; transform: translate(-50%,-80%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%,-60%) scale(1); }
}
.cookie-modal h2 {
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  right: 20px; top: 17px;
  background: none;
  color: var(--color-secondary);
  font-size: 2em;
  border: none;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 20px;
  background: #151311;
  border-radius: 999px;
  position: relative;
  outline: 1.5px solid var(--color-metal);
  margin-right: 6px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--color-secondary);
}
.cookie-modal .cookie-toggle-indicator {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #eee2ca;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .cookie-toggle-indicator {
  left: 16px;
}
.cookie-modal .cookie-desc {
  font-size: 0.97rem;
  color: var(--color-metal);
  margin-bottom: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 16px;
  align-items: center;
  width: 100%;
}

/* Disable scroll on body when modal open (should be toggled via JS!) */
body.cookie-modal-open {
  overflow: hidden;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40,37,31,0.7);
  z-index: 1200;
  animation: fadein-overlay 0.27s ease;
}
@keyframes fadein-overlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================================
   MEDIA QUERIES — RESPONSIVE FLEX, TEXT, ETC.
   ========================================================= */
@media (max-width: 1020px) {
  .features-grid, .services-grid {
    flex-direction: column;
    gap: 26px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .hero-section h1 { font-size: 1.65rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .features-grid, .services-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero-section { min-height: 200px; }
  .section { padding: 26px 8px; }
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  .content-wrapper { gap: 16px; }
  .testimonial-card { padding: 17px 10px; }
  .footer-nav, .footer-contact { font-size: 0.93rem; }
  /* Align cards stacked on mobile */
  .features-grid, .services-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    min-width: 0;
    width: 96%;
    margin: 0 auto;
  }
  .testimonial-card { font-size: 0.98rem; }
  .footer-brand img { height: 29px; }
  /* Text-image sections column-reverse for visual balance */
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.12rem; }
  p, li, a, span, label, input, textarea { font-size: 0.97rem; }
  .footer-contact { font-size: 0.88rem; }
  .cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 15px 7px; }
}

/* =========================================================
   MICRO-INTERACTIONS & ACCESSIBILITY
   ========================================================= */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.15s, box-shadow 0.19s, border 0.16s, transform 0.17s;
}
.cta-btn:focus-visible, .cookie-btn:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2.2px solid var(--color-secondary);
  outline-offset: 2.5px;
}

/* ===============================
    OPTIONAL: Scrollbar Styling
   =============================== */
html::-webkit-scrollbar {
  width: 10px;
  background: #181613;
}
html::-webkit-scrollbar-thumb {
  background: #3e382f;
  border-radius: 6px;
}

/* ============================
   Hide elements that need to be visually hidden but remain accessible
   ============================ */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ================================
   Prevent overlapping, adequate spacing for all content elements
   ================================ */
.card, .feature-item, .service-item, .testimonial-card {
  margin-bottom: 24px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* ================================
   Misc. Utility
   ================================ */
.flex-center {
  display: flex; align-items: center; justify-content: center;
}

/* ====================
   END OF INDUSTRIAL MODERN CSS
   ==================== */
