.contact-us-page {
  padding: 40px 16px;
}

.contact-us-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 36px 28px;
}

.contact-us-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  color: #222;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-us-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-us-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-us-input,
.contact-us-select,
.contact-us-textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #222;
  background: #fff;
  outline: none;
}

.contact-us-input:focus,
.contact-us-select:focus,
.contact-us-textarea:focus {
  border-color: #bdbdbd;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-us-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9a9a9a 50%),
    linear-gradient(135deg, #9a9a9a 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-us-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-us-submit {
  width: 100%;
  border-radius: 10px;
  padding: 12px 14px;
}

.contact-us-error {
  font-size: 12px;
  color: #d32f2f;
}

.contact-us-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-us-alert--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}

@media (max-width: 480px) {
  .contact-us-card {
    padding: 28px 18px;
  }
}

