/* =========================================================
   FIRE DRILL TRAINING (FDT)
   01. Shared layout, type and colours
   ========================================================= */
body {
  margin: 0;
}

.fdt-page {
  --fdt-navy: #001776;
  --fdt-ink: #17213a;
  --fdt-copy: #48566e;
  --fdt-line: #dce3ed;
  --fdt-red: #c93d2d;
  --fdt-red-dark: #982819;
  --fdt-red-soft: #fcecea;
  color: var(--fdt-ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.65;
}
.fdt-page,
.fdt-page *,
.fdt-page *::before,
.fdt-page *::after {
  box-sizing: border-box;
}

.fdt-page h1,
.fdt-page h2,
.fdt-page h3,
.fdt-page p,
.fdt-page figure {
  margin-top: 0;
}
.fdt-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.fdt-section {
  padding: 76px 0;
}
.fdt-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.fdt-heading h2,
.fdt-overview-copy h2,
.fdt-requirement-copy h2,
.fdt-participants h2,
.fdt-details h2 {
  margin-bottom: 14px;
  color: var(--fdt-navy);
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.fdt-heading p,
.fdt-overview-copy p,
.fdt-requirement-copy p {
  margin-bottom: 0;
  color: var(--fdt-copy);
  font-size: 16px;
  line-height: 1.7;
}
.fdt-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}
.fdt-button:hover,
.fdt-button:focus-visible {
  transform: translateY(-2px);
}
.fdt-button-primary {
  background: #b85c38;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.19);
}
.fdt-button-primary:hover,
.fdt-button-primary:focus-visible {
  background: #8e3e23;
}

/* =========================================================
   02. Hero — BFSM structure, Fire Drill content
   ========================================================= */
.fdt-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(390px, 40vw, 520px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url("/images/fire-background.webp") center / cover no-repeat;
}
.fdt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* CPR / HAZMAT overlay structure, using the Fire Drill red accent. */
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.32),
      rgba(0, 23, 118, 0.3) 56%,
      rgba(0, 0, 0, 0.6)
    ),
    linear-gradient(90deg, rgba(201, 61, 45, 0.18), rgba(201, 61, 45, 0) 68%);
}
.fdt-hero-content {
  max-width: 760px;
  padding: 64px 0;
}
.fdt-hero-label {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--fdt-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.fdt-hero h1 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 9vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-shadow: 5px 5px 0 rgba(201, 61, 45, 0.72);
}
.fdt-hero-copy {
  max-width: 700px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
}
.fdt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   03. Course overview
   ========================================================= */
.fdt-overview {
  background: #f7f9fc;
}
.fdt-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.fdt-overview-image,
.fdt-details-image,
.fdt-overview-image-mobile {
  margin: 0;
  width: min(100%, 460px);
  max-width: 460px;
  max-height: 288px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: var(--fdt-navy);
  box-shadow: 0 16px 36px rgba(0, 23, 118, 0.1);
}
.fdt-overview-image img,
.fdt-details-image img,
.fdt-overview-image-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fdt-overview-image {
  width: min(100%, 460px);
}
.fdt-overview-copy {
  max-width: 590px;
}
.fdt-overview-copy p {
  text-align: justify;
  hyphens: auto;
}
.fdt-overview-image-mobile {
  display: none;
}

/* =========================================================
   04. Designated premises requirement
   ========================================================= */
.fdt-requirement {
  background: #faf7f1;
}
.fdt-requirement-layout {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #f0c9c2;
  border-left: 5px solid var(--fdt-red);
  border-radius: 20px;
  background: var(--fdt-red-soft);
  box-shadow: 0 12px 30px rgba(0, 23, 118, 0.06);
}
.fdt-requirement-copy {
  max-width: 950px;
}
.fdt-requirement-copy h2 {
  color: var(--fdt-red-dark);
}

/* =========================================================
   05. Course content
   ========================================================= */
.fdt-content {
  background: #f1f5f9;
}
.fdt-content-list,
.fdt-participant-list {
  display: grid;
  gap: 10px;
  max-width: 930px;
  margin-inline: auto;
}
.fdt-content-item {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--fdt-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 23, 118, 0.045);
}
.fdt-content-item > span,
.fdt-participant-list span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fdt-red-soft);
  color: var(--fdt-red-dark);
  font-size: 0.73rem;
  font-weight: 800;
}
.fdt-content-item > span {
  display: flex;
  margin: 0 auto 10px;
}
.fdt-content-item h3 {
  margin-bottom: 3px;
  color: var(--fdt-navy);
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
}
.fdt-content-item p {
  margin-bottom: 0;
  color: var(--fdt-copy);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
}

/* =========================================================
   06. Practical fire drill exercise
   ========================================================= */
.fdt-practical {
  background: #fff;
}
.fdt-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fdt-practical-grid article {
  padding: 25px 22px;
  border-top: 4px solid var(--fdt-red);
  border-radius: 18px;
  background: var(--fdt-navy);
  color: #fff;
  box-shadow: 0 13px 28px rgba(0, 23, 118, 0.12);
}
.fdt-practical-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #f1b0a5;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}
.fdt-practical-grid h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
}
.fdt-practical-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
}

/* =========================================================
   07. Benefits
   ========================================================= */
.fdt-benefits {
  background: #f8f6f2;
}
.fdt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.fdt-benefits-grid article {
  padding: 24px 20px;
  border-top: 4px solid var(--fdt-red);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 23, 118, 0.055);
}
.fdt-benefits-grid i {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--fdt-red-soft);
  color: var(--fdt-red);
}
.fdt-benefits-grid h3 {
  margin-bottom: 8px;
  color: var(--fdt-navy);
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
}
.fdt-benefits-grid p {
  margin-bottom: 0;
  color: var(--fdt-copy);
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
}

/* =========================================================
   08. Recommended participants — course-content row style
   ========================================================= */
.fdt-participants {
  background: #fbfaf7;
}
.fdt-participant-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 13px 18px;
  border: 1px solid #d9e2ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 23, 118, 0.04);
}
.fdt-participant-list span {
  background: #edf3fa;
  color: var(--fdt-navy);
}
.fdt-participant-list article:nth-child(even) span {
  background: #fbece8;
  color: var(--fdt-red-dark);
}
.fdt-participant-list p {
  margin: 0;
  color: var(--fdt-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
}

/* =========================================================
   09. Training details
   ========================================================= */
.fdt-details {
  background: #f3f6f9;
}
.fdt-details-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.fdt-details-intro > p {
  margin: 0 0 20px;
  color: var(--fdt-copy);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}
.fdt-details-intro .fdt-details-image {
  width: min(100%, 460px);
}
.fdt-details-list {
  display: grid;
  gap: 10px;
}
.fdt-details-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--fdt-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 23, 118, 0.04);
}
.fdt-details-list i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--fdt-red-soft);
  color: var(--fdt-red);
}
.fdt-details-list h3 {
  margin-bottom: 2px;
  color: var(--fdt-navy);
  font-size: 17px;
  line-height: 1.3;
  text-align: left;
}
.fdt-details-list p {
  margin-bottom: 0;
  color: var(--fdt-copy);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   10. CTA
   ========================================================= */
.fdt-cta {
  padding: 58px 0;
  background: #f7f4f0;
}
.fdt-cta-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 22px;
  background: linear-gradient(112deg, #000e51, #001776 64%, #7d251e);
  color: #fff;
}
.fdt-cta h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.16;
}
.fdt-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 16px;
}
.fdt-button-light {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fff;
  color: var(--fdt-navy);
}

/* =========================================================
   11. FAQ — BFSM accordion structure and behaviour
   ========================================================= */
.fdt-faq {
  background: #f4f7fa;
}
.fdt-faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 40px auto 0;
}
.fdt-faq-list article {
  overflow: hidden;
  border: 1px solid #efd0cb;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.fdt-faq-list article:has(.fdt-faq-question.active) {
  border-color: rgba(201, 61, 45, 0.5);
  box-shadow: 0 9px 22px rgba(0, 23, 118, 0.07);
}
.fdt-faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 21px 62px 21px 20px;
  border: 0;
  background: #fff;
  color: var(--fdt-ink);
  cursor: pointer;
  font:
    700 18px/1.45 Poppins,
    Arial,
    sans-serif;
  text-align: left;
  transition: color 0.2s ease;
}
.fdt-faq-question span {
  display: none;
}
.fdt-faq-question::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--fdt-red);
  content: "+";
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}
.fdt-faq-question.active {
  border-bottom: 1px solid #f2c7c1;
  color: var(--fdt-navy);
}
.fdt-faq-question.active::after {
  color: var(--fdt-red);
  content: "−";
}
.fdt-faq-question:hover,
.fdt-faq-question:focus-visible {
  color: var(--fdt-red-dark);
}
.fdt-faq-answer {
  padding: 18px 20px 22px;
  border-top: 1px solid #f2c7c1;
  background: var(--fdt-red-soft);
  color: var(--fdt-copy);
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  animation: fdt-faq-open 0.3s ease-out;
}
.fdt-faq-answer p {
  margin: 0;
}
.fdt-faq-answer p + p {
  margin-top: 12px;
}
.fdt-faq-answer a {
  color: var(--fdt-red-dark);
  font-weight: 800;
}
@keyframes fdt-faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   12. Tablet responsive — FSM / FSO scale
   ========================================================= */
@media (max-width: 1200px) {
  .fdt-hero h1 {
    max-width: 500px;
    font-size: 50px;
  }
}

/* Overview image moves beneath the existing title on tablet and phone. */
@media (max-width: 1199px) {
  .fdt-overview-image-mobile {
    display: block;
    width: min(100%, 460px);
    margin: 0 auto 26px;
  }
  .fdt-overview-grid {
    display: block;
  }
  .fdt-overview-grid > .fdt-overview-image {
    display: none;
  }
  .fdt-overview-grid .fdt-overview-copy {
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: auto;
  }
  .fdt-overview-copy h2 {
    text-align: center;
  }
  .fdt-overview-grid .fdt-overview-copy p {
    width: 100%;
    text-align: justify;
    hyphens: auto;
  }
}

@media (max-width: 991px) {
  .fdt-hero {
    min-height: 480px;
  }
  .fdt-hero-content {
    max-width: 600px;
  }
  .fdt-hero h1 {
    font-size: 45px;
  }
  .fdt-hero-label {
    font-size: 11px;
  }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2,
  .fdt-cta h2 {
    font-size: 28px;
  }
  .fdt-cta p {
    font-size: 16px;
  }
  .fdt-overview-grid .fdt-overview-copy {
    width: min(100%, 720px);
    max-width: 720px;
    margin-inline: auto;
  }
  .fdt-overview-grid .fdt-overview-copy p {
    width: 100%;
    text-align: justify;
    hyphens: auto;
  }
}

/* Large desktop only: keep the Fire Drill hero title within a controlled range. */
@media (min-width: 900px) {
  .fdt-hero h1 {
    font-size: clamp(40px, 4vw, 52px);
  }
}

@media (max-width: 860px) {
  .fdt-section {
    padding: 62px 0;
  }
  .fdt-overview-grid,
  .fdt-details-grid {
    grid-template-columns: 1fr;
  }
  .fdt-overview-copy {
    max-width: none;
  }
  .fdt-overview-image {
    max-width: 460px;
    margin-inline: auto;
  }
  .fdt-details-image {
    max-width: 550px;
    width: min(100%, 550px);
    margin-inline: auto;
  }
  .fdt-details-grid {
    gap: 28px;
  }
  .fdt-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fdt-details-intro {
    text-align: center;
  }
  .fdt-details-intro > p {
    max-width: 720px;
    margin-inline: auto;
  }
  .fdt-practical-grid {
    grid-template-columns: 1fr;
  }
  .fdt-cta-layout {
    display: grid;
  }
  .fdt-button-light {
    width: max-content;
  }
  .fdt-heading p,
  .fdt-overview-copy p,
  .fdt-requirement-copy p,
  .fdt-cta p {
    max-width: 720px;
    margin-inline: auto;
    text-align: justify;
    hyphens: auto;
  }
}
@media (max-width: 768px) {
  .fdt-shell {
    width: min(1400px, calc(100% - 90px));
  }
  .fdt-hero {
    min-height: 400px;
  }
  .fdt-hero-content {
    padding-block: 56px;
  }
  .fdt-hero h1 {
    max-width: 370px;
    font-size: 28px;
  }
  .fdt-hero-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .fdt-hero-actions {
    margin-top: 17px;
  }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2,
  .fdt-cta h2 {
    font-size: 30px;
  }
  .fdt-heading p,
  .fdt-overview-copy p,
  .fdt-requirement-copy p,
  .fdt-faq-answer,
  .fdt-content-item p,
  .fdt-practical-grid p,
  .fdt-benefits-grid p,
  .fdt-details-list p,
  .fdt-participant-list p {
    font-size: 15px;
  }
  .fdt-faq-question {
    font-size: 16px;
  }
  .fdt-details-list h3 {
    text-align: center;
  }
  .fdt-details-list article {
    display: block;
  }
  .fdt-details-list i {
    display: flex;
    margin: 0 auto 10px;
  }
  .fdt-details-intro {
    order: -1;
  }
  .fdt-cta p {
    font-size: 15px;
  }
}

/* =========================================================
   13. Mobile and small-mobile responsive
   ========================================================= */
@media (max-width: 600px) {
  .fdt-hero {
    background-position: 68% center;
  }
  .fdt-shell {
    width: min(1300px, calc(100% - 32px));
  }
  .fdt-section {
    padding: 50px 0;
  }
  .fdt-heading {
    margin-bottom: 26px;
  }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2 {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }
  .fdt-heading p,
  .fdt-overview-copy p,
  .fdt-requirement-copy p,
  .fdt-faq-answer {
    text-align: justify;
    hyphens: auto;
  }
  .fdt-hero-content {
    padding: 52px 0;
    text-align: left;
  }
  .fdt-hero-copy {
    font-size: 15px;
    text-align: justify;
    hyphens: auto;
  }
  .fdt-button {
    font-size: 13px;
  }
  .fdt-content-item {
    padding: 15px;
    display: block;
  }
  .fdt-participant-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }
  .fdt-content-item > span {
    display: flex;
    margin: 0 auto 10px;
  }
  .fdt-content-item h3 {
    font-size: 17px;
    text-align: center;
  }
  .fdt-content-item p {
    text-align: justify;
    hyphens: auto;
  }
  .fdt-practical-grid article {
    padding: 15px;
  }
  .fdt-practical-grid strong {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .fdt-benefits-grid {
    grid-template-columns: 1fr;
  }
  .fdt-benefits-grid article {
    padding: 20px 16px;
  }
  .fdt-benefits-grid i {
    display: flex;
    margin-inline: auto;
  }
  .fdt-benefits-grid h3 {
    text-align: center;
  }
  .fdt-benefits-grid p {
    text-align: justify;
    hyphens: auto;
  }
  .fdt-details-grid {
    gap: 25px;
  }
  .fdt-details-intro .fdt-details-image {
    width: min(100%, 280px);
    max-width: 280px;
    max-height: 175px;
    margin-inline: auto;
  }
  .fdt-overview-image-mobile {
    width: min(100%, 280px);
    max-width: 280px;
    max-height: 175px;
    margin-inline: auto;
  }
  .fdt-details-list article {
    padding: 15px;
  }
  .fdt-details-list p {
    text-align: justify;
    hyphens: auto;
  }
  .fdt-cta {
    padding: 48px 0;
    text-align: center;
  }
  .fdt-cta-layout {
    padding: 28px 22px;
  }
  .fdt-cta p {
    text-align: justify;
    hyphens: auto;
    font-size: 15px;
  }
  .fdt-button-light {
    width: 100%;
  }
  .fdt-faq-list {
    margin-top: 25px;
  }
  .fdt-faq-list article {
    border-radius: 10px;
  }
  .fdt-faq-question {
    padding: 16px 48px 16px 15px;
    font-size: 14px;
  }
  .fdt-faq-question::after {
    right: 14px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
  }
  .fdt-faq-answer {
    padding: 14px 15px 17px;
    font-size: 15px;
  }
}

/* Small-phone type scale — aligned with the current CPR responsive reference. */
@media (max-width: 468px) {
  .fdt-hero {
    min-height: 350px;
  }
  .fdt-hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)),
      linear-gradient(90deg, rgba(201, 61, 45, 0.12), rgba(201, 61, 45, 0) 72%);
  }
  .fdt-hero-content {
    padding-block: 44px;
    text-align: center;
    transform: translateY(20px);
  }
  .fdt-hero-label {
    display: flex;
    margin-inline: auto;
    font-size: 8px;
  }
  .fdt-hero h1 {
    margin-inline: auto;
    font-size: 22px;
    text-align: center;
  }
  .fdt-hero-copy {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: justify;
    hyphens: auto;
  }
  .fdt-hero .fdt-button-primary {
    width: 65%;
    margin-inline: auto;
  }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2,
  .fdt-cta h2 {
    font-size: 22px;
  }
  .fdt-page p,
  .fdt-faq-answer {
    font-size: 14px;
  }
  .fdt-content-item h3,
  .fdt-practical-grid h3,
  .fdt-benefits-grid h3,
  .fdt-details-list h3 {
    font-size: 16px;
  }
}

@media (max-width: 429px) {
  .fdt-hero {
    min-height: 330px;
  }
  .fdt-hero-content {
    padding-block: 36px;
  }
  .fdt-hero h1 { font-size: 20px; }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2,
  .fdt-cta h2 { font-size: 20px; }
  .fdt-page p,
  .fdt-faq-answer { font-size: 13px; }
}

@media (max-width: 374px) {
  .fdt-hero {
    min-height: 300px;
  }
  .fdt-hero-content {
    padding-block: 32px;
  }
  .fdt-hero h1 { font-size: 18px; }
  .fdt-heading h2,
  .fdt-overview-copy h2,
  .fdt-requirement-copy h2,
  .fdt-participants h2,
  .fdt-details h2,
  .fdt-cta h2 { font-size: 18px; }
  .fdt-button { font-size: 12px; }
  .fdt-page p,
  .fdt-faq-answer { font-size: 12px; }
  .fdt-content-item h3,
  .fdt-practical-grid h3,
  .fdt-benefits-grid h3,
  .fdt-details-list h3 { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .fdt-page * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
