@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Basic styles remain the same */

/* Mobile-first styles */
.contact-container {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
  }
  
  
  .contact-inner-container {
    width: 100%;
    max-width: 1200px; /* Added max-width */
    display: flex;
    flex-direction: column;
    background: lightsteelblue;
    border-radius: 4px;
  }
  
  .contact-info-container,
.contact-form {
  width: 100%;
  padding: 30px; /* Adjusted padding */
}
  
  .contact-info-container {
    background: #000000;
    border-radius: 4px 4px 0 0;
  }
  
  .contact-form {
    background: lightsteelblue;
    border-radius: 0 0 4px 4px;
  }
  
  .contact-heading {
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.5rem;
    color: #f6f7a9;
    margin-bottom: 10px;
  }
  
  .contact-description {
    font-family: inherit;
    font-weight: 700;
    color: #f6f7a9;
    line-height: 1.6rem;
    text-align: justify;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .line {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #f6f7a9;
    margin: 16px 0;
  }
  
  .contact-details {
    padding-top: 12px;
  }
  
  .contact-details h3 {
    font-weight: 600;
    color: #f6f7a9;
  }

  .contact-details i {
    font-weight: 600;
    color: lightsteelblue;
  }
  
  .contact-details p {
    color: whitesmoke;
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .form-group {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }
  
  .input-field {
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    border-radius: 2px;
    padding: 12px;
    background: #f2f2f2;
  }
  
  .form-input {
    height: auto;
  }
  
  .form-group textarea {
    height: 150px;
  }
  
  .submit-btn {
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-align: center;
    color: #f6f7a9;
    background: #4c4b4d;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  /* Media queries */
  @media screen and (min-width: 768px) {
    .contact-container {
      flex-direction: row;
    }
  
    .contact-inner-container {
      flex-direction: row;
    }
  
    .contact-info-container,
    .contact-form {
      width: 50%;
      padding: 40px;
      text-align: left;
    }
  
    .contact-info-container {
      border-radius: 4px 0 0 4px;
    }
  
    .contact-form {
      border-radius: 0 4px 4px 0;
    }
    
    .contact-details p{
        font-weight:400;
        font-size:13px;
    }
    
    .rc-anchor-normal {
        widht:200px
    }
  }
  


