.contactUsSection {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #e2fdfd, #d4fcf8);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .contactUsDiv {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    background-color: #fff;
  }
  
  .contactUsFormDIV {
    flex: 1 1 400px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .contactUsFormDIV h2 {
    font-size: 2.2rem;
    color: #2645de;
  }
  
  .contactUsFormDIV p {
    max-width: 500px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6rem;
  }
  
  .contactUsFormDIV hr {
    border: none;
    height: 1px;
    background-color: #ddd;
  }
  
  .contactUsFormDIV form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contactUsFormDIV input,
  .contactUsFormDIV textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f3f3f3;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contactUsFormDIV input:focus,
  .contactUsFormDIV textarea:focus {
    outline: none;
    background: #fff;
    border-color: #2645de;
    box-shadow: 0 0 0 2px rgba(38, 69, 222, 0.1);
  }
  
  .contactUsFormDIV button {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background-color: #2645de;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contactUsFormDIV button:hover {
    background-color: #1e36b9;
  }
  
  .contactUsImgDiv {
    flex: 1 1 400px;
    min-height: 500px;
    background: url('../../images/contact-us-1.png') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    color: white;
  }
  
  .contactUsImgDiv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }
  
  .contact-info {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
  }
  
  .contact-info h2 {
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-info a {
    color: #1e36b9;
    text-decoration: none;
    word-break: break-all;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  

  @media (max-width: 980px) {
    .contactUsDiv {
      flex-direction: column;
    }
  
    .contactUsImgDiv {
      min-height: 300px;
    }
  
    .contactUsFormDIV {
      padding: 30px 20px;
    }
  }
  