/*!
 * NOTICE — read before replacing this file.
 *
 * This is a small, hand-written subset of Bootstrap 5.3's grid and core
 * utility classes (container, row/col-*, d-*, flex, spacing, text
 * utilities), created because this project was built in an offline
 * environment that could not download the real compiled Bootstrap 5.3
 * files from getbootstrap.com.
 *
 * It is NOT the genuine Bootstrap distribution. It covers exactly the
 * classes this site's templates actually use, nothing more.
 *
 * To use the real Bootstrap 5.3 instead (recommended for production):
 *   1. Download bootstrap.min.css and bootstrap.bundle.min.js from
 *      https://getbootstrap.com/docs/5.3/getting-started/download/
 *   2. Replace this file with the real bootstrap.min.css.
 *   3. site.css already overrides Bootstrap's defaults extensively (no
 *      default Bootstrap blue, custom design tokens throughout), so the
 *      visual design should be unaffected — do a quick visual QA pass
 *      after swapping.
 *   4. bootstrap.bundle.min.js is optional here: all interactivity
 *      (mobile nav, FAQ accordion, smooth scroll) is hand-written in
 *      assets/js/site.js and does not depend on Bootstrap's JS.
 */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.container-fluid { width: 100%; padding-inline: 1rem; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}
.row > * {
  padding-inline: 0.75rem;
  width: 100%;
}

/* 12-column grid, generated for the base + md + lg breakpoints used here */
.col { flex: 1 0 0%; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.3333%; }
.col-3 { width: 25%; }

@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.3333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.6667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-6 { width: 50%; }
  .col-lg-8 { width: 66.6667%; }
}

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-flex { display: flex !important; }
  .d-md-block { display: block !important; }
}

.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.my-0 { margin-block: 0 !important; }
.mx-auto { margin-inline: auto !important; }
