.legal-information {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  
    h1 {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  
      .card-header {
        padding: 1rem;
  
        h2 {
          font-size: 1.5rem;
          font-weight: bold;
          margin: 0;
        }
      }
  
      .card-content {
        padding: 1rem;
      }
    }
  
    .tabs {
      display: flex;
      justify-content: space-between;
      background-color: hsl(240 4.8% 95.9%);
      padding: 4px;
      border-radius: calc(.5rem - 2px);
      color: hsl(240 3.8% 46.1%);
      margin-bottom: .5rem;
  
      .tab {
        width: 100%;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: calc(.5rem - 6px);
        background: none;
        cursor: pointer;
        font-weight: 500;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #6c757d;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
  
        &.active {
          color: hsl(240 10% 3.9%);
          background-color: hsl(0 0% 100%);
        }
  
        &:hover {
          color: hsl(240 10% 3.9%);
        }
      }
    }
  
    .tab-content {
      max-height: 600px;
      overflow-y: auto;
      padding-right: 1rem;
  
      section {
        margin-bottom: 1.5rem;
  
        h3 {
          font-size: 1.25rem;
          font-weight: bold;
          margin-bottom: 0.5rem;
        }
  
        p {
          margin-bottom: 0.5rem;
        }
  
        ul {
          list-style-type: disc;
          padding-left: 1.5rem;
          margin-bottom: 0.5rem;
        }
      }
    }
  }
  
  @media (max-width: 768px) {
    .legal-information {
      .card {
        border-radius: 0;
      }
  
      .tabs .tab {
        font-size: .75rem;
        padding: 0.25rem;
      }
    }
  }