 section {
      padding: 70px 0;
    }
    section.alt { background: #f1f5f9; }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }
    .section-title p {
      color: black;
      margin: auto;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .two-col img {
      width: 100%;
      border-radius: 14px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .feature {
      background: #fff;
      border-radius: 16px;
      padding: 15px 10px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    .feature img {
      width: 60px;
      margin-bottom: 15px;
    }
    .feature h4 { margin-bottom: 8px; }

    .systems {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    .system {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    .system img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .system .content {
      padding: 30px;
    }
    .system h3 { margin-bottom: 12px; }

    .list {
      margin-top: 15px;
    }
    .list li {
      margin-bottom: 8px;
      list-style: none;
      padding-left: 20px;
      position: relative;
    }
    .list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #16a34a;
    }

    @media(max-width: 900px) {
      header .grid,
      .two-col,
      .features,
      .systems {
        grid-template-columns: 1fr;
      }
      header h1 { font-size: 34px; }
    }

    .therapy-mapping {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    }

    .therapy-mapping h2 {
    text-align: center;
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 6px;
    }

    .therapy-mapping .subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
    font-weight: 700;
    }

    .table-wrap {
    max-width: 1100px;
    margin: auto;
    overflow-x: auto;
    }

    .therapy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .therapy-table thead {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    }

    .therapy-table th {
    padding: 18px 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    }

    .therapy-table td {
    padding: 22px;
    font-size: 15px;
    color: #1f2937;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
    }

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

    .therapy {
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    }

    .therapy-table ul {
    padding-left: 18px;
    margin: 0;
    }

    .therapy-table li {
    margin-bottom: 6px;
    }

    @media (max-width: 768px) {
    .therapy {
        white-space: normal;
    }

    .therapy-table th,
    .therapy-table td {
        padding: 14px;
        font-size: 14px;
    }
    }

    .two-col p{
      font-size: 24px;
    }