.main-contact{
  height: 700px;
  background: url(images/contact.jpg);
  background-size: cover;
}


.contact-container {
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.form-section {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
  text-align: center; 
  margin-top: 50px;
}

.form-section h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: #00000000;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #333;
}

.address-section {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 50px;
}

.address-section h2 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
}

.address-details {
  margin-bottom: 20px;
  text-align: left;
}

.map-container {
  height: 200px; /* Set the height as needed */
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }

  .form-section,
  .address-section {
      margin-right: 0;
      margin-bottom: 20px;
  }
}