/*Seccion preguntar por cotizacion*/
.quote-form-section {
  background: url("img/stacked-peaks-haikei.svg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
}

.quote-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.form-left {
  flex: 1;
  min-width: 300px;
}

.form-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-left p {
  font-size: 1.2rem;
  text-align: center;
}

.quote-form {
  flex: 1;
  min-width: 300px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  margin-bottom: 20px;
}

button[type="submit"] {
  background-color: #00c4ff;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #009ac2;
}
