.price_body {
      margin: 0;
      background-color: #161923;
      color: white;
      /* font-family: 'Anton', sans-serif; */
      padding: 24px;
      display: flex;
      justify-content: center;
      min-height: 100vh;
      margin-top: -123px;
    }
    .price_container {
      max-width: 960px;
      width: 100%;
    }
    .label {
      background-color: black;
      display: inline-block;
      padding: 4px 12px;
      margin-bottom: 24px;
    }
    .label p {
      color: #ff0000;
      font-size: 14px;
      margin: 0;
      font-weight: normal;
    }
    h1 {
      /* font-weight: 800; */
      font-size: 36px;
      line-height: 1.1;
      margin: 0 0 40px 0;
    }
    h2 {
      /* font-weight: 800; */
      font-size: 20px;
      text-transform: uppercase;
      border-bottom: 1px solid #4b5563;
      padding-bottom: 8px;
      margin: 0 0 24px 0;
    }
    .section {
      margin-bottom: 40px;
    }
    .grid-2cols {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px 32px;
      max-width: 400px;
    }
    .grid-2cols p {
      margin: 0;
      /* font-weight: 800; */
      font-size: 14px;
      text-transform: uppercase;
    }
    .price {
      /* font-weight: 600; */
      color: #d9c9b3;
      font-size: 14px;
      text-transform: none;
    }
    table {
      border-collapse: collapse;
      width: 100%;
      max-width: 720px;
      font-size: 14px;
      margin-bottom: 0;
    }
    th, td {
      padding: 6px 12px;
      /* font-weight: 800; */
      border: 1px solid #4b5563;
      text-align: left;
      vertical-align: middle;
    }
    th {
      background: transparent;
      color: white;
    }
    td.price {
      /* font-weight: 600; */
      color: #d9c9b3;
      text-align: left;
    }
    @media (max-width: 768px) {
      .grid-2cols {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
      }
      table {
        font-size: 12px;
      }
      h1 {
        font-size: 28px;
      }
      h2 {
        font-size: 18px;
      }
    }
    @media (max-width: 480px) {
      .price_body {
        padding: 16px;
      }
      h1 {
        font-size: 24px;
      }
      h2 {
        font-size: 16px;
      }
      .grid-2cols {
        grid-template-columns: 1fr;
        gap: 8px 0;
      }
      table, thead, tbody, th, td, tr {
        /* display: block; */
      }
      thead tr {
        /* display: none; */
      }
      tr {
        margin-bottom: 16px;
        border: 1px solid #4b5563;
        padding: 8px;
      }
      td {
        border: none;
        padding: 4px 0;
        font-weight: 600;
      }
      td:first-child {
        font-weight: 800;
        text-transform: uppercase;
      }
      td.price {
        color: #d9c9b3;
      }
    }