/* Estilo general */
body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #fff0f5;
  color: #5c2a4a;
}

/* Encabezados */
h2, h3 {
  text-align: center;
  color: #d63384;
  font-size: 2em;
  margin-top: 30px;
}

/* Imagen centrada con borde decorativo */
.imagen-servicio {
  text-align: center;
  margin: 20px 0;
}

.imagen-servicio img {
  width: 60%;
  border: 5px dashed #ffb6c1;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff69b4;
}

/* Párrafos justificados */
.descripcion p {
  text-align: justify;
  margin: 15px 40px;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Tablas */
table {
  margin: 30px auto;
  border-collapse: collapse;
  width: 85%;
  background-color: #ffe6f0;
  box-shadow: 0 0 10px #f08080;
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  border: 2px solid #ff69b4;
  padding: 12px;
  text-align: center;
  font-size: 1em;
}

th {
  background-color: #ffc0cb;
  color: #5c2a4a;
}

td {
  background-color: #fff;
}

/* Menú de navegación */
.menu {
  background-color: #ffe6f0;
  padding: 20px;
  text-align: center;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #c71585;
  font-weight: bold;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ff1493;
}

/* Botón principal */
.boton {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #ff1493;
}

/* Línea divisora */
hr {
  border: none;
  border-top: 3px dotted #ffb6c1;
  margin: 30px auto;
  width: 80%;
}
