.custom-container {
  .tacr-program {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 1em;

    img {
      max-width: 100px;
    }
  }

  table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(104, 124, 205, 0.13);

    td {
      padding: 14px 20px;
      vertical-align: top;

      &:first-child {
        font-weight: 600;
        color: var(--blue);
        width: 30%;
        background: var(--very_light_blue);
      }

      &:last-child {
        width: 70%;
      }
    }

    tr {
      padding: 20px 0;

      &:last-child td {
        border-bottom: none;
      }
    }
  }

  .partners-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .partners-list li {
    padding: 4px 0;
  }
  .partners-list li:last-child {
    border-bottom: none;
  }
  @media (max-width: 768px) {
    td {
      padding: 10px 12px;
      display: block;
      width: 100% !important;
    }
    td:first-child {
      width: 100% !important;
      background: #f0f0f0;
      border-bottom: none;
    }
    td:last-child {
      width: 100% !important;
      padding-top: 4px;
    }
  }
}
