/* ── PAGE HEADER ── */
.page-header {
  padding: 80px 0 70px;
  background: var(--navy-deep, #080f2a);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.header-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.header-content > p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 24px;
}

/* Large decorative letters in the background */
.header-deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 2px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.header-deco span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-light, #d4af5a); }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.3); }
.breadcrumb span { color: var(--gold-light, #d4af5a); }

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.92;
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}
.gold-italic { font-style: italic; color: var(--gold-light, #d4af5a); }

.anchor-bar {
  position: sticky;
  top: 73px;
  z-index: 99;
  background: var(--navy-deep, #080f2a);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.anchor-bar .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 28px;
  justify-content: space-evenly;
}

.anchor-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  border-radius: 0;
  background: none;
  white-space: nowrap;
}

.anchor-pill:hover {
  color: var(--gold, #c9a84c);
  border-bottom-color: var(--gold, #c9a84c);
}

/* ── TICKER BAR ── */
.ticker-bar {
  background: var(--gold, #c9a84c);
  overflow: hidden;
  white-space: nowrap;
  height: 52px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy-deep, #080f2a);
}
.ticker-track span i { font-size: 13px; opacity: 0.75; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SHARED SECTION STYLES ── */
.adm-section { padding: 100px 0; }

/* Two-column header: label+title left, description right */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 80px;
  align-items: end;
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after { display: none; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--navy, #0e1a3a);
  line-height: 1;
  margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--gold, #c9a84c); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted, #6b7a99);
  line-height: 1.75;
  padding-top: 8px;
  border-top: 1px solid var(--light-gray, #e8eaf2);
  align-self: end;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ── ELIGIBILITY STRIP ── */
.eligibility-strip {
  display: flex;
  align-items: center;
  background: var(--navy, #0e1a3a);
  border-radius: 10px;
  padding: 36px 48px;
  margin-bottom: 56px;
  gap: 0;
}
.elig-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.elig-item i {
  font-size: 28px;
  color: var(--gold, #c9a84c);
  flex-shrink: 0;
}
.elig-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.elig-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.elig-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: 0 40px;
  flex-shrink: 0;
}

/* ── DOCUMENT CARDS ── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--light-gray, #e8eaf2);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(14,26,58,0.1);
  border-color: var(--gold, #c9a84c);
}
.doc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.doc-icon {
  font-size: 32px;
  color: var(--gold, #c9a84c);
  margin-bottom: 18px;
}
.doc-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy, #0e1a3a);
  margin-bottom: 12px;
}
.doc-card p {
  font-size: 14px;
  color: var(--text-muted, #6b7a99);
  line-height: 1.7;
  margin-bottom: 18px;
}
.doc-note {
  font-size: 12px;
  color: var(--navy, #0e1a3a);
  background: var(--off-white, #f7f5f0);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.doc-note i { color: var(--gold, #c9a84c); margin-top: 2px; flex-shrink: 0; }

/* ── PROCESS SECTION ── */
.process-section-adm {
  background: var(--navy-deep, #080f2a);
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: center;
  margin-bottom: 72px;
}
.process-header-left {
  display: flex;
  flex-direction: column;
}
.process-header .section-label,
.process-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}
.process-header .section-title,
.process-title {
  color: #fff !important;
  text-align: left;
  margin-bottom: 0;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
}
.process-header-right {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.process-header .section-sub,
.process-sub {
  color: rgba(255,255,255,0.6) !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
}

/* ── PROCESS ACCORDION ── */
.process-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.pa-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pa-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Closed state header */
.pa-header {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 24px;
  transition: background 0.25s;
}
.pa-header:hover .pa-header-left h4 { color: var(--gold, #c9a84c); }

.pa-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.pa-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  min-width: 56px;
  transition: color 0.25s;
}

.pa-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  min-width: 160px;
}

.pa-header-left h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1.1;
  transition: color 0.25s;
  margin: 0;
}

.pa-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.25s;
}

/* Open / active state */
.pa-item.open .pa-header { background: none; }
.pa-item.open .pa-num { color: var(--gold, #c9a84c); }
.pa-item.open .pa-header-left h4 { color: #fff; }
.pa-item.open .pa-tag { color: var(--gold, #c9a84c); }
.pa-item.open .pa-icon {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
  color: var(--navy-deep, #080f2a);
}
/* Gold left accent on open item */
.pa-item.open {
  border-left: 3px solid var(--gold, #c9a84c);
  padding-left: 28px;
  margin-left: -31px; /* compensate so content stays aligned */
}

/* Body panel */
.pa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  padding-left: calc(56px + 24px + 160px + 24px); /* align with title */
}
.pa-item.open .pa-body {
  max-height: 300px;
  padding-bottom: 32px;
}
.pa-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}
.pa-body .tl-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.tl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: gap 0.2s;
}
.tl-btn:hover { gap: 14px; }

/* Key dates strip */
.dates-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 32px 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.date-item { text-align: center; }
.date-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold, #c9a84c);
  line-height: 1;
  margin-bottom: 6px;
}
.date-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}
.date-sep {
  font-size: 20px;
  color: rgba(255,255,255,0.15);
  padding: 0 32px;
  margin-bottom: 16px;
}

/* ── TUITION TABLE ── */
.tuition-table-wrap {
  background: var(--off-white, #f7f5f0);
  border-radius: 10px;
  padding: 44px 48px;
  margin-bottom: 40px;
}
.tuition-table-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy, #0e1a3a);
  margin-bottom: 24px;
}
.tuition-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.tuition-table thead tr {
  background: var(--navy, #0e1a3a);
}
.tuition-table th {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.tuition-table th:first-child { border-radius: 6px 0 0 6px; }
.tuition-table th:last-child { border-radius: 0 6px 6px 0; }
.tuition-table tbody tr {
  border-bottom: 1px solid var(--light-gray, #e8eaf2);
  transition: background 0.2s;
}
.tuition-table tbody tr:last-child { border-bottom: none; }
.tuition-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.tuition-table tbody tr:hover td { background: rgba(201,168,76,0.04); }
.tuition-table td {
  padding: 20px;
  vertical-align: middle;
  color: var(--navy, #0e1a3a);
}
.tt-level {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  font-weight: 700;
  margin-bottom: 5px;
}
.tt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy, #0e1a3a);
}
.tt-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy, #0e1a3a);
  white-space: nowrap;
}
.tt-includes {
  font-size: 13px;
  color: var(--text-muted, #6b7a99);
  line-height: 1.7;
}
.tt-btn {
  white-space: nowrap;
  padding: 10px 22px !important;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .tuition-table-wrap { padding: 28px 20px; overflow-x: auto; }
  .tuition-table thead { display: none; }
  .tuition-table tbody tr { display: block; padding: 24px 0; border-bottom: 1px solid var(--light-gray, #e8eaf2); }
  .tuition-table td { display: block; padding: 4px 0; border: none; }
  .tt-price { font-size: 18px; margin: 8px 0; }
  .tt-btn { margin-top: 16px; display: inline-flex; }
}

/* ── FEES TABLE ── */
.fees-table-wrap {
  background: var(--off-white, #f7f5f0);
  border-radius: 10px;
  padding: 44px 48px;
}
.fees-table-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy, #0e1a3a);
  margin-bottom: 24px;
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.fees-table th {
  background: var(--navy, #0e1a3a);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.fees-table th:first-child { border-radius: 6px 0 0 6px; }
.fees-table th:last-child { border-radius: 0 6px 6px 0; }
.fees-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray, #e8eaf2);
  color: var(--navy, #0e1a3a);
}
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.fees-table td:first-child { font-weight: 600; }
.fees-table td:nth-child(3) { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy, #0e1a3a); }
.fees-table td:last-child { color: var(--text-muted, #6b7a99); font-size: 13px; }
.fees-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted, #6b7a99);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.fees-note i { color: var(--gold, #c9a84c); margin-top: 2px; flex-shrink: 0; }
.fees-note a { color: var(--gold, #c9a84c); text-decoration: none; font-weight: 600; }
.fees-note a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; background: #fff; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left .section-title { text-align: left; }
.faq-left p { font-size: 16px; color: var(--text-muted, #6b7a99); line-height: 1.7; margin-top: 12px; }

.faq-item {
  border-bottom: 1px solid var(--light-gray, #e8eaf2);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy, #0e1a3a);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold, #c9a84c); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--light-gray, #e8eaf2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: all 0.3s;
  color: var(--gold, #c9a84c);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold, #c9a84c);
  color: #fff;
  border-color: var(--gold, #c9a84c);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--text-muted, #6b7a99); line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-deep, #080f2a) 0%, var(--blue, #1a3568) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .dropdown { position: static; display: none; box-shadow: none; background: rgba(255,255,255,0.04); min-width: 100%; opacity: 1; visibility: visible; transform: none; }
    .dropdown.mobile-open { display: block; }
    .dropdown.mega { grid-template-columns: 1fr; padding: 12px; }
    .dropdown.mega.mobile-open { display: grid; }
}

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .eligibility-strip { flex-direction: column; align-items: flex-start; padding: 28px 32px; }
  .elig-divider { width: 60px; height: 1px; margin: 16px 0; }
  /* Stack section headers */
  .section-header,
  .process-header { grid-template-columns: 1fr; gap: 20px; }
  .section-sub { border-top: none; padding-top: 0; }
  .process-header-right { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
  /* Simplified timeline on mobile */
  .timeline-line { display: none; }
  .tl-item { grid-template-columns: 80px 1fr; column-gap: 20px; }
  .tl-dot { display: none; }
  .dates-strip { padding: 24px 28px; }
  .date-sep { padding: 0 16px; }
  .fees-table-wrap { padding: 28px 20px; overflow-x: auto; }
}

@media (max-width: 640px) {
  .doc-grid { grid-template-columns: 1fr; }
  .header-deco { display: none; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-left { text-align: left; margin-bottom: 8px; }
  .dates-strip { flex-direction: column; align-items: center; }
  .date-sep { display: none; }

  /* the top anchor phone settings */
  .anchor-bar .container { padding: 0; }
  .anchor-pill { padding: 8px 10px; font-size: 10px; letter-spacing: 1px; }
}

@media (max-width: 640px) {

  /* ── FEES TABLE ── */
  .fees-table-wrap { padding: 24px 16px; }
  .fees-table thead { display: none; }
  .fees-table tbody tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray, #e8eaf2);
  }
  .fees-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border: none;
    font-size: 13px;
  }
  .fees-table tbody tr:nth-child(even) td { background: none; }
  .fees-table td:first-child { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
  .fees-table td:last-child { color: var(--text-muted, #6b7a99); font-size: 12px; }
  .fees-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold, #342b13);
    margin-right: 8px;
  }

  /* ── PROCESS ACCORDION ── */
  .pa-header { flex-wrap: wrap; padding: 20px 0; gap: 12px; }
  .pa-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }
  .pa-num { font-size: 32px; }
  .pa-tag { white-space: normal; min-width: unset; font-size: 10px; }
  .pa-header-left h4 { font-size: 20px; }
  .pa-body { padding-left: 0; }
  .pa-item.open { margin-left: 0; padding-left: 16px; }

  /* ── TUITION TABLE ── */
  .tuition-table-wrap { padding: 24px 16px; }
  .tuition-table thead { display: none; }
  .tuition-table tbody tr {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray, #e8eaf2);
  }
  .tuition-table td { display: block; padding: 4px 0; border: none; }
  .tuition-table tbody tr:nth-child(even) td { background: none; }
  .tt-price { font-size: 18px; margin: 8px 0; }
  .tt-includes { font-size: 12px; }
  .tt-btn { margin-top: 14px; display: inline-flex; }
}
