        .form-group {
            margin-bottom: 15px; /* Add space between form groups */
        }
        .btn-primary {
            background-color: rgb(5, 29, 5);
            border: 2px solid rgb(5, 29, 5);
        }

        a:hover, a:focus {
            color: red; /* Highlight color */
        }

        table {
            border-collapse: collapse;
            width: 80%; /* Adjust the width as needed */
            margin: 20px 0;
            direction: rtl;
            text-align: right;
        }
        th, td {
            border: 1px solid #dddddd;
            text-align: left;
            padding: 10px;
            direction: rtl;
            text-align: right;
        }
        th {
            background-color: #f2f2f2;
            direction: rtl;
            text-align: right;
        }
        tr:nth-child(even) {
            background-color: #fafffd;
            direction: rtl;
            text-align: right;
        }

        .whatsapp-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            align-items: center;
            background-color: white;
            padding: 10px;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            color: #25D366;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .whatsapp-contact img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }
        
        .whatsapp-contact:hover {
            transform: scale(1.05);
        }
        
        .thin-hr {
            border: none;              /* Remove the default border */
            height: 3px;               /* Set the height to 1px to make it thinner */
            background-color: #7e0202;    /* Change the color to black or any desired color */
          }

          .pricing-table {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }
    
        .pricing-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            width: 550px; /* Increased width */
            transition: transform 0.3s;
        }
    
        .pricing-card:hover {
            transform: scale(1.05);
        }
    
        .pricing-header {
            background-color: #c40808;
            color: #ffffff;
            padding: -10px;
            border-radius: 15px 15px 0 0;
        }
    
        .pricing-header h2 {
            margin: 0;
            font-size: 20px;
        }
    
        .pricing-header p {
            margin: 5px 0 0;
            font-size: 16px;
        }
    
        .pricing-price {
            margin: 20px 0;
            font-size: 36px;
            color: #333333;
        }
    
        .pricing-features {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }
    
        .pricing-features li {
            margin-bottom: 1px;
            font-size: 14px;
        }
    
        .pricing-features li i {
            color: #28a745;
            margin-right: 10px;
        }
    
        .choose-plan {
            background-color: #28a745;
            color: #ffffff;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 18px;
            transition: background-color 0.3s;
        }
    
        .choose-plan:hover {
            background-color: #218838;
        }
    
    
        .pay-container {
          display: flex;
          align-items: center;
          gap: 20px; /* Space between PayPart1 and the button */
          margin-top: 20px;
      }
      
      .pay-part {
          background-color: lightgray;
          border-radius: 10px;
          padding: 20px;
          text-align: center;
          width: 250px;
          font-size: 14px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s;
      }
      
      .pay-part:hover {
          transform: scale(1.05);
      }
      
      .choose-plan {
          background-color: #df0a0a;
          color: #ffffff;
          padding: 15px 30px;
          border: none;
          border-radius: 30px;
          cursor: pointer;
          font-size: 15px;
          text-decoration: none; /* Ensure it looks like a button */
          display: inline-block;
          transition: background-color 0.3s;
      }
      
      .choose-plan:hover {
          background-color: #B3B7C1;
      }
    