.programme-subjects {
    background: var(--soft);
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(6rem, 10vw, 10rem);
    position: relative;
  }

  .programme-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: start;
  }

  /* Content Section */
  .programme-hero__content {
    max-width: 760px;
  }

  .programme-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .programme-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 1rem;
  }

  .programme-hero__heading {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    color: var(--brand-2);
    margin: 0 0 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .programme-hero__intro {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted);
    margin: 0 0 3rem;
    max-width: 100%;
  }

  /* Features */
  .programme-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .programme-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(11, 61, 145, 0.12);
  }

  .programme-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(11, 61, 145, 0.08);
    flex-shrink: 0;
  }

  .programme-feature__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand);
    stroke-width: 2;
    fill: none;
  }

  .programme-feature__text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
  }

  /* Subjects List */

  .programme-subjects__label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 1.25rem;
    display: block;
  }

  .programme-subjects__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    margin: 0 0 3rem;
    padding: 0;
    list-style: none;
  }

  .programme-subjects__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
  }

  .programme-subjects__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .programme-subjects__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--brand);
    stroke-width: 2.5;
    fill: none;
  }

  .programme-subjects__name {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9375rem;
  }

  .programme-subjects__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--brand);
    color: white;
    padding: 1.125rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.18);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .programme-subjects__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .programme-subjects__cta:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.28);
    text-decoration: none;
  }

  .programme-subjects__cta:hover::before {
    left: 100%;
  }

  .programme-subjects__cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.18);
  }

  .programme-subjects__cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .programme-subjects__cta:hover .programme-subjects__cta-icon {
    transform: translateX(3px);
  }

  .programme-hero__aside .programme-subjects__cta {
    justify-content: center;
    width: 100%;
  }

  .programme-hiring {
    margin: 0;
    text-align: center;
  }

  .programme-hiring__image {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
  }

  .programme-hiring__caption {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--muted);
  }

  /* Enquiry Card */
  .enquiry-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 61, 145, 0.12);
    margin-bottom: 1.5rem;
  }

  .enquiry-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-2);
    margin-bottom: 1rem;
  }

  .enquiry-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .enquiry-card__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .enquiry-card__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--muted);
  }

  .enquiry-card__contact-icon {
    width: 18px;
    height: 18px;
    color: var(--brand);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .programme-hero {
      grid-template-columns: 1fr;
    }

    .programme-hero__aside {
      max-width: 540px;
      margin: 0 auto;
    }
  }

  @media (max-width: 640px) {
    .programme-subjects {
      padding: 4rem 0 5rem;
    }

    .programme-subjects__list {
      grid-template-columns: 1fr;
    }

    .programme-features {
      grid-template-columns: 1fr;
    }

    .programme-subjects__cta {
      width: 100%;
      justify-content: center;
    }
  }

  /* Subjects table (GCSE / A-Level) */
  .subjects-table-container {
    margin-top: 3rem;
  }

  .subjects-table-header {
    color: #333;
    padding: 0 0 1.5rem 0;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: left;
  }

  .subjects-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .subjects-table td {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #eaeaea;
    vertical-align: middle;
  }

  .subjects-table tr:last-child td {
    border-bottom: none;
  }

  .subjects-table tr:nth-child(even) {
    background-color: #f8f9fa;
  }

  .subjects-table .subject-name {
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
  }

  .subjects-table .subject-name::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3d91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
  }

  .subjects-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #3d4558;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .subjects-table {
      display: block;
    }

    .subjects-table thead {
      display: none;
    }

    .subjects-table,
    .subjects-table tbody,
    .subjects-table tr,
    .subjects-table td {
      display: block;
      width: 100%;
    }

    .subjects-table tr {
      margin-bottom: 1rem;
      border: 1px solid #eaeaea;
      border-radius: 4px;
    }

    .subjects-table td {
      border: none;
      padding: 0.75rem;
    }

    .subjects-table tr:nth-child(even) {
      background-color: transparent;
    }

    .subjects-table tr:nth-child(odd) {
      background-color: #f8f9fa;
    }
  }

  /* A-Level tutoring: subject grid */
  .subjects-grid {
    margin-top: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .subjects-grid__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0b3d91;
    text-align: center;
  }

  .subject-category {
    margin-bottom: 2rem;
  }

  .subject-category__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  .subject-category__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .subject-item {
    background-color: white;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
  }

  .subject-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .subject-item__icon {
    margin-right: 0.75rem;
    color: #0b3d91;
    flex-shrink: 0;
  }

  .subject-item__name {
    font-weight: 500;
    color: #333;
  }

  @media (max-width: 992px) {
    .subject-category__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .subject-category__grid {
      grid-template-columns: 1fr;
    }
  }
