body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff6f4;
  color: #333;
}
.titulo {
  text-align: center;
  color: #f58f7c;
  margin-bottom: 20px;
}
.contenedor {
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  color: #f58f7c;
  margin-bottom: 10px;
}

header img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fcdedc;
}


.seccion {
  margin-bottom: 30px;
}

.seccion h2 {
  background-color: #ffd6d6;
  color: #d96c6c;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background-color: #fff2f0;
  border-radius: 8px;
  overflow: hidden;
}

td {
  padding: 12px;
  border-bottom: 1px solid #f4caca;
}


a {
  color: #e07a5f;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #b34b36;
}


textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #f4caca;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  resize: vertical;
  background-color: #fff9f9;
}

.btn-enviar {
  margin-top: 15px;
  display: block;
  width: 150px;
  padding: 10px;
  background-color: #f58f7c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #d96c6c;
}