/* =================================================
   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,
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F3EE;
  color: #252525;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B4975A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.32,.72,.48,.52);
}
a:hover, a:focus {
  color: #E88342;
  outline: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2C3E50;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #2C3E50;
}
p {
  margin-bottom: 16px;
}
/* =========================
   Vibrant/Energetic Colors
========================= */
:root {
  --primary: #2C3E50;
  --secondary: #B4975A;
  --accent: #F6F3EE;
  --electric-pink: #FF2753;
  --electric-blue: #4273FF;
  --electric-orange: #E88342;
  --card-bg: #FFF;
  --shadow: rgba(44, 62, 80, 0.15);
}

/* =========================
   Container Layouts
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (min-width: 992px) {
  .section {
    padding: 60px 0px;
  }
}

/* =====================================
   Vibrant/Energetic Brand Card Styles
===================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  flex: 1 1 300px;
  background: var(--card-bg);
  box-shadow: 0 4px 16px 0 var(--shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 32px 28px 28px 28px;
  transition: box-shadow 0.23s cubic-bezier(.2,.55,.48,1), transform 0.23s cubic-bezier(.2,.55,.48,1);
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(66,115,255,0.10), 0 2px 8px 0 var(--shadow);
  transform: translateY(-2px) scale(1.025);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(236,104,108,0.09), 0 0.5px 4px 0 rgba(44,62,80,0.09);
  padding: 32px 32px 24px 32px;
  margin-bottom: 32px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(255,39,83,0.06), 0 1.5px 8px 0 rgba(44,62,80,0.07);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0;
}
.testimonial-meta {
  color: #222;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-meta span:first-child {
  color: var(--electric-orange);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.benefits-list > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 var(--shadow);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefits-list > div:hover {
  box-shadow: 0 10px 36px 0 rgba(66,115,255,0.12), 0 1px 8px 0 var(--shadow);
  transform: translateY(-2px) scale(1.025);
}
.benefits-list img {
  max-width: 56px;
  margin: 0 auto 12px auto;
}
.benefits-list h3 {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ===============================
   Buttons & Interactive Elements
=============================== */
.btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-orange));
  color: #FFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(255,39,83,0.13);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.16s cubic-bezier(.56,.26,.44,.87), transform 0.22s, box-shadow 0.18s;
  margin-top: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--electric-orange), var(--electric-pink));
  color: #FFF;
  transform: scale(1.045);
  box-shadow: 0 6px 22px 0 rgba(232,131,66,0.14);
}

/* Link Buttons (footer-nav etc.) */
.footer-nav a,
.mobile-nav a {
  padding: 9px 15px;
  margin-right: 8px;
  border-radius: 22px;
  color: var(--secondary);
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-orange);
  color: #FFF;
}


/* ======================================
   Header / Navigation / Logo / Burger
====================================== */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 1px 18px 0 var(--shadow);
  padding: 0;
  position: relative;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 14px;
  flex: 2 1 auto;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 1.07rem;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric-pink);
  color: #FFF;
}
header .btn-primary {
  margin-left: 24px;
  padding: 12px 25px;
  font-size: 1.04rem;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--electric-pink);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 1040;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--electric-blue);
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===============================
   Mobile Menu Overlay
=============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2C3E50EE;
  z-index: 1320;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.69,.36,.22,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 14px 22px 0 0;
  cursor: pointer;
  z-index: 1420;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 0 32px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.23rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-orange);
  background: rgba(255,39,83,0.09);
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================================
   HERO Section / Headline Section
================================ */
.hero {
  background: linear-gradient(124deg, var(--electric-blue) 5%, var(--electric-pink) 65%, var(--accent) 98%);
  color: #FFF;
  padding: 60px 0 40px 0;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: #FFF;
  margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(44,62,80,0.06);
}
.hero p {
  font-size: 1.25rem;
  color: #F4ECE4;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 24px 0;
    min-height: 220px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ==============================
   Main Content Spacing Patterns
============================== */
main {
  padding-top: 14px;
  padding-bottom: 18px;
}
/*.section already defined above */

.features {
  margin-bottom: 48px;
}
.features ul {
  margin-bottom: 22px;
}
.features li {
  padding: 7px 0;
  font-size: 1.06rem;
}

/* =======================
   Team Section & Profiles
======================== */
.team-section {
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 4px 24px 0 var(--shadow);
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.team-member {
  flex: 1 1 260px;
  min-width: 220px;
  background: #FAFAFB;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  padding: 28px 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.team-member:hover {
  box-shadow: 0 10px 32px 0 rgba(66,115,255,0.09), 0 1px 10px 0 var(--shadow);
  transform: scale(1.015);
}
.team-values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.team-values li {
  padding: 7px 20px;
  border-radius: 18px;
  background: var(--electric-blue);
  color: #FFF;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 7px;
}

/* =====================
   Gallery Section
===================== */
.gallery-section h1 {
  color: var(--primary);
}
.project-story {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 var(--shadow);
  margin-bottom: 30px;
  padding: 28px 23px 20px 23px;
  position: relative;
}
.project-story h2 {
  color: var(--electric-pink);
}
.project-story ul {
  margin: 12px 0 16px 14px;
}
@media (max-width: 768px) {
  .project-story {
    padding: 16px 8px;
  }
}

/* ======================
   Process / Ablauf
====================== */
.workflow-section ol {
  margin-left: 20px;
  margin-bottom: 24px;
}
.workflow-section li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #FFF;
  box-shadow: 0 2px 12px 0 var(--shadow);
  border-radius: 13px;
  padding: 22px 18px;
  position: relative;
}
.faq-item h3 {
  color: var(--electric-blue);
  margin-bottom: 7px;
}

/* =================
   CTA Section
================= */
.cta {
  background: linear-gradient(90deg, var(--electric-pink) 20%, var(--electric-orange) 90%);
  border-radius: 32px;
  margin-top: 16px;
  padding: 38px 0;
  text-align: center;
  box-shadow: 0 2px 22px 0 rgba(255,39,83,0.06);
}
.cta .btn-primary {
  background: #FFF;
  color: var(--electric-pink);
  font-size: 1.04rem;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 2px 12px 0 rgba(66,115,255,0.14);
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: var(--electric-orange);
  color: #FFF;
}

/* ====================
   Cookie Consent Banner
==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF;
  border-top: 3px solid var(--electric-pink);
  box-shadow: 0 -2px 22px 0 rgba(44,62,80,0.16);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 18px 22px 30px;
  animation: cookie-slide-in 0.44s cubic-bezier(.23,.71,.58,.96) 1;
  font-size: 1rem;
}
@keyframes cookie-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 5 1 320px;
  color: #212c37;
  margin-bottom: 8px;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 2 1 150px;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  font-size: 1.01rem;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: var(--electric-orange);
  color: #FFF;
}
.cookie-btn.accept:hover {
  background: var(--electric-pink);
}
.cookie-btn.reject {
  background: #e9eaec;
  color: #2C3E50;
}
.cookie-btn.reject:hover {
  background: #FFD9E1;
  color: var(--electric-pink);
}
.cookie-btn.settings {
  background: var(--electric-blue);
  color: #FFF;
}
.cookie-btn.settings:hover {
  background: var(--secondary);
}

/* ============
 Cookie Modal
============= */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 11900;
  background: rgba(44,62,80,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #FFF;
  border-radius: 26px;
  box-shadow: 0 8px 44px 0 rgba(44,62,80,0.21);
  padding: 36px 28px;
  width: 88vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-slide-up 0.37s cubic-bezier(.24,.76,.63,.96) 1;
  position: relative;
}
@keyframes modal-slide-up {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--electric-pink);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 9px 0;
}
.cookie-category-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #eee;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.cookie-category-toggle:checked {
  background: var(--electric-blue);
}
.cookie-category-toggle:before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  transition: transform 0.21s, background 0.21s;
}
.cookie-category-toggle:checked:before {
  transform: translateX(19px);
  background: var(--electric-orange);
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.cookie-modal .close-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--electric-pink);
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--electric-orange);
}

/* =========================
   Blog Teaser/List Section
========================= */
.blog-list {
  margin-bottom: 56px;
}
.blog-teaser {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 var(--shadow);
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.blog-teaser:hover {
  box-shadow: 0 8px 24px 0 rgba(255,39,83,0.09), 0 2px 8px 0 var(--shadow);
  transform: translateY(-2px) scale(1.017);
}
.blog-teaser h3 {
  color: var(--electric-blue);
  margin-bottom: 6px;
}
.blog-teaser a {
  color: var(--electric-pink);
  font-weight: bold;
  margin-top: 7px;
  font-family: 'Playfair Display', serif;
}
.blog-teaser a:hover, .blog-teaser a:focus {
  color: var(--secondary);
}
.category-filter {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.category-filter a {
  color: var(--electric-blue);
  background: #e3edff;
  padding: 2px 12px;
  border-radius: 14px;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.category-filter a:hover {
  background: var(--electric-orange);
  color: #FFF;
}

/* ===================
   Contact Section
=================== */
.contact-section h1 {
  color: var(--electric-blue);
}
.contact-info {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  padding: 22px 20px 14px 20px;
  margin-bottom: 18px;
}
.map-placeholder {
  background: #F7F7FB;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 var(--shadow);
  padding: 18px 14px 11px 14px;
  margin-bottom: 14px;
}

/* ===================
   Privacy & TOS etc.
==================== */
.privacy-section, .gdpr-section, .cookie-policy, .tos-section {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  margin-top: 24px;
  margin-bottom: 42px;
  padding: 32px 22px 20px 22px;
}
.privacy-section h2, .gdpr-section h2, .cookie-policy h2, .tos-section h2 {
  color: var(--electric-orange);
  margin-bottom: 10px;
}

/* ===================
   Footer
=================== */
footer {
  background: linear-gradient(90deg, var(--electric-pink) 3%, var(--primary) 90%);
  color: #FFF;
  padding: 36px 0 24px 0;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 210px;
  font-size: 0.97rem;
  color: #F6F3EE;
}
.brand-info img {
  margin-bottom: 9px;
  height: 32px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px; height: 32px;
  filter: drop-shadow(0 1px 2px rgba(35,46,77,0.14));
}
.site-copyright {
  width: 100%;
  margin-top: 14px;
  color: #ffe4cf;
  font-size: 0.98rem;
  text-align: left;
}
@media (max-width: 992px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ====================
   Thank You Section
==================== */
.thank-you-section {
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  margin: 40px 0 24px 0;
  padding: 48px 30px 36px 30px;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--electric-orange);
  font-size: 2.2rem;
}
.thank-you-section h2 {
  font-size: 1.32rem;
  color: var(--electric-blue);
  margin-bottom: 14px;
}

/* =================================
   Responsive Styles (Mobile first)
================================= */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .card-container, .team-profiles, .benefits-list, .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  .card, .team-member, .feature-item, .testimonial-card, .blog-teaser, .project-story {
    padding-left: 12px;
    padding-right: 12px;
    min-width: 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .footer-social {
    margin-top: 16px;
    gap: 18px;
  }
  .footer-nav {
    gap: 8px;
    margin-bottom: 7px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  .btn-primary {
    padding: 13px 18px;
    font-size: 1rem;
  }
  .cta {
    padding: 20px 2px;
    border-radius: 17px;
  }
  footer .content-wrapper {
    gap: 14px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .hero h1 { font-size: 1.77rem; }
}

/* =====================
   Microinteractions
===================== */
.btn-primary, .cookie-btn, .footer-nav a, .main-nav a, .mobile-nav a, .category-filter a {
  transition: background 0.16s, color 0.14s, box-shadow 0.16s, transform 0.16s;
}
.card, .testimonial-card, .feature-item, .team-member, .faq-item, .project-story, .blog-teaser {
  transition: box-shadow 0.18s, transform 0.15s;
}

/* ==============
 Misc Utilities
=============== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mr-1 { margin-right: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-1 { margin-top: 8px; }

/* === Hide cookie modal/modal overlay until triggered === */
.cookie-modal-overlay { display: none; }
.cookie-modal-overlay.open { display: flex; }

/* TAL: All class selectors according to html structure. No grid, no columns */
