/* style-politica.css */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo general del body */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a; /* fondo oscuro */
  color: #ffffff;            /* texto blanco */
  line-height: 1.6;
  padding: 20px;
}

/* Contenedor principal */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Encabezados */
h1, h2 {
  color: #00ffe1; /* color cyan que combina con tu página */
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  margin-top: 20px;
}

/* Párrafos y listas */
p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ccc;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

/* Enlaces */
a {
  color: #00ffe1;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}
