#contact-us .flexSection {
  padding: 0 !important;
  border-radius: var(--radius) !important;
  justify-content: space-between;
  align-items: stretch !important;
  /* gap: 0; */
}
#contact-us img {
  border-radius: 0 var(--radius) var(--radius) 0 !important;
}
#contact-us form {
  padding: 52px 60px;
  border-radius: 24px;
  background-color: #f9f9f9;
}
#contact-us form input:not(.form_checkbox) {
  background-color: var(--gray95);
}
#contact-us_title,
#contact-us form {
  flex: 1 1 40%;
}
#contact-us p,
#contact-us h2 {
  max-width: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#contact-us form p {
  font-weight: 700;
  color: var(--gray1);
  font-size: 24px;
  text-align: center;
}
.form_inputs_row,
.form_inputs {
  /* margin-top: var(--mar-32); */
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.form-check {
  display: flex;
  align-items: start;
  gap: 12px;
  font-family: Arial, sans-serif;
  color: #6e6e6e;
  line-height: 1.5;
}

.form-check input[type='checkbox'] {
  width: 20px;
  height: 20px;
  appearance: none; /* Убираем стандартный вид чекбокса */
  background-color: #f3f3f3; /* Светлый фон по умолчанию */
  border: 2px solid #e0e0e0; /* Светлая граница по умолчанию */
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  outline: none; /* Убираем фокусное выделение */
}

/* Активное состояние чекбокса */
.form-check input[type='checkbox']:checked {
  background-color: var(--red); /* Красный фон */
  border-color: var(--red); /* Красная граница */
}

/* Галочка */
.form-check input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg); /* Центрирование и наклон галочки */
}

.form-check label {
  font-size: 16px;
  cursor: pointer;
}
.form_checkbox {
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}
.contact-us_icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.contact-us_icons a {
  background-color: var(--orange);
  border-radius: 50%;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us_btns {
  margin-top: 23px;
  gap: 32px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1200px) {
  #contact-us .flexSection > div:last-child {
    display: none;
  }
  #contact-us .desktop {
    display: none;
  }
  #contact-us .mobile {
    display: block;
  }
  #contact-us form p {
    font-weight: 500 !important;
    color: var(--gray5) !important;
  }
  #contact-us p,
  #contact-us h2 {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #contact-us form {
    padding: 32px 24px;
  }
  .contact-us_btns {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  #contact-us .mobile {
    display: none;
  }
}
