.ga-contact-module {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: clamp(22px, 4vw, 34px);
  max-width: 920px;
  margin: 0 auto;
}

.ga-contact-module__intro {
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.7;
}

.ga-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ga-contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.ga-contact-field label,
.ga-contact-privacy {
  color: #1f2937;
  font-weight: 700;
  font-size: .95rem;
}

.ga-contact-field input,
.ga-contact-field select,
.ga-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.16);
  background: #f9fafb;
  color: #111827;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ga-contact-field input:focus,
.ga-contact-field select:focus,
.ga-contact-field textarea:focus {
  border-color: #1f8f4d;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 143, 77, 0.12);
}

.ga-contact-field--full {
  margin-top: 0;
}

.ga-contact-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ga-contact-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #4b5563;
}

.ga-contact-privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #1f8f4d;
  flex: 0 0 auto;
}

.ga-contact-privacy a {
  color: #1f8f4d;
  font-weight: 800;
  text-decoration: none;
}

.ga-contact-privacy a:hover {
  text-decoration: underline;
}

.ga-contact-actions {
  display: flex;
  justify-content: flex-start;
}

.ga-contact-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #1f8f4d;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  padding: 14px 26px;
  box-shadow: 0 12px 24px rgba(31, 143, 77, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ga-contact-submit:hover,
.ga-contact-submit:focus {
  background: #176f3b;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 143, 77, 0.26);
}

@media (max-width: 720px) {
  .ga-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ga-contact-submit {
    width: 100%;
  }
}
