* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background-color: #F5F5F5;
}

/*.contact-hero {
  background-color: rgb(244, 247, 237);
  margin: 140px 50px ;
  display: flex;
  justify-content: space-around;
  height: 400px;
  position: relative;*/
.hero-info {
  display: flex;
  flex-direction: column;
  color: #333;
  padding: 20px;
}
.hero-info h1 {
  font-size: 2rem;
  white-space: nowrap;
  color: #C68264;
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.hero-info p {
  font-size: 2rem;
  white-space: nowrap;
}

.form-container {
  display: flex;
  justify-content: center;
}

.contact-form {
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 100px;
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form .form-field {
  margin-bottom: 30px;
}
.contact-form .form-field label {
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
  display: block;
  margin: 10px 24px;
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 90%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 20px;
}
.contact-form .form-field select {
  cursor: pointer;
}
.contact-form .form-field textarea {
  resize: vertical;
}
.contact-form .submit-btn {
  width: 90%;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #001725;
  border: none;
  border-radius: 4px;
  margin: 0 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form .submit-btn:hover {
  background-color: black;
}

@media (max-width: 390px) {
  .contact-form {
    max-width: 1100px;
  }
  .contact-form .form-field input,
  .contact-form .form-field select,
  .contact-form .form-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0px;
  }
  .contact-form .form-field label {
    margin: 10px;
  }
}
@media (max-width: 768px) {
  .contact-form {
    width: 80%;
  }
  .contact-form .form-field input,
  .contact-form .form-field select,
  .contact-form .form-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0px;
  }
  .contact-form .form-field label {
    margin: 10px;
  }
}

/*# sourceMappingURL=contact.css.map */
