.tuition-page {
    background:
      radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 24%),
      radial-gradient(circle at top right, rgba(102, 16, 242, 0.07), transparent 20%),
      linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    min-height: 100vh;
  }

  .tuition-hero {
    background: linear-gradient(135deg, #0d3b8e 0%, #3b1f8f 100%);
    color: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
  }

  .tuition-card,
  .hero-side-card,
  .cost-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 1.6rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  }

  .tuition-card {
    padding: 1.75rem;
  }

  .hero-side-card {
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.14);
  }

  .cost-card {
    padding: 1.2rem;
    height: 100%;
  }

  .cost-card h6 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.6rem;
  }

  .cost-card p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0;
  }

  .total-annual-cost-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    border-color: rgba(13, 110, 253, 0.16);
    background:
      linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.08)),
      #fff;
    padding: 0.9rem 1.15rem;
  }

  .total-cost-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.22);
  }

  .total-annual-cost-card p {
    color: #0f172a;
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    font-weight: 900;
    line-height: 1.05;
  }

  .total-annual-cost-card span {
    display: block;
    max-width: 18rem;
    margin-top: 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .total-annual-cost-card > div:last-child {
    display: contents;
  }

  .page-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 700;
  }

  .page-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
  }

  .page-subtitle,
  .section-text {
    line-height: 1.85;
    color: #64748b;
  }

  .tuition-hero .page-subtitle {
    color: rgba(255,255,255,0.9);
  }

  .icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
  }

  @media (max-width: 767.98px) {
    .total-annual-cost-card {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .total-annual-cost-card > div:last-child {
      display: block;
    }

    .total-annual-cost-card span {
      max-width: none;
      margin-top: 0.45rem;
    }
  }
