
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
  text-align: center;
}
header, nav, section, footer {
  padding: 1em;
  max-width: 1200px;
  margin: auto;
}
header img {
  width: 150px;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2em;
  background: #3a005b;
  color: white;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 0.5em;
}
section {
  margin: 2em 0;
}
.raquel img, .servicio img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
input, textarea {
  margin: 0.5em 0;
  padding: 0.5em;
  width: 90%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #6a1b9a;
  color: white;
  padding: 0.7em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.servicio {
  margin-bottom: 2em;
}
.servicios img {
  margin: 2em auto;
  display: block;
  max-width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
}
