/*-----------------------------------------------------------
RESET & BASE
-----------------------------------------------------------*/
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,
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/*-----------------------------------------------------------
TYPOGRAPHY
-----------------------------------------------------------*/
:root {
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --color-black: #101010;
  --color-white: #FFF;
  --color-mid-gray: #888;
  --color-light-gray: #EAEAEA;
  --color-bg: #F4F4F9;
  --color-shadow: rgba(30,30,30,0.08);
  --brand-primary: #101010;
  --brand-secondary: #22272A;
  --brand-accent: #F4F4F9;
}
body {
  font-family: var(--font-body);
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 16px;
  letter-spacing: 0;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 14px;
  color: var(--brand-primary);
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/*-----------------------------------------------------------
LAYOUT & CONTAINER CLASSES
-----------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.features, .feature-grid, .features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.features-grid, .feature-grid {
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 4px 28px var(--color-shadow);
  border: 1px solid var(--color-light-gray);
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.feature-item:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border-color: var(--brand-primary);
  transform: translateY(-4px) scale(1.03);
}
.card-container, .blog-list .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 9px;
  box-shadow: 0 2px 16px var(--color-shadow);
  border: 1px solid var(--color-light-gray);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s, transform .16s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  border-color: var(--brand-primary);
  transform: scale(1.016);
  z-index: 1;
}
.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: 26px 26px 20px 26px;
  border-radius: 12px;
  background: var(--color-bg);
  color: var(--brand-primary);
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1.5px solid var(--color-light-gray);
  min-width: 240px;
  max-width: 500px;
  margin-right: 16px;
  margin-bottom: 24px;
  transition: box-shadow .2s, border-color .2s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(18,18,18,0.10);
  border-color: var(--brand-primary);
  transform: translateY(-4px) scale(1.02);
}
.star-ratings {
  color: #181818;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.testimonial-meta {
  color: #555;
  font-size: 1rem;
  font-style: italic;
  margin-top: 4px;
}

/*-----------------------------------------------------------
HEADER & NAVIGATION
-----------------------------------------------------------*/
header {
  background: var(--color-white);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 0;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
header img {
  max-height: 48px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
}
.main-nav a {
  color: var(--brand-primary);
  padding: 8px 4px;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .20s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #000;
}
.main-nav .cta-btn {
  margin-left: 18px;
}
.cta-btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 24px;
  padding: 13px 38px;
  background: var(--brand-primary);
  color: var(--color-white) !important;
  border: 1px solid var(--brand-primary);
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 18px var(--color-shadow);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .18s, transform .17s, box-shadow .2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-white);
  color: var(--brand-primary) !important;
  border: 1.3px solid var(--brand-primary);
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
  transform: translateY(-3px) scale(1.03);
}
.cta-btn.secondary {
  background: var(--color-white);
  color: var(--brand-primary) !important;
  border: 1.3px solid var(--brand-primary);
}
.cta-btn.secondary:hover {
  background: var(--brand-primary);
  color: var(--color-white) !important;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 7px;
  transition: background .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #dedede;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,18,18,0.92);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 56px;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.64,.07,.29,1.54);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 26px;
  margin-top: 8px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .15s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.38rem;
  color: var(--color-white);
  padding: 13px 5px 7px 5px;
  font-weight: 600;
  transition: color .16s;
  border-bottom: 2.5px solid transparent;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #dedede;
  border-bottom: 2.5px solid var(--color-white);
}

/* Desktop nav hide on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu { display:none !important;}
}

/*-----------------------------------------------------------
FOOTER
-----------------------------------------------------------*/
footer {
  background: var(--brand-primary);
  padding: 36px 0 0 0;
  color: var(--color-white);
}
footer .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--color-white);
  opacity: 0.88;
  font-size: 1rem;
  transition: text-decoration .18s, opacity .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  opacity: 0.80;
}
.footer-contact img {
  width: 19px; height: 19px; opacity: 0.94;
}

/*-----------------------------------------------------------
HERO & CTA SECTIONS
-----------------------------------------------------------*/
.hero {
  background: var(--color-white);
  box-shadow: 0 5px 28px var(--color-shadow);
  padding: 74px 0 75px 0;
  text-align: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta {
  background: #181818;
  color: var(--color-white);
  border-radius: 20px;
  padding: 46px 0 46px 0;
  margin-bottom: 60px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--color-white);
  margin-bottom: 22px;
}
.contact-shortcut {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.90;
}

/*-----------------------------------------------------------
BLOG CATEGORIES & ARTICLE LIST
-----------------------------------------------------------*/
.blog-list .categories-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.categories-nav a {
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 17px;
  border-radius: 22px;
  background: #ececec;
  color: #242424;
  transition: background .18s, color .18s;
}
.categories-nav a.active, .categories-nav a:hover, .categories-nav a:focus {
  background: var(--brand-primary);
  color: var(--color-white);
}
.blog-list .post-list {
  flex-direction: column;
}
.blog-list .post-list li {
  background: var(--color-white);
  padding: 30px 26px 23px 26px;
  border-radius: 10px;
  box-shadow: 0 1px 14px var(--color-shadow);
  border: 1px solid var(--color-light-gray);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow .2s, border-color .2s, transform .14s;
}
.blog-list .post-list li:hover {
  box-shadow: 0 8px 22px rgba(14,14,14,0.10);
  border-color: var(--brand-primary);
  transform: translateY(-3px) scale(1.01);
}

.newsletter {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 7px 20px var(--color-shadow);
  margin-bottom: 60px;
}
.newsletter .content-wrapper {
  align-items: flex-start;
}

/*-----------------------------------------------------------
TEAM
-----------------------------------------------------------*/
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.team-member {
  background: var(--color-white);
  padding: 27px 20px 22px 24px;
  border-radius: 10px;
  box-shadow: 0 1px 14px var(--color-shadow);
  border: 1px solid var(--color-light-gray);
  min-width: 210px;
  flex: 1 1 260px;
  transition: box-shadow .19s, border-color .19s, transform .13s;
}
.team-member:hover {
  box-shadow: 0 8px 22px rgba(14,14,14,0.11);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

/*-----------------------------------------------------------
TIMETABLE GRID (KURSE)
-----------------------------------------------------------*/
.timetable-grid {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 32px;
}
.timetable-grid table {
  border-collapse: collapse;
  min-width: 600px;
  width: 100%;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 18px;
}
.timetable-grid th, .timetable-grid td {
  border: 1px solid var(--color-light-gray);
  text-align: center;
  padding: 18px 9px;
  font-size: 1.05rem;
}
.timetable-grid th {
  background: #181818;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
}
.timetable-grid tr:nth-child(even) td {
  background: #f7f7f7;
}
.filter-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.filter-options button {
  padding: 8px 22px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
  border: 1px solid var(--color-mid-gray);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: background .17s, color .17s, border-color .16s, box-shadow .19s;
}
.filter-options button:hover, .filter-options button:focus {
  background: var(--brand-primary);
  color: var(--color-white);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.class-descriptions {
  margin-top: 16px;
}
.class-descriptions ul {
  margin-bottom: 0;
}
.class-descriptions li {
  margin-bottom: 6px;
}

/*-----------------------------------------------------------
EVENTS
-----------------------------------------------------------*/
.events .upcoming-events {
  margin-bottom: 20px;
}
.event-highlights {
  margin-bottom: 24px;
}
.event-benefits .feature-grid {
  margin-bottom: 18px;
}

/*-----------------------------------------------------------
MISC & CARDS
-----------------------------------------------------------*/
.suitability-notes ul {
  margin: 0 0 0 0;
}
.suitability-notes li {
  margin-bottom: 8px;
}
.next-steps ul {
  margin-bottom: 0;
}
.next-steps li {
  margin-bottom: 8px;
}

/* Legal/Policy sections */
.legal {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal .text-section {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* Cookie consent banner & modal */
#cookie-consent-banner, .cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232323e6;
  color: #fff;
  padding: 30px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.13);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.33s, transform 0.33s;
}
#cookie-consent-banner.show, .cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0); 
}
.cookie-banner .cookie-btns, #cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-banner button, #cookie-consent-banner button {
  padding: 10px 32px;
  border-radius: 24px;
  border: none;
  background: var(--color-white);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  box-shadow: 0 1px 12px var(--color-shadow);
  transition: background .17s, color .17s, box-shadow .13s;
}
.cookie-banner button:hover, #cookie-consent-banner button:hover,
.cookie-banner button:focus, #cookie-consent-banner button:focus {
  background: var(--brand-primary);
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}
.cookie-banner .cookie-settings-link {
  text-decoration: underline;
  color: var(--color-bg);
  cursor: pointer;
  font-size: 1.01rem;
  margin-top: 8px;
  opacity: 0.95;
  transition: color .15s;
}
.cookie-banner .cookie-settings-link:hover, .cookie-banner .cookie-settings-link:focus {
  color: var(--brand-accent);
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,23,23,0.87);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s, transform 0.34s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.cookie-modal .cookie-modal-content {
  background: var(--color-white);
  color: var(--brand-primary);
  border-radius: 18px;
  max-width: 440px;
  padding: 38px 29px;
  box-shadow: 0 12px 62px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 17px;
  background: #ececec;
  border: none;
  color: #222;
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #181818;
  color: var(--color-white);
}
.cookie-modal .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  padding: 11px 0;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-family: var(--font-body);
  font-size: 1.04rem;
}
.cookie-modal .toggle {
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #d1d1d1;
  border-radius: 22px;
  transition: background-color .18s;
}
.cookie-modal .toggle input:checked + .slider {
  background-color: var(--brand-primary);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-modal .toggle input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .always-on {
  opacity: 0.60;
  font-size: 0.98rem;
  margin-left: 5px;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
}

/*-----------------------------------------------------------
RESPONSIVE DESIGN (MOBILE-FIRST)
-----------------------------------------------------------*/
@media (max-width: 1180px) {
  .container { max-width: 96vw; }
}
@media (max-width:930px) {
  .team-list, .features-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .footer-nav, .footer-contact { width: 100%;}
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
  .footer-nav { justify-content: flex-start; gap: 14px;}
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .section, .legal {
    padding: 29px 7vw 27px 7vw;
    margin-bottom: 38px;
  }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 16px; }
  .feature-item, .testimonial-card, .team-member, .card {
    max-width: 98vw;
    min-width: 0;
    padding: 20px 8vw 18px 8vw;
  }
  .card-container, .content-grid, .features-grid, .team-list, .feature-grid, .testimonial-slider {
    gap: 15px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .hero, .cta { padding: 33px 0 33px 0; }
}
@media (max-width: 540px) {
  .hero { padding: 24px 0 24px 0; }
  .section, .legal {
    padding: 17px 2vw 16px 2vw;
  }
  .footer-contact p {
    font-size: 0.96rem;
  }
  .main-nav .cta-btn {
    margin-left: 6px;
  }
}

/*-----------------------------------------------------------
MODERN MICRO-INTERACTIONS
-----------------------------------------------------------*/
button, .cta-btn {
  transition: background .18s, color .18s, box-shadow .15s, transform .12s;
}
.feature-item img, .team-member img {
  transition: transform .18s;
}
.feature-item:hover img, .team-member:hover img {
  transform: scale(1.08);
}
.hero h1, .hero .subheadline, .cta h2, .cta-btn {
  transition: color .18s, background .16s;
}
.card, .testimonial-card {
  transition: box-shadow .2s, border-color .2s, transform .13s;
}

/*-----------------------------------------------------------
MISC STYLE FIXES & HELPERS
-----------------------------------------------------------*/
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

hr {
  border: none;
  border-bottom: 1.5px solid #ececec;
  margin: 38px 0;
}

/*-----------------------------------------------------------
KEYS FOR ACCESSIBILITY
-----------------------------------------------------------*/
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed var(--brand-primary);
  outline-offset: 2px;
}

/*-----------------------------------------------------------
SPECIAL: ENSURE NO OVERLAPPING, SPACING & ALIGNMENT
-----------------------------------------------------------*/
.section, .card-container > * , .content-grid > *, .features-grid > *, .feature-grid > * , .team-list > *, .testimonial-slider > * , .post-list > * {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features-grid, .feature-grid, .team-list, .testimonial-slider {
  gap: 24px;
}

/*-----------------------------------------------------------
SPECIAL: TESTIMONIALS - ALWAYS DARK TEXT ON LIGHT BACKGROUND
-----------------------------------------------------------*/
.testimonial-card, .testimonial-slider .testimonial-card, .testimonials .testimonial-card {
  background: var(--color-bg);
  color: #161616;
}

/*-----------------------------------------------------------
SPECIAL: Z-INDEX STACKING FOR HEADER, MOBILE NAV, MODALS
-----------------------------------------------------------*/
header { z-index: 30; }
.mobile-menu { z-index: 2000; }
.cookie-modal { z-index: 4000; }
#cookie-consent-banner, .cookie-banner { z-index: 3000; }

/*-----------------------------------------------------------
END
-----------------------------------------------------------*/
