@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

.form-section {
  padding: 64px 0;
  background-color: #f7f8fa;
  color: #1d1d1f;
  font-family: 'Montserrat', sans-serif;
}

.form-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-subtext {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #6b6b6e;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-form input {
  font-family: 'Montserrat', sans-serif;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #d5d8dc;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.demo-form input:focus {
  border-color: #0B66FF;
  outline: none;
}

.btn.primary {
  font-family: 'Montserrat', sans-serif;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  background-color: #009C8F;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn.primary:hover {
  background-color: #33B6A2;
  
}

.demo-form select {
  font-family: 'Montserrat', sans-serif;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #d5d8dc;
  border-radius: 8px;
  background-color: #fff;
  color: #1d1d1f;
  transition: border-color 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,55 70,95 110,55' fill='none' stroke='%236b6b6e' stroke-width='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.demo-form select:focus {
  border-color: #0B66FF;
  outline: none;
}

.form-note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 480px) {
  .demo-form select {
    font-size: 14px;
    padding: 13px 14px;
  }
}


/* 📱 Адаптив */
@media (max-width: 480px) {
  .form-inner {
    padding: 0 20px;
  }

  .form-section h2 {
    font-size: 24px;
  }

  .form-subtext {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .demo-form input,
  .btn.primary {
    font-size: 14px;
  }
}
