.contact-section {
  min-height: 702px;
  padding: 92px 20px 70px;
  background: #000000;
  box-sizing: border-box;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  gap: 34px;
  justify-content: center;
  align-items: start;
  max-width: 560px;
  margin: 0 auto;
}

.contact-section__heading {
  padding-top: 0;
  text-align: center;
  text-transform: uppercase;
}

.contact-section__heading p {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--t-headline-font, Arial);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-section__heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--t-headline-font, Arial);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.feedback-form {
  display: grid;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #292929;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  font-family: var(--t-headline-font, Arial);
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 16px;
}

.feedback-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #000000 50%),
    linear-gradient(135deg, #000000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 34px;
}

.feedback-form__phone {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
}

.feedback-form__country {
  padding-left: 10px;
  padding-right: 26px;
}

.feedback-form textarea {
  min-height: 110px;
  resize: vertical;
}

.feedback-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #ffffff;
  font-family: var(--t-text-font, Arial);
  font-size: 12px;
  line-height: 1.35;
}

.feedback-form__consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.feedback-form__consent a {
  color: #ffffff;
  text-decoration: underline;
}

.feedback-form button {
  width: 220px;
  height: 60px;
  justify-self: center;
  border: 0;
  border-radius: 30px;
  background: #ff0000;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--t-text-font, Arial);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.feedback-form button:hover,
.feedback-form button:focus {
  background: #a70000;
}

.feedback-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.feedback-form__status {
  min-height: 20px;
  color: #ffffff;
  font-family: var(--t-text-font, Arial);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 479px) {
  .contact-section {
    min-height: 620px;
    padding: 70px 20px 48px;
  }

  .contact-section__heading p {
    font-size: 22px;
  }

  .contact-section__heading h2 {
    font-size: 46px;
  }

  .feedback-form__phone {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 8px;
  }

  .feedback-form button {
    width: 100%;
  }
}
