/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/* Contact Us Page */

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 80%;
  width: 100%;
  margin-top: 100px;
}
.contact-form {
  width: 40%;
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form button {
  display: block;
  width: 100%;
  padding: 0.75rem;
}
.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  box-shadow: 0px 4px 0px rgba(161, 161, 161, 0.356);
}
.contact-form button {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.contact-form button:hover {
  background-color: #00b3aa;
}


@media (max-width: 1250px) {
  .contact-form {
    padding-top: 10px;
    width: 60%;
  }
}

@media (max-width: 992px) {
  .contact-form {
    padding-top: 10px;
    width: 80%;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding-top: 10px;
  }

  .contact-form {
    width: 90%;
    padding: 1rem;
  }

  .contact-form h2 {
    font-size: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.5rem;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding-top: 10px;
    width: 95%;
    padding: 0.75rem;
  }

  .contact-form h2 {
    font-size: 1.25rem;
  }

  .contact-form button {
    font-size: 0.85rem;
  }
}
