/* =========================
   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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7FA;
  color: #222;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background: #F4F7FA;
  color: #23476C;
  letter-spacing: 0.01em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #23476C;
  text-decoration: none;
  transition: color 0.21s;
}
a:hover,
a:focus {
  color: #FFD223;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* =========================
   BRAND FONTS (Montserrat, Roboto)
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23476C;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, span, blockquote {
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #23476C;
}
blockquote {
  border-left: 4px solid #FFD223;
  background: #fffbea;
  padding: 18px 32px;
  margin-bottom: 28px;
  font-style: italic;
  font-size: 1.1rem;
}

/* =========================
   GENERAL CONTAINER & LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: center;
  text-align: center;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  border-bottom: 3px solid #FFD223;
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
header img[alt='AutoAuswahl Meister'] {
  height: 42px;
  min-width: 140px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #23476C;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD223;
  border-bottom: 2px solid #FFD223;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD223;
  color: #23476C;
  font-size: 1.12rem;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 32px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  box-shadow: 0 4px 24px rgba(35, 71, 108, 0.10);
  transition: background 0.29s, color 0.19s, box-shadow 0.19s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23476C;
  color: #FFD223;
  box-shadow: 0 8px 32px rgba(35, 71, 108, 0.18);
}
.mobile-menu-toggle {
  display: none;
  background: #FFD223;
  color: #23476C;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 12px rgba(35, 71, 108, 0.10);
  cursor: pointer;
  z-index: 1102;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23476C;
  color: #FFD223;
}

/* =========  MOBILE NAV  ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23476C;
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.5,1.47,.62,1), opacity 0.32s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 32px 0 0 20px;
  font-size: 2.2rem;
  background: #FFD223;
  color: #23476C;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(35,71,108,0.09);
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  padding: 4px 0;
  transition: color 0.21s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD223;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 990px) {
  .btn-primary[href*="kontakt"],
  .btn-primary:not(.mobile){
    display:none;
  }
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: #23476C;
  color: #fff;
  padding: 56px 0 64px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero h1 {
  color: #FFD223;
  font-size: 2.7rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero p {
  max-width: 620px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto 32px auto;
}
.hero .btn-primary {
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: 0 6px 32px rgba(255,210,35,0.18);
}

/* ===============
   FEATURE GRID
   =============== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin: 22px 0 0 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px rgba(35, 71, 108, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 28px 32px 28px;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.17s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 52px rgba(35, 71, 108, 0.13);
}
.feature-grid img {
  width: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.16rem;
  margin: 6px 0 0 0;
  letter-spacing: 0.5px;
}

/* ====== SERVICE CARDS & OVERVIEWS ======= */
.service-list, .service-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 20px rgba(35, 71, 108, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 26px 26px 26px;
  flex: 1 1 210px;
  max-width: 310px;
  min-width: 190px;
  min-height: 232px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.service-card img {
  width: 38px;
  margin-bottom: 2px;
}
.service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #23476C;
}
.service-card p {
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.service-card strong {
  color: #23476C;
  font-weight: 700;
  font-size: 1.08em;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 12px 36px rgba(35, 71, 108, 0.13);
  transform: translateY(-3px) scale(1.025);
}

/* =============
   TIMELINES & STEPS
   ============= */
.steps-overview, .step-by-step-timeline, .import-steps-overview {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  margin: 33px 0 0 0;
}
.steps-overview li, .step-by-step-timeline li, .import-steps-overview li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 17px rgba(35, 71, 108, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 24px 18px 24px;
  min-width: 180px;
  max-width: 230px;
  flex: 1 1 180px;
  text-align: left;
  transition: box-shadow 0.19s, transform 0.12s;
  margin-bottom: 20px;
}
.steps-overview li img,
.step-by-step-timeline li img,
.import-steps-overview li img {
  width: 34px;
  margin-bottom: 8px;
}
.steps-overview li strong,
.step-by-step-timeline li strong,
.import-steps-overview li strong {
  color: #23476C;
}
.steps-overview li:hover, .step-by-step-timeline li:hover, .import-steps-overview li:hover {
  box-shadow: 0 8px 24px rgba(35, 71, 108, 0.12);
  transform: scale(1.025);
}

/* ============ TESTIMONIALS ============ */
.testimonial-list, .customer-testimonial-list, .import-success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 22px rgba(35, 71, 108, 0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 26px;
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  color: #23476C;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.07rem;
  color: #222;
  line-height: 1.5;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #23476C;
}
.testimonial-card .star-ratings {
  color: #FFD223;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px rgba(35, 71, 108, 0.12);
  transform: translateY(-2px) scale(1.03);
}
.before-after-quotes {
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.before-after-quotes blockquote {
  max-width: 680px;
  margin: 0 auto;
  background: #FCF8E3;
  color: #23476C;
}

/* =====================
   FACTS & MINI INFO CARDS
   ===================== */
.facts-and-figures-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
  justify-content: space-between;
}
.facts-and-figures-grid > div, .benefits-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 19px rgba(35, 71, 108, 0.09);
  padding: 28px 24px;
  min-width: 142px;
  flex: 1 1 140px;
  text-align: center;
  font-size: 1.17rem;
  color: #23476C;
  margin-bottom: 20px;
}
.facts-and-figures-grid strong {
  font-size: 2rem;
  color: #FFD223;
  font-family: 'Montserrat', Arial, sans-serif;
}
.benefits-grid img {
  width: 34px;
  display: block;
  margin: 0 auto 10px auto;
}

.benefits-list {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  margin: 18px 0 0 0;
}
.benefits-list li {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(35,71,108,0.07);
  min-width: 160px;
  max-width: 290px;
  align-items: center;
  gap: 8px;
  padding: 16px 12px 16px 18px;
  color: #23476C;
  font-size: 1.02rem;
  display: flex;
  margin-bottom: 20px;
}
.benefits-list img {
  width: 28px;
  margin-right: 8px;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 18px 0 0 0;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  color: #23476C;
  font-weight: 700;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  position: relative;
}
.faq-accordion h3::after {
  content: '+';
  color: #FFD223;
  font-size: 1.4rem;
  position: absolute;
  right: -26px;
  top: 3px;
}
.faq-accordion h3.active::after {
  content: '-';
}
.faq-accordion p {
  display: none;
  color: #23476C;
  background: #fff9e4;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 4px;
  font-size: 1em;
}
.faq-accordion h3.active + p {
  display: block;
}

/* ===============
   COMPANY INFO & MAP
   =============== */
.company-information, .opening-hours {
  font-size: 1.04rem;
  color: #23476C;
  margin-bottom: 18px;
}
.map-embed {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 2px 17px rgba(35,71,108,0.09);
}
.map-embed img {
  width: 72px;
  min-width: 72px;
}

/* ============= FOOTER =============== */
footer {
  background: #23476C;
  color: #fff;
  padding: 34px 0 12px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD223;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.7px;
  padding: 4px 0;
  text-transform: uppercase;
  transition: color 0.22s, border-color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
  border-bottom: 2px solid #fff;
}
.footer-info {
  color: #fff;
  font-size: 0.97rem;
}

/* ===============
   SPACING AND FLEXBOX
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(35,71,108,0.07);
  padding: 22px;
}
.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;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   MEDIA QUERIES
   ================ */
@media (max-width: 1160px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid,
  .service-list,
  .facts-and-figures-grid,
  .benefits-grid,
  .steps-overview,
  .step-by-step-timeline,
  .testimonial-list,
  .import-success-stories {
    gap: 18px;
  }
}
@media (max-width: 860px) {
  .content-wrapper, .text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .service-list, .steps-overview, .facts-and-figures-grid, .benefits-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.43rem;
  }
  .hero h1 {
    font-size: 2.01rem;
  }
  .section {
    padding: 24px 8px;
  }
  .feature-grid li, .facts-and-figures-grid > div, .benefits-grid > div, .benefits-list li {
    max-width: 100%;
    min-width: 120px;
    padding: 22px 10px;
  }
  .service-card {
    min-width: 110px;
    max-width: 100%;
    padding: 18px 10px 18px 10px;
  }
  .steps-overview, .step-by-step-timeline, .import-steps-overview {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-list, .customer-testimonial-list, .import-success-stories {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 21px;
    align-items: center;
  }
  .map-embed {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  h1, .hero h1 {
    font-size: 1.32rem;
  }
  h2 { font-size: 1.12rem; }
  .btn-primary {
    font-size: 0.98rem;
    padding: 12px 18px;
  }
  .main-nav a { font-size: 1rem; }
}

/* ================================
   COOKIE CONSENT BANNER + MODAL
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #222;
  color: #fff;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 0 36px rgba(35,71,108,0.18);
  transition: transform 0.34s, opacity 0.29s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.06rem;
  margin-right: 22px;
  max-width: 400px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD223;
  color: #23476C;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 20px;
  border: none;
  padding: 9px 20px;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #23476C;
  color: #FFD223;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #23476C;
  border: 1.5px solid #FFD223;
}
.cookie-banner button.cookie-settings:hover {
  background: #FFD223;
}
@media (max-width: 610px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 20px 9px;
    text-align: center;
  }
  .cookie-banner p { margin-right: 0; }
  .cookie-banner .cookie-actions { gap: 10px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 71, 108, 0.87);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #23476C;
  border-radius: 18px;
  padding: 38px 32px 32px 32px;
  min-width: 310px;
  max-width: 97vw;
  box-shadow: 0 12px 44px rgba(35,71,108,0.20);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #23476C;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category label {
  font-weight: 700;
  color: #23476C;
}
.cookie-modal-content .cookie-category input[type='checkbox'] {
  width: 19px;
  height: 19px;
  accent-color: #FFD223;
  border-radius: 3px;
  border: 1.7px solid #23476C;
}
.cookie-modal-content .cookie-buttons {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: #FFD223;
  color: #23476C;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #23476C;
  color: #FFD223;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 7px 18px 7px;
  }
}

/* ===============
   MICRO-INTERACTIONS / ANIMATIONS
   =============== */
.btn-primary, .service-card, .feature-grid li, .testimonial-card, .steps-overview li, .cookie-banner, .mobile-menu {
  transition: box-shadow 0.2s, transform 0.19s, background 0.21s, color 0.19s, opacity 0.25s;
}

/* ================================
   ADDITIONAL UTILITIES
   ================================ */
.text-center { text-align: center !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

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