/* Estilo general del formulario */
.wpcf7-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  max-width: 700px;
  margin: auto;
}

/* Títulos de secciones */
.wpcf7-form h2,
.wpcf7-form h3 {
  color: #1a202c;
  font-weight: 600;
  margin-top: 30px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 5px;
}

/* Etiquetas */
.wpcf7-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  color: #2d3748;
}

/* Inputs, selects y textareas */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  margin-top: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Checkboxes y radios */
.wpcf7-form input[type="radio"],
.wpcf7-form input[type="checkbox"] {
  margin-right: 8px;
}

/* Botón de envío */
.wpcf7-submit {
  background-color: #38a169;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #2f855a;
}