  .contact-section {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px 0;
   font-family: sans-serif;
   }
   /* Contact Form Container */
   .contact-container {
   display: flex;
   max-width: 1200px;
   width: 100%;
   background: white;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
   overflow: hidden;
   margin: 10px;
   }
   /* Left Side Image */
   /* Form Box */
   .contact-form-box {
   flex: 1;
   max-width: 50%; /* Ensure form takes up half the container */
   padding: 30px;
   }
   .form-group {
   display: flex;
   gap: 15px;
   margin-bottom: 15px;
   }
   .form-input {
   flex: 1;
   }
   label {
   font-weight: bold;
   display: block;
   margin-bottom: 5px;
   font-size: 14px;
   color: #333;
   }
   .form__input, select, textarea {
   width: 100%;
   padding: 10px;
   border-radius: 5px;
   border: 1px solid #ddd;
   font-size: 14px;
   color: #555;
   background-color: #f9f9f9;
   transition: border-color 0.3s ease;
   }
   .form__input:focus, select:focus, textarea:focus {
   border-color: #705FFF;
   outline: none;
   }
   textarea {
   height: 120px;
   resize: vertical;
   }
   .phone-input {
   display: flex;
   align-items: center;
   gap: 5px;
   }
   /* Submit Button */
   .tj-contact-button {
   text-align: center;
   margin-top: 20px;
   }
   .tj-primary-btn {
   background: linear-gradient(to right, #705FFF, #A5A6F8);
   color: white;
   padding: 12px 30px;
   font-weight: bold;
   border: none;
   cursor: pointer;
   border-radius: 50px;
   transition: 0.3s ease;
   font-size: 16px;
   }
   .tj-primary-btn:hover {
   background: linear-gradient(to right, #A5A6F8, #705FFF);
   }
   .contact-note, .terms {
   text-align: center;
   font-size: 14px;
   color: #666;
   margin-top: 15px;
   }
   .contact-note a {
   color: #705FFF;
   text-decoration: none;
   }
   .contact-note a:hover {
   text-decoration: underline;
   }
   /* Responsive adjustments */
   @media (max-width: 1024px) {
   .contact-container {
   flex-direction: column;
   }
   .contact-image {
   max-width: 100%; /* Full width on smaller screens */
   height: 300px;
   }
   .contact-form-box {
   max-width: 100%; /* Full width on smaller screens */
   }
   }
   @media (max-width: 768px) {
   .contact-image {
   height: 250px;
   }
   .form-group {
   flex-direction: column;
   gap: 0;
   }
   .form-input {
   width: 100%;
   }
   }
   @media (max-width: 480px) {
   .contact-image {
   height: 200px;
   }
   .contact-form-box {
   padding: 20px;
   }
   .tj-primary-btn {
   padding: 10px 25px;
   font-size: 14px;
   }
   }