/* Estilo general */
body {
  font-family: Arial, sans-serif;
  background-color: #fdf7f3; /* Fondo suave */
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  overflow-y: auto;
}

/* Encabezado */
header {
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 96px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Contenedor principal */
main.privacy-main {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

.privacy-container {
  padding: 20px 20px;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  text-align: left;
}

/* Títulos */
h2 {
  font-size: 24px;
  color: #ff6b6b;
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  color: #ff6b6b;
  margin-bottom: 10px;
}

/* Texto */
p,
ul,
li {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* Botón de regreso */
.volver-button {
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #ffd8d8;
  color: #333;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.volver-button:hover {
  background-color: #ffc0c0;
}

/* Estilo responsive */
@media only screen and (max-width: 400px) {
  .privacy-container {
    padding: 20px 10px;
    max-width: 90%;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p,
  ul,
  li {
    font-size: 12px;
  }

  .volver-button {
    font-size: 14px;
  }
}
