body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background-color: #1d72b8;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

main {
  padding: 2rem;
}

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  background-color: #eaeaea;
  color: #555;
}

.contacto-discreto {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contacto-discreto h3 {
  text-align: center;
  color: #1d72b8;
  margin-bottom: 2rem;
}

.contacto-discreto form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-discreto label {
  font-weight: bold;
  margin-top: 0.5rem;
}

.contacto-discreto input,
.contacto-discreto select,
.contacto-discreto textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contacto-discreto .contact-preference {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contacto-discreto button {
  margin-top: 1rem;
  padding: 0.9rem;
  background-color: #1d72b8;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contacto-discreto button:hover {
  background-color: #155d90;
}
