body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

header {
  background-color: #043ca3;
  color: white;
  text-align: center;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.go-back {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.go-back:hover {
  color: #ff0000;
}

h1 {
  font-size: 36px;
  font-weight: bold;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 100px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: justify;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  color: #043ca3;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
}

.services-list {
  list-style-type: none;
  padding: 0;
}

.services-list li {
  font-size: 16px;
  line-height: 1.5;
  padding: 10px;
  text-align: center;
  transition: font-size 0.5s, color 0.5s;
}

.services-list li:hover {
  font-size: 18px;
  color: #043ca3;
}

.images {
  text-align: center;
  margin-top: 20px;
}

.images img {
  max-width: 100%;
  margin: 10px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp a {
  text-decoration: none;
  display: block;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.whatsapp img {
  width: 40px;
  height: 40px;
}

.whatsapp a:hover {
  background-color: #128c7e;
}

/* CONTACTO */
.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h3 {
  font-size: 24px;
  color: #043ca3;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #043ca3;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #ffa500;
}
