/* ============================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #154164;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F0A202;
  outline: none;
}
ul, ol {
  margin: 0 0 20px 28px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  display: block;
}
hr {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 32px 0;
}
.button, .primary-btn, .secondary-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.primary-btn {
  background: #154164;
  color: #fff;
  box-shadow: 0 2px 8px rgba(21, 65, 100, 0.04);
}
.primary-btn:hover, .primary-btn:focus {
  background: #103151;
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,65,100,0.13);
}
.secondary-btn {
  background: #F0A202;
  color: #fff;
  box-shadow: 0 2px 8px rgba(240,162,2,0.05);
}
.secondary-btn:hover, .secondary-btn:focus {
  background: #ca8504;
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,162,2,0.12);
}
.button {
  background: #fff;
  color: #154164;
  border: 1px solid #154164;
}
.button:hover, .button:focus {
  background: #F1EFEA;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #154164;
  margin-bottom: 16px;
  margin-top: 0;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
p, .subheadline, .faq-answer, .testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  color: #212226;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 20px;
}
.subheadline {
  font-size: 1.2rem;
  color: #1a1a1a;
  opacity: 0.82;
}
strong {
  font-weight: 700;
}
.nowrap {
  white-space: nowrap;
}

/* ================================
   BASIC LAYOUT STRUCTURE & SPACING
   ================================ */
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Grid-like sections via Flexbox */
.features-grid, .pricing-table, .faq-accordion, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.features-grid > div,
.pricing-table > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(21, 65, 100, 0.04);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #F1EFEA;
}
.features-grid > div:hover,
.pricing-table > div:hover {
  box-shadow: 0 6px 22px rgba(21,65,100,0.10);
  transform: translateY(-4px) scale(1.01);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(21, 65, 100, 0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 14px rgba(21,65,100,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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: 24px 24px 18px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(21,65,100,0.06);
  background: #fff;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  border: 1px solid #e3e6eb;
}
.testimonial-card blockquote {
  font-family: Montserrat, Roboto, Arial, sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 8px 0;
  border-left: 3px solid #F0A202;
  padding-left: 16px;
}
.testimonial-meta {
  font-size: 0.94rem;
  color: #154164;
  opacity: 0.95;
}
#testimonials, #dozent-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.map-placeholder {
  background: #F1EFEA;
  border-radius: 16px;
  padding: 22px 24px;
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
  color: #154164;
}

.cta-banner {
  background: #F1EFEA;
  border-radius: 16px;
  padding: 38px 24px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 14px rgba(21,65,100,0.06);
  gap: 20px;
}
.cta-banner h2 {
  margin-bottom: 8px;
  color: #154164;
}
.contact-info {
  background: #F1EFEA;
  border-radius: 14px;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  margin-bottom: 20px;
}
.contact-info ul {
  margin: 0 0 16px 0;
  padding: 0;
}
.contact-info li {
  margin-bottom: 12px;
  list-style: none;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Accordion (static, but styled for possible script) */
.faq-accordion {
  flex-direction: column;
  gap: 18px;
}
.faq-question {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ebecf0;
  box-shadow: 0 1px 6px rgba(21,65,100,0.04);
  padding: 18px 24px 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: box-shadow 0.15s, border 0.15s;
}
.faq-question:hover, .faq-question:focus {
  box-shadow: 0 4px 14px rgba(21,65,100,0.10);
  border: 1px solid #F0A202;
}
.faq-question h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  color: #154164;
}
.faq-answer {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}

/* Pricing table mimics cards */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 30px 0;
}
.pricing-table > div {
  border: 1px solid #F1EFEA;
  border-radius: 18px;
  background: #fff;
  padding: 32px 26px;
  min-width: 240px;
  flex: 1 1 260px;
}
.pricing-table > div h3 {
  color: #154164;
}
.pricing-table > div p {
  font-size: 1.15rem;
  color: #F0A202;
  margin-bottom: 14px;
}
.pricing-table ul {
  margin: 0;
  padding: 0 0 0 16px;
}

/* =============
   HEADER / NAV
   ============= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(21,65,100,0.07);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #154164;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 14px;
  transition: color 0.13s, background 0.13s;
}
header nav a:hover, header nav a:focus {
  background: #F1EFEA;
  color: #F0A202;
}
header nav a.primary-btn {
  padding: 8px 20px;
  margin-left: 10px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #154164;
  cursor: pointer;
  display: none;
  margin-left: 14px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F1EFEA;
  color: #F0A202;
}
header img {
  max-height: 48px;
  margin: 8px 0;
}

/* Only show burger on mobile */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ======================
   MOBILE MENU OVERLAY
   ====================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,65,100, 0.97);
  z-index: 240;
  transform: translateX(-102vw);
  transition: transform 0.32s cubic-bezier(0.83,0,0.17,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 28px 0 24px 22px;
  background: none;
  color: #FFD47C;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-start;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0A202;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 0 0 30px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 6px;
  display: block;
  transition: background 0.15s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0A202;
  color: #154164;
}
.mobile-nav a.primary-btn {
  background: #fff;
  color: #154164;
  margin-top: 18px;
  display: inline-block;
}
@media (max-width: 992px) {
  .mobile-menu {
    padding-top: 0;
  }
}

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

/* ================
   MAIN HERO
   ================ */
.hero {
  background: #F1EFEA;
  padding: 70px 0 60px 0;
  width: 100%;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #154164;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #333;
  opacity: 0.80;
}

/* ===============
   FOOTER SECTION
   =============== */
footer {
  background: #fff;
  padding: 44px 0 28px 0;
  border-top: 1px solid #F1EFEA;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #8d939b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #154164;
}
.brand-info {
  font-size: 1rem;
  color: #212226;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.75;
  margin-bottom: 12px;
}
.brand-info strong {
  display: block;
  font-size: 1.11rem;
  color: #154164;
}
.brand-info img {
  height: 1em;
  width: 1em;
  vertical-align: middle;
  margin-right: 6px;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.social-media a {
  display: inline-block;
  opacity: 0.84;
}
.social-media a:hover, .social-media a:focus {
  opacity: 1;
  transform: scale(1.07);
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ====================== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .features-grid, .pricing-table, .content-grid, #testimonials, #dozent-testimonials {
    gap: 18px;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .features-grid > div,
  .pricing-table > div,
  .testimonial-card,
  .card {
    min-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.99rem;
  }
  h1 {font-size: 1.7rem;}
  h2 {font-size: 1.13rem;}
  h3 {font-size: 1rem;}
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 6px;
  }
  .features-grid,
  .faq-accordion,
  .pricing-table,
  .content-grid,
  #testimonials,
  #dozent-testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div,
  .pricing-table > div,
  .testimonial-card,
  .card {
    padding: 20px 10px;
    border-radius: 10px;
    min-width: unset;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .cta-banner {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .contact-info {
    padding: 16px 10px;
    margin-top: 4px;
  }
  .map-placeholder {
    padding: 12px 8px;
    border-radius: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 6px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1rem;}
  .section { padding: 18px 2vw; }
  .footer-links { gap: 6px; }
}

/* ======================
   MINIMALIST MICRO-UX
   ====================== */
.card, .features-grid > div, .pricing-table > div, .testimonial-card, .faq-question, .cta-banner, .contact-info {
  transition: box-shadow 0.16s, transform 0.15s, border 0.13s;
}
li, .faq-answer, .testimonial-meta, .brand-info, p, .contact-info li {
  transition: color 0.14s, background 0.14s;
}
.primary-btn, .secondary-btn {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, transform 0.13s;
}
.primary-btn:active, .secondary-btn:active, .button:active {
  transform: scale(0.97);
}

/* ===============
   COOKIE CONSENT
   =============== */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 -2px 24px rgba(21,65,100,0.13);
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 4vw 18px 4vw;
  justify-content: space-between;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1), opacity 0.18s;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-msg {
  flex: 1 1 60%;
  color: #1a1a1a;
  font-size: 1rem;
}
#cookie-banner .cookie-actions {
  flex: 1 1 300px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
#cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
#cookie-banner .accept-cookies {
  background: #154164;
  color: #fff;
  margin-right: 4px;
}
#cookie-banner .accept-cookies:hover, #cookie-banner .accept-cookies:focus {
  background: #103151;
}
#cookie-banner .reject-cookies {
  background: #fff;
  color: #154164;
  border: 1px solid #154164;
}
#cookie-banner .reject-cookies:hover, #cookie-banner .reject-cookies:focus {
  background: #F1EFEA;
}
#cookie-banner .cookie-settings {
  background: #F1EFEA;
  color: #154164;
}
#cookie-banner .cookie-settings:hover, #cookie-banner .cookie-settings:focus {
  background: #F0A202;
  color: #fff;
}
@media (max-width: 670px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.96rem;
    padding: 15px 2vw 15px 2vw;
  }
  #cookie-banner .cookie-actions {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,15,31,0.59);
  z-index: 301;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #212226;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(21,65,100,0.15);
  min-width: 320px;
  max-width: 96vw;
  padding: 36px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s cubic-bezier(0.64,0,0.36,1), transform 0.29s cubic-bezier(0.64,0,0.36,1);
}
.cookie-modal .cookie-modal-title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: bold;
  color: #154164;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: #154164;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F0A202;
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 5px 0 8px 0;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #154164;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  width: 34px; height: 20px;
  border-radius: 999px;
  background: #F1EFEA;
  position: relative;
  border: 1px solid #eef0f2;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.14s;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  height: 0; width: 0;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(21,65,100,.07);
  transition: background 0.12s, left 0.19s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  left: 14px;
  background: #F0A202;
}
.cookie-modal .cookie-toggle input:disabled + .slider {
  background: #bbb;
  cursor: not-allowed;
}
.cookie-modal .category-desc {
  color: #575757;
  font-size: 0.97rem;
  margin-bottom: 3px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions .accept-cookies {
  background: #154164;
  color: #fff;
}
.cookie-modal .cookie-modal-actions .accept-cookies:hover, .cookie-modal .cookie-modal-actions .accept-cookies:focus {
  background: #103151;
}
.cookie-modal .cookie-modal-actions .reject-cookies {
  background: #fff;
  border: 1px solid #154164;
  color: #154164;
}
.cookie-modal .cookie-modal-actions .reject-cookies:hover, .cookie-modal .cookie-modal-actions .reject-cookies:focus {
  background: #F1EFEA;
}
.cookie-modal .cookie-modal-actions .save-settings {
  background: #F0A202;
  color: #fff;
}
.cookie-modal .cookie-modal-actions .save-settings:hover, .cookie-modal .cookie-modal-actions .save-settings:focus {
  background: #ca8504;
}
@media (max-width: 510px) {
  .cookie-modal {
    width: 96vw;
    padding: 19px 6vw 22px 6vw;
    min-width: unset;
    font-size: 0.97rem;
  }
}

/* ===== End: COOKIE CONSENT ===== */

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ================
   PREVENT OVERLAP
   ================ */
.features-grid > div,
.pricing-table > div,
.testimonial-card,
.card,
.faq-question {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px !important;
}
.card-container > .card:not(:last-child),
.content-grid > *:not(:last-child),
#testimonials > .testimonial-card:not(:last-child),
#dozent-testimonials > .testimonial-card:not(:last-child) {
  margin-right: 20px;
}

/* ===============
   MISC ELEMENTS
   =============== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  margin-bottom: 18px;
}
.text-section ul li {
  list-style: disc;
  margin-left: 24px;
  color: #1a1a1a;
}
.map-placeholder img {
  margin-right: 6px;
}
a[disabled], button[disabled] {
  opacity: 0.48;
  pointer-events: none;
}

/* Ensure strong color contrast in testimonials */
.testimonial-card, .testimonial-card blockquote, .testimonial-meta {
  color: #1A1A1A;
  background: #fff;
}

/* ENFORCE MINIMALIST SPACING & FLEX */
/* already covered by container, section, grid, card spacing above */

/* ===============
   PRINT/SELECTION
   =============== */
@media print {
  header, footer, #cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
}
::selection {
  background: #F0A202;
  color: #fff;
}
