/* styles.css */

  
  .contact-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
   margin-left: 200px;
   margin-top: 150px;
    padding: 20px;
    border-radius: 8px;
   
  }
  
  .info-section {
    width: 50%;
    line-height: 1.8;
    font-size: 16px;
    color: #333333;
  }
  
  .info-section p {
    margin: 10px 0;
  }
  
  .info-section span {
    margin-right: 10px;
  }
  
  .form-section {
    width: 40%;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form input, form textarea, form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  form button {
    background-color: #0bb4a8;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  form button:hover {
    background-color: #088f86;
  }
  