.page-contact * {
  box-sizing: border-box;
}
.page-contact .title {
  position: relative;
}
.page-contact .title::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #aaa;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
.page-contact .contact-container {
  margin: 50px auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .page-contact .contact-container {
    flex-direction: column;
  }
}
.page-contact .contact-header {
  flex: 1 40%;
}
.page-contact .contact-header .sub-title {
  color: #999;
  font-size: 14px;
  margin-bottom: 8px;
}
.page-contact .contact-header .main-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: #333;
}
.page-contact .contact-header .divider {
  width: 60px;
  height: 3px;
  background-color: #006967;
  margin-bottom: 20px;
}
.page-contact .contact-header .desc {
  color: #666;
  font-size: 14px;
}
.page-contact .contact-form {
  flex: 2 60%;
  width: 100%;
}
.page-contact .contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-contact .contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
.page-contact .contact-form .form-group {
  flex: 1;
}
.page-contact .contact-form .form-group input,
.page-contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background-color: #f9f9f9;
}
.page-contact .contact-form .form-group input::placeholder,
.page-contact .contact-form .form-group textarea::placeholder {
  color: #999;
}
.page-contact .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.page-contact .contact-form .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #006967;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.page-contact .contact-form .submit-btn:hover {
  background-color: #005250;
}

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