        .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);
        }
        

        .table-container {
            display: flex;
            justify-content: center; /* Center the table horizontally */
          }
          
          .offer-table {
            width: 80%;
            border-collapse: collapse;
            margin-top: 20px;
          }
          
          .offer-table th,
          .offer-table td {
            padding: 12px;
            border: 1px solid #ddd;
            text-align: right; /* Align text to the right for RTL */
          }
          
          .offer-table th {
            background-color: #f4f4f4;
            font-weight: bold;
          }
          
          .offer-table tr:nth-child(even) {
            background-color: #f9f9f9;
          }
          
          .offer-table tr:hover {
            background-color: #e9e9e9;
          }
          
          .offer-table td {
            max-width: 300px;
            word-wrap: break-word;
          }