.luxury-table-container {
      width: 100%;
      max-width: 860px;
      background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15), 0 0 80px rgba(212, 175, 55, 0.05);
      border: 2px solid rgba(212, 175, 55, 0.3);
      margin: 0 auto;
    }

    .luxury-table-primary {
      margin-bottom: 60px;
    }

    .luxury-table-secondary {
      margin-top: 0;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    thead th {
      background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
      color: #d4af37;
      font-weight: 600;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      padding: 28px 40px;
      text-align: center;
      border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    }

    thead th:first-child {
      text-align: center;
    }

    thead th:nth-child(2) {
      text-align: center;
    }

    thead th:last-child {
      text-align: center;
    }

    tbody tr {
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    tbody tr:hover {
      background-color: rgba(212, 175, 55, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    }

    tbody td {
      padding: 32px 40px;
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      vertical-align: middle;
    }

    tbody td:first-child {
      font-weight: 600;
      color: #f5e6d3;
      font-size: 2.0rem;
      width: 38%;
      text-align: center;
    }

    tbody td:nth-child(2) {
      text-align: center;
      font-size: 2.0rem;
      color: #d4c5b0;
    }

    tbody td:last-child {
      color: #d4af37;
      font-size: 2.0rem;
      line-height: 1.6;
      text-align: center;
      font-weight: 600;
    }

    /* Subtle gold accent line under header */
    thead th {
      position: relative;
    }

    thead th::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 40px;
      right: 40px;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, #d4af37, transparent);
      opacity: 0.6;
    }

    /* Last row no bottom border */
    tbody tr:last-child td {
      border-bottom: none;
    }

    /* Optional: premium badge or icon in first column */
    .premium-label {
      display: block;
      background: linear-gradient(135deg, #d4af37, #f1d8a0);
      color: #0a0a0a;
      font-size: 0.99rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      border-radius: 30px;
      margin: 8px auto 0;
      text-align: center;
      width: fit-content;
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }

    /* Styling for 2-column table (Extra Services) */
    .luxury-table-secondary table {
      width: 100%;
    }

    .luxury-table-secondary thead th {
      width: 50%;
    }

    .luxury-table-secondary tbody td {
      width: 50%;
    }

    .luxury-table-secondary tbody td:first-child {
      width: 50%;
    }

    /* Description Section Styling */
    .donation-description-section {
      margin-top: 60px;
      width: 100%;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .description-content {
      background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
      border-radius: 20px;
      padding: 40px 50px;
      box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15), 0 0 80px rgba(212, 175, 55, 0.05);
      border: 2px solid rgba(212, 175, 55, 0.3);
      font-family: Georgia, 'Times New Roman', serif;
    }

    .description-content p {
      color: #d4c5b0;
      font-size: 1.5rem;
      line-height: 1.8;
      margin-bottom: 16px;
      text-align: left;
    }

    .description-content p:last-child {
      margin-bottom: 0;
    }

    .description-content p strong {
      color: #d4af37;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 1.5rem;
      display: inline-block;
      min-width: 120px;
    }

    .description-content h4 {
      color: #d4af37;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 1px;
      font-family: Georgia, 'Times New Roman', serif;
      margin-bottom: 20px;
    }

    /* Responsive styles for mobile and tablet */
    @media (max-width: 768px) {
      .luxury-table-primary {
        margin-bottom: 40px;
      }

      .donation-description-section {
        margin-top: 40px;
      }

      .description-content {
        padding: 30px 25px;
        border-radius: 15px;
      }

      .description-content p {
        font-size: 1.15rem;
        margin-bottom: 14px;
      }

      .description-content p strong {
        font-size: 1.05rem;
        min-width: 100px;
      }

      .description-content h4 {
        font-size: 20px;
      }

      .luxury-table-container {
        border-radius: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      thead th {
        font-size: 1.1rem;
        padding: 20px 15px;
        letter-spacing: 1px;
      }

      thead th:first-child {
        text-align: center;
      }

      thead th:nth-child(2) {
        text-align: center;
      }

      thead th:last-child {
        text-align: center;
      }

      thead th::after {
        left: 15px;
        right: 15px;
      }

      tbody td {
        padding: 20px 15px;
      }

      tbody td:first-child {
        font-size: 1rem;
        width: 50%;
        text-align: center;
      }

      tbody td:nth-child(2) {
        font-size: 1rem;
        text-align: center;
      }

      tbody td:last-child {
        font-size: 1rem;
        text-align: center;
      }

      .premium-label {
        font-size: 0.65rem;
        padding: 3px 8px;
        display: block;
        margin: 6px auto 0;
        text-align: center;
        width: fit-content;
      }
    }

    @media (max-width: 480px) {
      .luxury-table-primary {
        margin-bottom: 30px;
      }

      .donation-description-section {
        margin-top: 30px;
      }

      .description-content {
        padding: 25px 20px;
        border-radius: 12px;
        margin: 0 -15px;
        border-left: none;
        border-right: none;
      }

      .description-content p {
        font-size: 1.05rem;
        margin-bottom: 12px;
      }

      .description-content p strong {
        font-size: 0.95rem;
        min-width: 90px;
        display: block;
        margin-bottom: 4px;
      }

      .description-content h4 {
        font-size: 18px;
      }

      .luxury-table-container {
        border-radius: 12px;
        margin: 0 -15px;
        border-left: none;
        border-right: none;
      }

      thead th {
        font-size: 1.5rem;
        padding: 16px 12px;
        letter-spacing: 0.5px;
      }

      thead th:first-child {
        text-align: center;
      }

      thead th:nth-child(2) {
        text-align: center;
      }

      thead th:last-child {
        text-align: center;
      }

      thead th::after {
        left: 12px;
        right: 12px;
      }

      tbody td {
        padding: 16px 12px;
        font-size: 1.45rem;
      }

      tbody td:first-child {
        font-size: 1.45rem;
        width: 55%;
        text-align: center;
      }

      tbody td:nth-child(2) {
        font-size: 1.45rem;
        text-align: center;
      }

      tbody td:last-child {
        font-size: 1.45rem;
        text-align: center;
      }

      .premium-label {
        font-size: 0.6rem;
        padding: 2px 6px;
        display: block;
        margin: 4px auto 0;
        text-align: center;
        width: fit-content;
      }
    }