.to-contact {
  padding: 64px 20px 64px 20px;
  text-align: center; 
}

.to-contact-in {
  max-width: 1024px;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.to-contact-in h1{
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  text-align: center;
  color: inherit;
  font-weight: normal;
  margin-bottom: 48px;
  display: inline-block;
}

.to-contact-in h2{
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  text-align: center;
  color: inherit;
  font-weight: normal;
  margin-bottom: 32px;
}


.to-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0px 0px 10px 6px #ca8f2932;
  -webkit-box-shadow: 0px 0px 10px 6px #ca8f2932;
  -moz-box-shadow: 0px 0px 10px 6px #ca8f2932;
  border: 1px solid #ca8f29;
  border-radius: 10px;
}

.to-form__row {
  display: flex;
  gap: 1.25rem;
  text-align: left;
}

.to-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.to-form__field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-back-dark);
  padding-left: 4px;
}

.to-form__field input,
.to-form__field textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: none;
  font-family: 'exo_2regular',Arial,Georgia,Courier;
}

.to-form__field input:focus,
.to-form__field textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  outline: none;
  box-shadow: 0px 0px 10px 6px #ca8f2932;
  -webkit-box-shadow: 0px 0px 10px 6px #ca8f2932;
  -moz-box-shadow: 0px 0px 10px 6px #ca8f2932;
  border: 1px solid #ca8f29;
}



.to-form button{
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  background: #ca8f2920;
  color: #ca8f29;
  padding: 10px 60px;
  border-radius: 16px;
  border: 1px solid #ca8f29;
  text-decoration: none;
  transition: all 0.5s ease;
  font-size: 32px;
  line-height: 40px;
  cursor: pointer;
}

.to-form button:hover{
  background: #ffffff;
  box-shadow: 0px 0px 10px 6px #ca8f2932;
  -webkit-box-shadow: 0px 0px 10px 6px #ca8f2932;
  -moz-box-shadow: 0px 0px 10px 6px #ca8f2932;
}

.to-form-answer{
  margin: 40px 0px;
  padding: 40px 20px;
  box-shadow: 0px 0px 10px 6px #ca8f2932;
  -webkit-box-shadow: 0px 0px 10px 6px #ca8f2932;
  -moz-box-shadow: 0px 0px 10px 6px #ca8f2932;
  border: 1px solid #ca8f29;
  border-radius: 10px;
  font-size: 30px;
  line-height: 40px;
  color: #ca8f29;
}


.to-form-answer > span{
  color: #ca8f29;
}

.chk-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    padding-left: 4px;
}

.chk-wrap input {
    position: absolute;
    opacity: 0;
    pointer-events: none; /* so clicks go to the label, not the hidden box */
}

.chk-wrap a{
  text-decoration: none;
  color: inherit;
}

.chk-wrap a:hover{
  color: #ca8f29;
}

.chk-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #999999;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

/* checked state */
.chk-wrap input:checked + .chk-custom {
    background-color: #ca8f29;
    border-color: #ca8f29;
}

.chk-wrap input:checked + .chk-custom::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 1px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* Responsive */
@media (max-width: 768px) {
  .to-form__row {
    flex-direction: column;
  }
}
