  .container {
      display: flex;
      justify-content: space-between;
  }

  .left-section {
      width: 60%;
  }

  .right-section {
      width: 35%;
  }

  .product-image {
      max-width: 100%;
      height: auto;
  }

  table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
  }

  th,
  td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: left;
  }

  th {
      background-color: #f2f2f2;
  }

  .t-c {
      text-align: center;
  }

  h1 {
      font-size: 24px;
      margin: 30px auto 20px;
  }

  .t-c p {
      padding: 0 0 24px;
      font-size: 16px;
      color: #4a4a4a;
  }

  main h2 {
      color: #00B0F0;
      font-size: 16px;
  }

  .left-section h2 {
      margin-bottom: 12px;
  }

  .table tr,
  .left-section p {
      padding: 4px 0;
      font-size: 14px;
      line-height: 20px;
  }

  .container li {
      display: flex;
  }

  .container li::before {
      content: "-";
      color: #333;
      margin-right: 8px;
  }

  .container li span {
      color: red;
  }