.price-table {
        width: 100%;
        max-width: 800px;
        margin: 2rem auto;
        border-collapse: collapse;
        background-color: var(--color-surface);
        border-radius: 15px;
        overflow: hidden;
        border: 2px solid var(--color-border);
      }
      .price-table th,
      .price-table td {
        padding: 1.2rem 1rem;
        text-align: left;
        border-bottom: 2px dotted var(--color-border);
      }
      .price-table th {
        background-color: #fff9e6; /* Slightly yellowish header */
        color: var(--color-heading);
        font-weight: 700;
      }
      .price-table td:last-child {
        text-align: right;
        font-weight: bold;
        font-size: 1.1em;
        color: var(--color-accent-dark);
      }
      .price-table tr:last-child th,
      .price-table tr:last-child td {
        border-bottom: none;
      }
      .price-note {
        text-align: center;
        margin-top: 1rem;
      }