
.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  
}

.contact-form {
  display: flex;
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 80%;
}

.contact-form img {
  width: 400px;
  object-fit: cover;
}

.contact-form form {
  padding: 50px;
}

.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form input[type="submit"] {
  background-color: #006494;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: #bc544b;
}

@media (max-width: 768px) {
  .contact-form {
      flex-direction: column;
      width: 90%;
  }

  .contact-form img {
      width: 100%;
      height: auto;
  }
}