/* =========================================================
   CSS RESET & BASE TYPOGRAPHY
========================================================= */
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 {
  scroll-behavior: smooth;
}
body {
  background: #191C22;
  color: #f5f7fa;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #4B89DC;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F9D846;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
::-webkit-input-placeholder { color: #a1adc3; }
::-moz-placeholder { color: #a1adc3; }
:-ms-input-placeholder { color: #a1adc3; }
::placeholder { color: #a1adc3; }
/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #f9fafc;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #e0e5ef;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
}
li {
  margin-bottom: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================================================
   LAYOUT, FLEX & CONTAINERS
========================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #22242a;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(26,37,72,0.13);
  border: 1.5px solid #353945;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.card:hover {
  border-color: #4B89DC;
  box-shadow: 0 8px 18px rgba(26,37,72,0.20);
  transform: translateY(-2px) scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.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;
  background: #f5f7fa;
  color: #1A2548;
  border-radius: 10px;
  border-left: 4px solid #4B89DC;
  box-shadow: 0 2px 14px rgba(26,37,72,0.12);
  position: relative;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #243259;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #4B89DC;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  background: #242937;
  border-radius: 10px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 2px 8px rgba(59,68,92,0.18);
  border: 1.5px solid #31384a;
  transition: border-color 0.2s, transform 0.18s;
}
.feature-item:hover {
  border-color: #F9D846;
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: grayscale(20%) contrast(1.5);
}

/* Sections separation */
section {
  margin-bottom: 60px;
  padding-top: 18px;
}
section:last-child {
  margin-bottom: 0;
}

/* =========================================================
   HEADER & NAVBAR
========================================================= */
header {
  background: #1A2548;
  border-bottom: 2px solid #21283B;
  box-shadow: 0 2px 10px rgba(26,37,72,0.065);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header > a img {
  height: 44px;
  margin: 16px 0 16px 0;
  display: block;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 1.5rem;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.018em;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
  color: #f5f7fa;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #242F4B;
  color: #F9D846;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2548;
  background: #F9D846;
  border: none;
  border-radius: 8px;
  padding: 11px 30px;
  font-size: 1.10rem;
  margin-left: auto;
  margin-right: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  box-shadow: 0 2px 7px rgba(196,186,95,0.11);
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255,255,255,0.11);
  transition: background 0.19s, color 0.18s, box-shadow 0.20s;
}
.cta-button:hover, .cta-button:focus {
  background: #FFE35D;
  color: #1A2548;
  box-shadow: 0 4px 18px rgba(249,216,70,0.20);
  text-decoration: none;
  transform: translateY(-1.5px) scale(1.025);
}

/* Hide menu button on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* header layout */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 64px;
  position: sticky;
  top: 0;
  background: #1A2548;
  z-index: 100;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  background-color: #232837;
  background-image: linear-gradient(95deg, #1A2548 74%, #2E384D 100%);
  color: #f9fafc;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #22242a;
}
.hero .container {
  min-height: 250px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #F9D846;
}
.hero p {
  color: #dde1e5;
  font-size: 1.17rem;
  max-width: 580px;
}
.hero .cta-button {
  margin-top: 18px;
}

/* =========================================================
   CARDS, FEATURES, PREVIEWS, FAQ, METRICS
========================================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 28px 0;
}
.course-card {
  background: #232837;
  color: #f9fafc;
  border-radius: 10px;
  border: 1.5px solid #353945;
  padding: 30px 24px 24px;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 275px;
  box-shadow: 0 2px 11px rgba(26, 37, 72, 0.13);
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.18s;
}
.course-card h3 {
  color: #F9D846;
}
.course-card:hover {
  border-color: #4B89DC;
  box-shadow: 0 6px 24px rgba(75, 137, 220, 0.22);
  transform: translateY(-2px) scale(1.017);
}

.metrics .client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin: 24px 0 12px 0;
}
.metrics .client-logos img {
  height: 54px;
  width: auto;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.18s;
}
.metrics .client-logos img:hover {
  filter: grayscale(0%) contrast(1.1);
  opacity: 1;
}

.articles-list, .tips-grid, .downloadables-list {
  background: #22242a;
  border-radius: 8px;
  border: 1px solid #2C3341;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px rgba(26, 37, 72, 0.07);
}

.faq-preview, .faq-accordion {
  background: #232837;
  border-radius: 8px;
  border: 1.5px solid #353945;
  padding: 20px 16px;
  margin-top: 20px;
}
.faq-item + .faq-item {
  margin-top: 18px;
}
.faq-item h3 {
  color: #F9D846;
  margin-bottom: 7px;
  font-size: 1rem;
}

.qualifications-list, .teaching-philosophy, .about-preview, .team-preview, .why-us, .location, .legal, .thank-you, .cookie-banner, .cookie-modal {
  background: #242937;
  border-radius: 10px;
  padding: 36px 24px;
  margin-bottom: 32px;
  border: 1.5px solid #31384a;
  box-shadow: 0 2px 8px rgba(59,68,92,0.13);
}

.contact-details p, .contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #e1e6ef;
}

/* =========================================================
   CTA & NEWSLETTER SECTION
========================================================= */
.cta {
  background: #1A2548;
  color: #f9fafc;
  border-radius: 10px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px rgba(26,37,72,0.11);
  border: 1.5px solid #31384a;
  padding: 46px 22px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #F9D846;
  font-size: 2rem;
}
.newsletter {
  background: #22242a;
  border-radius: 10px;
  box-shadow: 0 3px 11px rgba(26,37,72,0.08);
  padding: 34px 21px;
}
.newsletter h2 {
  color: #F9D846;
}

/* =========================================================
   TEAM & BIOS
========================================================= */
.team, .team-preview {
  background: #232837;
  border-radius: 10px;
  border: 1.5px solid #31384a;
  box-shadow: 0 2px 8px rgba(59,68,92,0.13);
}
.instructor-bio {
  margin-bottom: 28px;
  background: #22242a;
  border-left: 4px solid #4B89DC;
  padding: 22px 18px 16px 18px;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(59,68,92,0.10);
}
.instructor-bio h3 {
  color: #F9D846;
}
.teaching-philosophy h3 {
  color: #F9D846;
}
/* =========================================================
   FOOTER
========================================================= */
footer {
  background: #191C22;
  border-top: 2px solid #22242a;
  padding: 28px 0;
  color: #f5f7fa;
  box-shadow: 0 -2px 7px rgba(26,37,72,0.08);
}
footer .container {
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer nav a {
  color: #A3AABB;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
  border-radius: 3px;
  padding: 5px 10px;
}
footer nav a:hover, footer nav a:focus {
  color: #F9D846;
  background: #262c39;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #DFE3FC;
  font-size: 0.96rem;
  font-weight: 400;
}
footer .contact-info img {
  width: 18px;
  height: 18px;
  filter: grayscale(70%) contrast(1.2);
}
footer > .container > .content-wrapper > a img {
  height: 39px;
  margin-bottom: 8px;
}

/* =========================================================
   MOBILE NAVIGATION MENU
========================================================= */
.mobile-menu-toggle {
  display: none;
  background: #191C22;
  color: #F9D846;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 4px 16px 5px 16px;
  margin-left: 16px;
  cursor: pointer;
  align-self: center;
  transition: background 0.15s, color 0.17s;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F9D846;
  color: #222B45;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #191C22f2;
  z-index: 1001;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.53,.1,.19,1.0);
  box-shadow: 8px 0 32px rgba(26,37,72,0.13);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 15px 0 0;
  background: transparent;
  color: #F9D846;
  border: none;
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: color 0.12s, background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFB700;
  background: #242937;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 2rem 35px 0 35px;
}
.mobile-nav a {
  color: #F9D846;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px 6px;
  border-radius: 8px;
  margin-bottom: 0;
  transition: background 0.19s, color 0.18s;
  display: block;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #232837;
  color: #4B89DC;
}
@media (max-width: 1024px) {
  header nav {
    gap: 20px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 870px) {
  header {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 15px;
  }
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header {
    flex-direction: row;
    gap: 8px;
    padding: 0 0 0 5px;
    min-height: 58px;
  }
  header nav {
    display: none !important;
  }
  .cta-button {
    padding: 10px 22px;
    min-width: 140px;
    font-size: 1.01rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .feature-grid, .card-container, .course-cards, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .testimonials .testimonial-card,
  .testimonials-preview .testimonial-card {
    flex-direction: column;
    padding: 18px 10px;
    font-size: 1rem;
  }
  .cta {
    padding: 22px 4px 19px;
    text-align: center;
  }
  .newsletter {
    padding: 21px 6px;
  }
  .about-preview, .team-preview, .why-us, .location, .legal, .thank-you {
    padding: 21px 8px;
  }
  .card {
    padding: 18px 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    padding: 14px 5px;
  }
  section {
    padding-top: 10px;
    margin-bottom: 38px;
  }
}
@media (max-width: 470px) {
  html {
    font-size: 14px;
  }
  .hero h1 { font-size: 1.27rem; }
  h2 { font-size: 1.1rem; }
  .content-wrapper { gap: 14px; }
}
/* =========================================================
   COOKIE CONSENT BANNER & MODAL
========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #242937;
  color: #eaeaea;
  box-shadow: 0 -2px 22px rgba(26,37,72,0.07);
  padding: 18px 22px 18px 18px;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  border-top: 2px solid #31384a;
  animation: slideUpBanner 0.42s ease;
}
@keyframes slideUpBanner {
  from { transform: translateY(30%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 17px;
  margin: 0;
  border: none;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(75,137,220,0.07);
}
.cookie-banner .accept {
  background: #F9D846;
  color: #1A2548;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFE35D;
}
.cookie-banner .reject {
  background: #191C22;
  color: #fff;
  border: 1.5px solid #242F4B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #3A3F4B;
  color: #F9D846;
}
.cookie-banner .settings {
  background: transparent;
  color: #4B89DC;
  border: 1.2px solid #4B89DC;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #4B89DC11;
  color: #F9D846;
  border-color: #F9D846;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 8px;
  }
}
/* ----- Cookie Preferences MODAL ----- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,37,72,0.85);
  z-index: 5001;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.44s cubic-bezier(.55,.09,.29,.99);
}
@keyframes fadeInCookieModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #242937;
  color: #eaeaea;
  border-radius: 11px;
  padding: 35px 27px 27px;
  max-width: 97vw;
  min-width: 320px;
  min-height: 230px;
  box-shadow: 0 2px 22px rgba(26,37,72,0.24);
  border: 1.8px solid #4B89DC;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: growModal 0.26s cubic-bezier(.53,.1,.19,1.0);
}
@keyframes growModal {
  from { transform: scale(0.90); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #F9D846;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #F9D846;
  font-weight: 700;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #353945;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #F9D846;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
  z-index: 1;
}
.cookie-toggle:checked::before {
  transform: translateX(21px);
  background: #1A2548;
}
.cookie-modal-content .modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-content button {
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border: none;
  padding: 10px 21px;
  font-weight: 700;
  background: #1A2548;
  color: #F9D846;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
.cookie-modal-content button.accept {
  background: #F9D846;
  color: #191C22;
}
.cookie-modal-content button.accept:hover {
  background: #FFE35D;
}
.cookie-modal-content button.save {
  background: #4B89DC;
  color: #f9fafc;
}
.cookie-modal-content button.save:hover {
  background: #3765a3;
}
.cookie-modal-content button.cancel {
  background: #353945;
}
.cookie-modal-content button.cancel:hover {
  background: #22242a;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 18px; right: 16px;
  background: transparent;
  color: #F9D846;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 18px 5px 8px 12px;
    min-width: 0;
    max-width: 98vw;
  }
}
/* =========================================================
   MICRO-INTERACTIONS
========================================================= */
.card, .course-card, .feature-item, .cta-button, .testimonial-card, .faq-item, .articles-list, .newsletter, .team, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.18s, border-color 0.17s, transform 0.16s, background 0.18s, color 0.14s;
}

/* =========================================================
   SEPARATOR, METALLIC ACCENTS
========================================================= */
hr {
  border: none;
  border-top: 1.5px solid #31384a;
  margin: 30px 0;
}
::-webkit-scrollbar {
    width: 10px;
    background: #21283B;
}
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(180deg, #31384a 65%, #4B5870 100%);
    border: 2px solid #191C22;
}
/* --- Industrial icon style accents --- */
.feature-item img, .instructor-bio img, .contact-details img, .contact-info img, .metrics .client-logos img {
  filter: grayscale(40%) contrast(1.45) drop-shadow(0px 1.5px 1px #1A2548b3);
}

/* =========================================================
   VISUAL HIERARCHY & SPACING
========================================================= */
.section, .about-preview, .team-preview, .card, .card-container, .card-grid, .feature-grid, .testimonials, .process, .faq, .newsletter, .cta {
  margin-bottom: 60px;
}
.card, .feature-item, .course-card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature-grid {
  gap: 20px;
}

/* Ensure no overlap between sections; breathing room */
section + section, .content-wrapper > * + * {
  margin-top: 32px !important;
}

@media (max-width: 600px) {
  .section, section, .about-preview, .team-preview, .why-us, .location, .legal, .thank-you {
    padding: 8px 2vw;
    margin-bottom: 24px;
  }
  .feature-item, .card, .testimonial-card {
    padding: 9vw 3vw;
  }
}

/* =========================================================
    ENSURE ALL FLEXBOX - never grid/columns
========================================================= */
/* No grid, no column properties : All done with Flex and gap. */
