    /* Booking Appointment Section */
.book-appointment-section {
      background: radial-gradient(
          100.02% 100.02% at 50% -0.02%,
          rgba(255, 255, 255, 0.2) 0%,
          rgba(255, 255, 255, 0) 100%
        ),
        var(--color-secondary-gray);
      /* height: 1000px; */
      position: relative;
      padding-block: 30px;
    }

    .book-appointment-section .bg-img-bx {
      position: absolute;
      top: 0%;
      left: 50%;
      transform: translate(-50%, 0%);
      /* width: 100%; */
      /* height: 100%; */
    }
    .book-appointment-section .text-bx h3 {
      padding-inline: 50px;
    }
    /* .book-appointment-section .text-bx p {
      padding-inline: 32px;
    } */

    @media (min-width: 280px) and (max-width: 575px) {
      .book-appointment-section {
        padding-block: 40px;
      }
    }

/*    table*/
table {
      width: 100%;
      margin: 0 auto;
      border-collapse: collapse;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    th, td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
    }
    th {
      background-color: #f4f4f4;
      font-weight: bold;
    }
    tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    tr:hover {
      background-color: #f1f1f1;
    }
  </style>