  body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
      }
   /* Overlay */
      #modalOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: none;
        z-index: 9998;
      }

      /* Modal */
      #sideModal {
        position: fixed;
        bottom: 0;
        right: -400px;
        width: 400px;
        height: 80%;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      #sideModal.open {
        right: 0;
      }

      /* Form Wrapper */
      .modal-form-wrapper {
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
		  padding: 10px;
      }

      .modal-form-wrapper form {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      
      .modal-form-wrapper form h5{
		  margin: 0;
		  padding: 0;
		  font-weight: bold;
      }
 
      .modal-form-wrapper form label{
		  font-size: 11px;
      }

	 .modal-form-wrapper input[type="text"], input[type="email"]{
			height: 40px;
		 font-size: 13px;
	  }
      .modal-form-wrapper input,
      button {
        font-size: 13px;
      }

      .modal-form-wrapper button[type="submit"] {
        background-color: #303d79;
        color: white;
        border: none;
		padding: 12px 8px;
		cursor: pointer;
		margin: 3% 0;
      }

      .modal-form-wrapper button#closeModalBtn {
        background: none;
        border: 1px solid #ccc;
        color: #333;
      }

      .hidden {
        display: none;
      }

      .loader-wrapper {
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .loader {
        --d: 38px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        color: #00afc9;
        box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0,
          calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 1px,
          calc(0 * var(--d)) calc(1 * var(--d)) 0 2px,
          calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 3px,
          calc(-1 * var(--d)) calc(0 * var(--d)) 0 4px,
          calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 5px,
          calc(0 * var(--d)) calc(-1 * var(--d)) 0 6px;
        animation: l27 1s infinite steps(8);
      }

      @keyframes l27 {
        100% {
          transform: rotate(1turn);
        }
      }

      ._px_wrapper {
        margin: -5% 0px 0px 0px !important;
      }

      ._px_wrapper h2 {
        padding: 0 5%;
        color: #303d79;
        font-weight: bold;
      }

      ._px_plan {
        width: 100%;
        min-height: 300px;
        padding: 0 5%;
      }

      .intro {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0 !important;
        margin-bottom: 3%;
      }

      .intro > div {
        width: 100px;
        height: 80px;
        margin-bottom: -4%;
      }

      .intro p {
        font-size: 20px;
        margin: 3% 0;
      }

      .intro img {
        max-width: 100%;
        max-height: 100%;
      }

      .intro button {
        padding: 1% 5%;
        color: white;
        background-color: #303d79;
        border: 0 none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 15px;
      }

      .accordion {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 5px;
        overflow: hidden;
      }

      .accordion-section {
        border-bottom: none;
      }

      .accordion-header {
        padding: 10px;
        color: white;
        background-color: #303d79;
        border: 1px solid gray;
        border-top: 4px solid #303d79;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        font-size: 15px;
      }

      .accordion-content {
        display: none;
        padding: 0 0 15px 0;
        background-color: #fff;
      }

      .accordion-content.open {
        display: block;
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      th,
      td {
        padding: 10px;
        text-align: left;
      }

      table td,
      table th {
        width: 50%;
        box-sizing: border-box;
      }

      table tr:nth-child(odd) {
        background-color: #f9f9f9;
      }

      table tr:nth-child(even) {
        background-color: #ffffff;
      }

      th {
        background-color: #f7f7f7;
        font-weight: bold;
      }

      table,
      th,
      td {
        border: none;
      }

  

   