/* ===================================================================
   CSS RESET & BASELINE 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;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html { font-size: 100%; }
body { background: #F6F7F9; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #143868;
  background: #F6F7F9;
  font-size: 16px;
  min-height: 100vh;
  transition: background 0.2s;
}
img, picture {
  max-width: 100%;
  display: block;
  height: auto;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* ===================================================================
   BRAND VARIABLES AND FONTS
   =================================================================== */
:root {
  --color-primary: #143868;
  --color-secondary: #29A9E7;
  --color-accent: #F6F7F9;
  --color-bg: #FFFFFF;
  --color-card-bg: #FFFFFF;
  --color-footer-bg: #f1f2f4;
  --color-shade: #dde2e8;
  --color-border: #e6e8ec;
  --color-dark: #143868;
  --color-link: #143868;
  --color-link-hover: #29A9E7;
  --color-text: #143868;
  --color-muted: #657693;
  --color-active: #00315A;
  --shadow-1: 0 2px 8px 0 rgba(26,51,96,0.04);
  --shadow-2: 0 4px 16px 0 rgba(20,56,104,0.08);
  --radius: 10px;
  --radius-lg: 18px;
  --navbar-height: 76px;
  --container-max: 1200px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

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

/* ===================================================================
   LAYOUT CONTAINERS & SECTION SPACING
   =================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.15s;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.card-container, .card-grid, .feature-grid, .unique-points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-card-bg);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
.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;
  background: var(--color-accent);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  position: relative;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******************* FLEX ROWS ON DESKTOP *******************/
@media (min-width: 900px) {
  .feature-grid,
  .unique-points-grid,
  .feature-list,
  .feature-icons,
  .testimonial-slider {
    flex-direction: row;
    align-items: stretch;
  }
  .content-grid, .card-container, .card-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
}

@media (max-width: 899px) {
  .feature-grid,
  .unique-points-grid,
  .feature-list,
  .feature-icons,
  .testimonial-slider,
  .content-grid,
  .card-container,
  .card-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===================================================================
   TYPOGRAPHY & HIERARCHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.28;
}
h4 {
  font-size: 1.15rem;
}
.subheadline {
  font-family: var(--font-body);
  color: var(--color-muted);
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-weight: 500;
}
p, ul, ol, li, table, a, span {
  font-family: var(--font-body);
  color: var(--color-dark);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
small {
  font-size: 0.92em;
  color: var(--color-muted);
}
strong { font-weight: 700; }
.text-section, .feature-descriptions, .benefits-description {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul, .feature-list, .feature-icons, .unique-points-grid, .session-benefits, .training-programs-overview, .course-overview, .coaching-options, .workshop-overview, .expert-tips-list {
  padding-left: 0;
  gap: 10px;
}
.text-section ul li, .session-benefits li, .feature-list li, .feature-icons li, .course-overview li, .training-programs-overview li, .unique-points-grid li, .expert-tips-list li, .workshop-overview li {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
  gap: 10px;
}
.text-section ul li:before, .session-benefits li:before, .feature-list li:before, .feature-icons li:before, .course-overview li:before, .training-programs-overview li:before, .unique-points-grid li:before, .expert-tips-list li:before, .workshop-overview li:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background: var(--color-secondary);
  flex-shrink: 0;
}
/* Remove bullet for feature grids that only use icons */
.feature-grid li:before,
.feature-icons li:before,
.unique-points-grid li:before {
  display: none;
}
.feature-grid img, .unique-points-grid img, .feature-list img, .feature-icons img, .session-benefits img {
  width: 32px;
  height: 32px;
  margin-right: 0;
}

/***************************/
/* PRICING TABLES & CARDS  */
/***************************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.pricing-table th,
.pricing-table td {
  padding: 10px 16px;
  border: none;
  background: #f2f3f6;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
.pricing-table th {
  font-weight: 700;
  color: var(--color-secondary);
  background: #e1f4fb;
  font-size: 1.05rem;
}
.pricing-table tr {
  border-radius: var(--radius);
  overflow: hidden;
}
.price {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 8px;
}

/***********************/
/* BUTTONS & CTA LINKS */
/***********************/
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  outline: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
  min-width: 160px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.12s;
}
.cta-primary {
  background: var(--color-secondary);
  color: #fff;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.025);
}
.cta-secondary {
  background: #E9EDF1;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px) scale(1.021);
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/*******************/
/* NAVIGATION MENU */
/*******************/
header {
  background: var(--color-bg);
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
  position: relative;
  background: var(--color-bg);
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--color-secondary);
  background: #e7f5fc;
}
.main-nav .cta-primary {
  margin-left: 22px;
}

/**********************/
/* MOBILE MENU BUTTON */
/**********************/
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  transition: background 0.13s, color 0.17s;
  z-index: 1200;
  position: absolute;
  right: 18px;
  top: 13px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
}

/**************************************/
/* MOBILE MENU OVERLAY & NAVIGATION   */
/**************************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 56, 104, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.5,.58,.14,1.1);
  z-index: 13000;
  width: 100vw;
  height: 100vh;
  box-shadow: var(--shadow-2);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 24px 28px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.9rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.13s;
  z-index: 13100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 36px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: #fff;
  padding: 12px 5px;
  border-radius: var(--radius);
  min-width: 200px;
  transition: background 0.17s, color 0.18s;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 1100px) {
  .main-nav ul {
    gap: 8px;
  }
  .main-nav {
    gap: 10px;
  }
  .footer-brand { flex-basis: 100%; }
}
@media (max-width: 899px) {
  .main-nav ul,
  .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    padding-right: 60px;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  box-shadow: 0 -1px 7px rgba(20,56,104,0.06);
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 20px;
}
footer .container, footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.06rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 10px;
}
.footer-nav a, .footer-legal a {
  color: var(--color-dark);
  font-size: 1.01rem;
  padding: 4px 12px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition: background 0.16s, color 0.14s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--color-secondary);
  color: #fff;
}

/*************************/
/* CONTACT INFORMATION   */
/*************************/
.contact-information {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: column;
}
.contact-information li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-dark);
}
.contact-information img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}
.map-embed {
  background: #f5fafd;
  border-radius: var(--radius);
  margin-top: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-1);
}
.map-embed img { width: 60px; }

/*********************************/
/* HERO – Above the Fold Section */
/*********************************/
section:first-of-type h1 {
  margin-top: 12px;
  font-size: 2.25rem;
}

/*********************************/
/* SERVICES & FEATURES LISTINGS  */
/*********************************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 26px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.09s;
}
.service-list li:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.018);
}
.service-list .price {
  margin-top: 10px;
}

/***********************************/
/* TESTIMONIAL CARDS (REVIEWS)     */
/***********************************/
.testimonial-card {
  font-size: 1.08rem;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 24px 25px 16px 25px;
  min-width: 240px;
  max-width: 360px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.1s;
  border: 1px solid var(--color-border);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-1px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: var(--color-dark);
  margin-bottom: 9px;
}
.testimonial-card span {
  display: block;
  color: #657693;
  font-size: 0.97rem;
}

/********************************************/
/* TABLES (DATENSCHUTZ, LEGAL, ETC)         */
/********************************************/
table {
  margin: 18px 0 10px 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
table th, table td {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 18px;
  background: #f3f7fb;
  color: var(--color-primary);
  border: none;
}
table th {
  background: #e3f1fa;
  color: var(--color-secondary);
  font-weight: 700;
}

/*************************/
/* MODALS & OVERLAYS     */
/*************************/
.modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27, 37, 50, 0.75);
  z-index: 15000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.20s;
}
.modal.active {
  display: flex;
  animation: modalFadeIn 0.25s;
  opacity: 1;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 34px 28px 28px 28px;
  max-width: 410px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-category {
  margin-bottom: 18px;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio]{
  accent-color: var(--color-secondary);
  margin-right: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/****************************************/
/* COOKIE CONSENT BANNER STYLES & ANIM   */
/****************************************/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e0e4ea;
  box-shadow: 0 -3px 28px rgba(30,50,108,0.09);
  padding: 23px 18px 18px 18px;
  z-index: 15000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bannerSlideIn 0.8s cubic-bezier(.5,.8,.15,1.1);
  transition: transform 0.3s ease, opacity 0.5s;
}
@keyframes bannerSlideIn {
  from { transform: translateY(160px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner .cookie-text {
  font-size: 1.07rem;
  font-family: var(--font-body);
  color: var(--color-dark);
  margin-right: 22px;
  max-width: 380px;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1.06rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  transition: background 0.19s, color 0.14s;
  box-shadow: var(--shadow-1);
  margin-right: 0;
}
.cookie-btn.reject {
  background: #e0e6e8;
  color: var(--color-dark);
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b2bec6;
  color: var(--color-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #fff;
  background: var(--color-secondary);
  border-color: var(--color-primary);
}

/****************************/
/* RESPONSIVE DESIGN QUERIES*/
/****************************/
@media (max-width: 899px) {
  .container { padding: 0 8px; }
  .section, main section { padding: 26px 8px; }
  .content-wrapper { gap: 20px; }
  .footer-brand img { height: 28px; }
  .footer-brand { font-size: 0.97rem; }
  .footer-nav, .footer-legal { flex-wrap: wrap; gap: 10px; }
  .service-list, .feature-grid, .testimonial-slider, .unique-points-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-list, .feature-icons { gap: 16px; }
}
@media (max-width: 599px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.15rem; }
  .section, main section { margin-bottom: 30px; padding: 14px 2vw; }
  .testimonial-card { padding: 18px 8px; font-size: 0.98rem; min-width: 95vw; }
  .pricing-table th, .pricing-table td { font-size: 0.96rem; padding: 8px 5px; }
  .service-list li, .card { padding: 16px 7px; min-width: unset; }
  .cookie-modal-content { padding: 18px 7px; max-width: 98vw; }
  #cookie-banner .cookie-text { font-size: 0.97rem; margin-right: 0; }
  #cookie-banner .cookie-actions { gap: 8px; }
}
/***********************/
/* CUSTOM SCROLLBARS   */
/***********************/
::-webkit-scrollbar { width:10px; background: #f5f7fa; }
::-webkit-scrollbar-thumb { background: #dde2e8; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #b9cbe0; }

/****************************/
/* SECTION APPEARANIMATIONS */
/****************************/
.section, main section, .card, .testimonial-card, .service-list li {
  opacity: 0;
  transform: translateY(26px);
  animation: fadein-section 0.54s cubic-bezier(.24,.86,.49,1.1) forwards;
}
@keyframes fadein-section {
  to { opacity: 1; transform: translateY(0); }
}

/***************************************/
/* UTILITIES & MICRO-INTERACTIONS      */
/***************************************/
a, button, .cta-primary, .cta-secondary, .cookie-btn {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/****************************************/
/* ADDITIONAL SCANDINAVIAN-CLEAN FEEL   */
/****************************************/
body {
  background: linear-gradient(120deg, #f5fafc 0%, #F6F7F9 80%);
}
.section, main section, .card, .testimonial-card, .service-list li {
  background: #fff;
  border: 1px solid var(--color-border);
}
.section, main section {
  box-shadow: 0 2px 10px 0 rgba(24,41,120,0.035);
}

/****************************************/
/* FLEX LAYOUT SPECIFIC CLASSES         */
/****************************************/
.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; }

/***************************/
/* Prevent Overlap         */
/***************************/
.section > *, main section > * {
  margin-bottom: 20px;
}
.section:last-child, main section:last-child { margin-bottom: 0 !important; }

/********************************/
/* HIDE GRID/COLUMN PROPERTIES   */
/********************************/
/* Forbidden: display: grid, grid-*, column-count, columns, column-width, break-inside */

/********************************************/
/* ADDITIONAL TWEAKS FOR BRAND & ACCESSIBIL.*/
/********************************************/
::selection { background: #29A9E7; color: #fff; }

/****************************/
/* HIDE ON DESKTOP           */
/****************************/
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/****************************/
/* DISPLAY ON MOBILE         */
/****************************/
@media (max-width: 899px) {
  .mobile-menu-toggle { display: flex !important; }
}
