.hf-form-wrapper {
  width: 100%;
}

.hf-static-form {
  display: grid;
  gap: 1.2rem;
  max-width: 640px;
}

.hf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hf-field label {
  font-weight: 600;
  color: #1f2933;
}

.hf-static-form input,
.hf-static-form textarea {
  width: 100%;
  border: 1px solid #d4d8dd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hf-static-form input:focus,
.hf-static-form textarea:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
  outline: none;
}

.hf-static-form textarea {
  min-height: 140px;
  resize: vertical;
}

.hf-submit {
  align-self: start;
  background-color: #0f766e;
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2.4rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hf-submit:hover,
.hf-submit:focus {
  background-color: #115e59;
  transform: translateY(-1px);
}

.hf-submit:active {
  transform: translateY(0);
}

.hf-form-note {
  margin: 0;
  font-size: 0.9rem;
  color: #4f5d75;
}

@media (max-width: 600px) {
  .hf-static-form {
    gap: 1rem;
  }

  .hf-submit {
    width: 100%;
    text-align: center;
  }
}
