.terms-summary {
    max-height: 80px;   /* Show ~4 lines */
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
  }
  .terms-summary.expanded {
    max-height: none;
  }
  .see-more-terms {
    color: #0071a1;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
  }
  