.terms .text-container .contact-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 26px;
  color: #4f4f4f;
  margin-bottom: 32px;
  max-width: 640px;
}

.terms .text-container .contact-lead a {
  color: #2563eb;
  text-decoration: none;
}

.terms .text-container .contact-lead a:hover {
  text-decoration: underline;
}

.terms .contact-form {
  max-width: 560px;
}

.terms .contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.terms .contact-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: #6c6c6c;
  margin: 6px 0 0;
}

.terms .contact-field {
  margin-bottom: 20px;
}

.terms .contact-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #1a1919;
  margin-bottom: 8px;
}

.terms .contact-optional {
  font-family: var(--font-body);
  font-weight: 400;
  color: #6c6c6c;
}

.terms .contact-field input[type="text"],
.terms .contact-field input[type="email"],
.terms .contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: #1a1919;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}

.terms .contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.terms .contact-field input:focus,
.terms .contact-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.terms .contact-file-input {
  font-family: var(--font-body);
  font-size: 14px;
}

.terms .contact-photo-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.terms .contact-photo-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #ececec;
  font-size: 14px;
  color: #4f4f4f;
}

.terms .contact-photo-remove {
  font-family: var(--font-body);
  font-size: 13px;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.terms .contact-photo-remove:hover {
  text-decoration: underline;
}

.terms .contact-error {
  font-family: var(--font-body);
  font-size: 14px;
  color: #b91c1c;
  margin: 0 0 16px;
}

.terms .contact-submit {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.terms .contact-submit:hover:not(:disabled) {
  background: #1d4ed8;
}

.terms .contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media only screen and (max-width: 767px) {
  .terms .text-container .contact-lead {
    font-size: 15px;
    line-height: 24px;
  }
}
