.contact-header {
    /* background: #497fb3; */
    color: #fff;
    padding: 55px 20px;
    margin-top: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .contact-header h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    color:#fff;
  }
  
  .contact-header p {
    font-weight: 400;
    color: black;
    font-size: 2.2rem;
    font-weight: 450;
    text-align: center;
  }
  
  .container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
  }
  .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }
  
  
  .contact-section {
    /* background-color: #fff; */
    padding: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
  }
  
  .contact-form {
    flex: 1;
  }
  
  .contact-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  input, textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #5c5252;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    background-color: white;
  }
  
  input:focus, textarea:focus {
    border-color: rgb(118, 110, 240);
    border-width: 2.5px;
  }
  
  textarea {
    min-height: 150px;
  }
  
.submit-btn{
    background-color: #2ecc71;
}

  button{
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #27ae60;
  }
  
  .contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .info-box {
    margin-bottom: 30px;
  }
  
  .info-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .info-box p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  .social-btn:hover {
    background-color: #497fb3;
  }
  
  .info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        gap:50px;
      }
  
    .contact-info, .contact-form {
      width: 100%;
    }
    .contact-header h1 {
      font-size: 40px;
    }
    
    .contact-header p {
      font-size: 1.9rem;
      margin-bottom: 15px;
    }
  }

  @media (min-width: 768px) and (max-width:1230px) {
    .container2 {
      flex-direction: column;
      margin-left: 20%;
      gap:50px;
    }
    .contact-header h1 {
      font-size: 40px;
    }
    
    .contact-header p {
      font-size: 1.9rem;
      margin-bottom: 15px;
    }
    .contact-info, .contact-form {
      width: 80%;
    }
  }
  