:root {
    --navy: #1a2744;
    --gold: #c8963e;
    --gold-light: #e8b86d;
    --cream: #faf8f4;
    --warm-white: #ffffff;
    --text-dark: #1a2744;
    --text-body: #3d4a5c;
    --text-light: #6b7a8d;
    --border: #e4ddd0;
    --accent-green: #2d6a4f;
  }
  .edtek-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.7;
  }
  .page-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px 80px;
  }
  .video-section {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px;
    margin: 56px 0;
    text-align: center;
  }
  .video-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
  }
  .video-placeholder {
    background: var(--navy);
    border-radius: 3px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .video-placeholder::after {
    content: '▶';
    font-size: 2.5rem;
    color: rgba(255,255,255,0.25);
  }
  .video-caption {
    margin-top: 18px;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
  }
  .table-section { margin: 56px 0; }
  .section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a2744;
    margin-bottom: 12px;
  }
  .section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .section-intro {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 680px;
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
  }
  .comparison-table thead tr {
    background: var(--navy);
    color: #fff;
  }
  .comparison-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .comparison-table thead th:first-child { border-radius: 3px 0 0 0; }
  .comparison-table thead th:last-child {
    border-radius: 0 3px 0 0;
    background: var(--gold);
    color: #fff;
  }
  .comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
    background: var(--warm-white);
  }
  .comparison-table tbody tr:nth-child(even) { background: #f7f4ef; }
  .comparison-table tbody td {
    padding: 14px 18px;
    vertical-align: top;
    color: var(--text-body);
  }
  .comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 32%;
  }
  .comparison-table tbody td:last-child { background: rgba(200,150,62,0.07); }
  .check { color: var(--accent-green); font-weight: 700; }
  .cross { color: #c0392b; }
  .content-section { margin: 56px 0; }
  .content-section p {
    margin-bottom: 18px;
    font-size: 0.975rem;
    line-height: 1.8;
  }
  .content-section p:last-child { margin-bottom: 0; }
  .callout {
    border-left: 3px solid var(--gold);
    background: var(--warm-white);
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 0 3px 3px 0;
  }
  .callout-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .callout p {
    font-size: 0.925rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
  }
  .questions-grid { margin-top: 28px; }
  .question-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-bottom: none;
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .question-item:first-child { border-radius: 3px 3px 0 0; }
  .question-item:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 3px 3px; }
  .q-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
    width: 28px;
  }
  .q-content strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.925rem;
  }
  .q-content p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
  }
  .diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .diff-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 24px;
  }
  .diff-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .diff-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .diff-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
  }
  .cta-section {
    background: var(--navy);
    border-radius: 4px;
    padding: 56px 48px;
    margin: 56px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,150,62,0.1) 0%, transparent 70%);
  }
  .cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
  }
  .cta-section p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.75;
    position: relative;
  }
  .cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    position: relative;
  }
  .cta-note {
    margin-top: 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    position: relative;
  }
  .edtek-divider {
    border: none;
    border-top: 1px solid #1a2744;
    margin: 56px 0;
  }
  @media (max-width: 640px) {
    .page-body { padding: 0 24px 60px; }
    .diff-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 40px 28px; }
    .video-section { padding: 28px 20px; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 10px 12px; }
  }