/* =====================
   CSS RESET & NORMALIZE
   ===================== */
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, 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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181C24;
  color: #F4F4F4;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #E6B200;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFD74C;
  outline: none;
}

/* ==================
   FONTS + TYPOGRAPHY
   ================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600&display=swap');
:root {
  --color-primary: #22334E;
  --color-secondary: #E6B200;
  --color-accent: #F4F4F4;
  --color-bg: #181C24;
  --color-bg-gradient: linear-gradient(120deg, #22334E 0%, #2D415F 60%, #181C24 100%);
  --color-neon: #6ef3ec;
  --color-error: #E34C45;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 32px;
  --spacing-xl: 48px;
  --transition-main: 0.25s cubic-bezier(.36,1.91,.73,.98);
  --border-radius: 16px;
  --shadow: 0 2px 24px 0 rgba(34,51,78,0.18), 0 1.5px 6px 0 rgba(110,243,236,0.07);
  --shadow-card: 0 6px 32px 0 rgba(34,51,78,0.22), 0 2px 8px 0 rgba(110,243,236,0.08);
  --header-height: 84px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: 0.5em;
  text-shadow: 0 2px 16px rgba(110,243,236,0.08), 0 1px 2px rgba(34,51,78,0.10);
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #E6B200;
}
h3 {
  font-size: 1.3rem;
  color: #6ef3ec;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #F4F4F4;
}
p {
  font-size: 1rem;
  margin-bottom: var(--spacing-s);
  color: #E6EAF2;
}
ul, ol {
  margin-left: var(--spacing-m);
  margin-bottom: var(--spacing-s);
}
li {
  margin-bottom: 0.5em;
}
strong, b {
  font-weight: 600;
  color: var(--color-secondary);
}

/* ====================
   LAYOUT STRUCTURE
   ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  margin-bottom: var(--spacing-l);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Spacing/Alignment Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #22334E;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: var(--spacing-m);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  color: #22334E;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  min-width: 260px;
  max-width: 410px;
  margin-bottom: 20px;
  margin-right: 20px;
  border-left: 5px solid #6ef3ec;
}
.testimonial-card p {
  color: #22334E;
  font-size: 1.05em;
}
.testimonial-card span {
  font-size: 1em;
  color: #22334E;
  opacity: 0.65;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom Grids */
.feature-grid, .service-grid, .project-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  flex-direction: row;
}
.feature-grid > div,
.service-grid > div,
.project-highlights-grid > div {
  background: #22334E;
  color: #F4F4F4;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.service-list, .benefit-list, .types-of-buildings, .achievement-list, .faq-accordion, .quicklinks, .step-process {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.service-list > div, .benefit-list ul, .types-of-buildings ul, .achievement-list ul, .faq-accordion > div, .quicklinks ul, .step-process ol {
  background: #22334E;
  border-radius: var(--border-radius);
  padding: 24px 18px;
  color: #F4F4F4;
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 200px;
  margin-bottom: 20px;
}
.icon-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
}
.icon-grid img {
  background: #132034;
  border-radius: 12px;
  padding: 14px;
  width: 62px;
  height: 62px;
  box-shadow: 0 6px 20px 0 rgba(34,51,78,0.19), 0 2px 6px 0 rgba(110,243,236,0.09);
}

.next-steps ul {
  background: #22334E;
  border-radius: var(--border-radius);
  color: #F4F4F4;
  padding: 24px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.legal-text {
  background: #22334E;
  border-radius: var(--border-radius);
  color: #F4F4F4;
  padding: var(--spacing-xl) var(--spacing-m);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--spacing-l);
}
.legal-text a {
  color: #6ef3ec;
  text-decoration: underline;
}
.legal-text a:hover {
  color: #E6B200;
}
.confirmation {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 32px;
}

/* =============
   HEADER & NAV
   ============= */
header {
  width: 100%;
  background: var(--color-bg-gradient);
  box-shadow: 0 2px 16px 0 rgba(34,51,78,0.17);
  min-height: var(--header-height);
  position: relative;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
header img {
  height: 48px;
  margin-right: 26px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-m);
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  color: #F4F4F4;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .06em;
  font-size: 1.06em;
  position: relative;
  padding: 0 4px;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #6ef3ec;
  transition: width 0.25s;
  border-radius: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: var(--font-display);
  letter-spacing: .03em;
  font-weight: 700;
  font-size: 1.05em;
  margin-left: var(--spacing-m);
  border: none;
  background-color: #22334E;
  color: #6ef3ec;
  box-shadow: 0 2px 18px 0 rgba(110,243,236,0.12);
  position: relative;
  text-shadow: 0px 1.5px 12px rgba(110,243,236,0.10);
  cursor: pointer;
  transition: box-shadow var(--transition-main), background 0.18s, color 0.16s;
}
.cta.primary {
  background: #E6B200;
  color: #22334E;
  box-shadow: 0 2px 18px 0 rgba(230,178,0,0.13);
}
.cta:hover, .cta:focus {
  background: #6ef3ec;
  color: #22334E;
  box-shadow: 0 6px 24px 0 #6ef3ec44, 0 2px 8px 0 #22334E11;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD74C;
  color: #22334E;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6ef3ec;
  font-size: 2.25rem;
  z-index: 1100;
  cursor: pointer;
  outline: none;
  padding: 8px 12px;
  transition: background 0.18s;
  border-radius: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22334E55;
  color: #E6B200;
}

/* =============
   MOBILE NAV
   ============= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,51,78,0.98);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.5,1.5,.65,1);
  z-index: 1600;
  box-shadow: 0 8px 38px 0 #13203499;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #E6B200;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  right: 22px;
  top: 22px;
  cursor: pointer;
  z-index: 1650;
  outline: none;
  padding: 7px 15px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6ef3ec22;
  color: #6ef3ec;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 90px;
  margin-left: 28px;
}
.mobile-nav a {
  color: #F4F4F4;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .065em;
  padding: 10px 0 10px 8px;
  border-left: 4px solid transparent;
  border-radius: 4px 0 0 4px;
  transition: background 0.18s, border-color 0.18s, color 0.14s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6B20022;
  color: #6ef3ec;
  border-left: 4px solid #E6B200;
  outline: none;
}

/* ============
   HERO SECTION
   ============ */
main section:first-of-type {
  background: var(--color-bg-gradient);
  position: relative;
  box-shadow: 0 14px 64px 0 #13203445;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 34px;
}
main section:first-of-type h1 {
  font-size: 2.5rem;
  color: #6ef3ec;
  background: none;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px #6ef3ec44;
}
main section:first-of-type p {
  font-size: 1.21rem;
  line-height: 1.6;
  color: #F4F4F4;
  margin-bottom: 25px;
}

/* ===============
   FOOTER STYLES
   =============== */
footer {
  background: #22334E;
  color: #F4F4F4;
  width: 100%;
  position: relative;
  box-shadow: 0 -4px 32px #13203445;  
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 14px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.3rem;
  color: #E6B200;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a, .footer-legal a {
  color: #F4F4F4;
  font-size: 1em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #6ef3ec;
}
.footer-contact {
  font-size: 0.98em;
  color: #F4F4F4;
  line-height: 1.8;
}
footer a {
  text-decoration: none;
  color: #E6B200;
}
.footer-copyright {
  color: #6ef3ec;
  font-size: 0.94em;
  text-align: center;
  margin-top: 16px;
  letter-spacing: .02em;
}

/* ===================
   CTA SECTIONS
   =================== */
section .cta {
  margin-top: 12px;
}

/* ===================
   CONTACT BLOCKS
   =================== */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.address-block, .phone-email-list, .opening-hours {
  background: #22334E;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  color: #F4F4F4;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  font-size: 1.08em;
}
.phone-email-list img {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  margin-right: 4px;
  opacity: .7;
}
.opening-hours {
  font-size: 1em;
  font-style: italic;
  color: #6ef3ec;
}

/* =============
   ACCORDIONS / FAQ
   ============= */
.faq-accordion > div {
  background: #22334E;
  border-radius: 16px;
  margin-bottom: 14px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px #22334E35;
}
.faq-accordion h3 {
  font-size: 1.2rem;
  margin-bottom: 7px;
  color: #E6B200;
}

/* =============
   COOKIE BANNER
   ============= */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #132034;
  color: #F4F4F4;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-m);
  box-shadow: 0 -4px 26px #13203459;
  z-index: 3333;
  padding: 20px 24px 26px 24px;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.23s, visibility 0.21s;
}
#cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#cookie-banner .cookie-banner-message {
  flex: 3;
  color: #F4F4F4;
  margin-right: 16px;
}
#cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}
.cookie-btn, #cookie-banner button {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1em;
  padding: 10px 28px;
  border-radius: 24px;
  border: none;
  margin-left: 5px;
  margin-right: 4px;
  outline: none;
  box-shadow: 0 2px 14px #6ef3ec22;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s;
  background: #22334E;
  color: #6ef3ec;
}
.cookie-btn.accept {
  background: #E6B200;
  color: #22334E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD74C;
}
.cookie-btn.reject {
  background: #E34C45;
  color: #F4F4F4;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b61810;
  color: #F4F4F4;
}
.cookie-btn.settings {
  background: #22334E;
  color: #6ef3ec;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #6ef3ec;
  color: #22334E;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(24,28,36,0.94);
  z-index: 3500;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
  flex-direction: column;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .modal-content {
  background: #22334E;
  color: #F4F4F4;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 40px 32px 36px 32px;
  min-width: 320px;
  min-height: 250px;
  max-width: 98vw;
}
#cookie-modal .modal-content h2 {
  color: #6ef3ec;
  margin-bottom: 12px;
}
#cookie-modal .modal-content .cookie-category {
  margin-top: 18px;
  margin-bottom: 13px;
  font-size: 1.13em;
  display: flex;
  align-items: center;
  gap: 8px;
}
#cookie-modal label.toggle {
  margin-left: 8px;
  font-size: 1em;
  font-weight: 500;
  color: #E6B200;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
#cookie-modal .close-modal {
  background: none;
  border: none;
  color: #6ef3ec;
  font-size: 2.1rem;
  position: absolute;
  right: 38px;
  top: 38px;
  cursor: pointer;
  z-index: 3550;
  outline: none;
  transition: background 0.18s;
  border-radius: 10px;
  padding: 2px 16px 6px 8px;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: #E6B20015;
  color: #E6B200;
}

/* Simple switches */
.toggle-switch {
  appearance: none;
  width: 46px;
  height: 24px;
  background: #132034;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
  vertical-align: middle;
}
.toggle-switch:checked {
  background: #6ef3ec;
}
.toggle-switch::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #F4F4F4;
  border-radius: 50%;
  transition: 0.17s;
}
.toggle-switch:checked::before {
  left: 24px;
  background: #22334E;
}

/* ================
   MICRO-EFFECTS
   ================ */
.card, .feature-grid > div, .service-grid > div, .project-highlights-grid > div, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 36px 0 #6ef3ec33, 0 2px 8px #5f769d33;
  transform: translateY(-4px) scale(1.02);
}

button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #6ef3ec;
  outline-offset: 3px;
}

/* =========================
   RESPONSIVE DESIGN (Mobile)
   ========================= */
@media (max-width: 1024px) {
  .feature-grid>div, .service-grid>div, .project-highlights-grid>div {
    min-width:220px; max-width:300px;
  }
  footer .content-wrapper {
    flex-wrap: wrap;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 932px) {
  .main-nav {
    gap: 10px;
  }
  .feature-grid, .service-grid, .project-highlights-grid {
    gap: 16px;
  }
  .feature-grid>div, .service-grid>div {
    min-width:160px; max-width:100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .main-nav {
    display: none;
  }
  .cta {
    padding: 12px 20px;
    font-size: 1em;
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  header img {
    height: 38px;
    margin-right: 14px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper, .section {
    padding: 20px 3vw;
    margin-bottom: 36px;
    gap: var(--spacing-s);
  }
  .section {
    margin-bottom: 32px;
    padding: 30px 7px;
  }
  .feature-grid, .service-grid, .project-highlights-grid, .card-container, .content-grid, .contact-options {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid>div, .service-grid>div, .project-highlights-grid>div, .card {
    min-width: 0;
    max-width:100%;
    padding: 18px 12px 14px 12px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .icon-grid {
    gap: 12px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97em;
    padding: 10px 10px 12px 12px;
  }
  #cookie-banner .cookie-banner-message {
    margin-right: 0;
  }
}
@media (max-width: 490px) {
  h1 { font-size:1.18rem; }
  h2 { font-size:1.02rem; }
  .container {
    max-width: 99vw;
    padding: 0 1vw;
  }
  .feature-grid > div, .service-grid > div, .card {
    padding: 10px 3vw;
  }
  #cookie-modal .modal-content {
    padding: 19px 6vw 21px 6vw;
    min-width: 98vw;
  }
  .cta, .cookie-btn {
    padding: 8px 10vw;
    font-size: 0.95em;
  }
}
/*
====================
Neon/Tech Accents
====================
*/
.feature-grid > div, .service-grid>div, .card {
  border-left: 3px solid #6ef3ec;
  box-shadow: 0 2px 16px #6ef3ec20, var(--shadow-card);
}
.feature-grid > div:hover, .service-grid>div:hover, .card:hover {
  border-left: 3px solid #E6B200;
  box-shadow: 0 12px 30px #E6B20033;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 16px #6ef3ec66) drop-shadow(0 2px 6px #E6B20033);
  margin-bottom: 6px;
}

/* ===========
   SCROLL BAR
   =========== */
::-webkit-scrollbar {
  width: 10px;
  background: #181C24;
}
::-webkit-scrollbar-thumb {
  background: #22334E;
  border-radius: 16px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6ef3ec;
}

/* ==============
   HELPER CLASSES
   ==============
*/
.mt-s { margin-top: var(--spacing-s); }
.mt-m { margin-top: var(--spacing-m); }
.mt-l { margin-top: var(--spacing-l); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-s { margin-bottom: var(--spacing-s); }
.mb-m { margin-bottom: var(--spacing-m); }
.mb-l { margin-bottom: var(--spacing-l); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.text-center { text-align: center; }

/*
===============================
END  DORTMUNDER BAUWERK CSS
=============================== */
