#hubspot-form-container {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Grid: two columns for firstname/lastname and email/phone ── */
#hubspot-form-container .hs-form .hs-form-field {
  margin-bottom: 20px;
}

#hubspot-form-container .hs-form > div:nth-child(1),
#hubspot-form-container .hs-form > div:nth-child(2) {
  display: inline-block;
  width: calc(50% - 8px);
}

#hubspot-form-container .hs-form > div:nth-child(1) {
  margin-right: 16px;
}

/* ── Labels ── */
#hubspot-form-container .hs-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

#hubspot-form-container .hs-form .hs-form-required {
  color: #c8102e;
}

/* ── Inputs, selects, textarea ── */
#hubspot-form-container .hs-form input[type="text"],
#hubspot-form-container .hs-form input[type="email"],
#hubspot-form-container .hs-form input[type="tel"],
#hubspot-form-container .hs-form select,
#hubspot-form-container .hs-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

#hubspot-form-container .hs-form input:focus,
#hubspot-form-container .hs-form select:focus,
#hubspot-form-container .hs-form textarea:focus {
  border-color: #c8102e;
}

/* ── Select arrow ── */
#hubspot-form-container .hs-form .input {
  position: relative;
}

#hubspot-form-container .hs-form select + *,
#hubspot-form-container .hs-contact_topic .input::after {
  content: "↓";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 14px;
}

.hs-richtext p {
  font-size: 12px;
}

/* ── Textarea ── */
#hubspot-form-container .hs-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Placeholder color ── */
#hubspot-form-container .hs-form select.is-placeholder {
  color: #aaa;
}

input.hs-button.primary.large {
  margin-top: 8px;
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  padding: 14px 16px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
}
