/* Fondo general y tipografía */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #003366;
  color: white;
  line-height: 1.7;
}

/* Contenedor centrado */
.privacy-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.privacy-container {
  background-color: #040b81;
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Título principal */
.privacy-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

/* Fecha */
.privacy-date {
  font-size: 16px;
  margin-bottom: 25px;
  color: #00e5ff;
}

/* Subtítulos */
h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #00e5ff;
}

/* Enlaces */
a {
  color: #ffffff;
  text-decoration: underline;
}

a:hover {
  color: #00eaff;
}

/* Listas */
ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 8px;
}

/* Texto de aceptación */
.acknowledgment {
  margin-top: 30px;
  font-style: italic;
  color: #ccc;
}
