/* ============
   Estilos generales para páginas legales
   ============ */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Encabezados */
h1 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0056b3;
    /* tono azul profesional */
}

/* Texto */
p,
li {
    margin-bottom: 15px;
    color: #444;
}

/* Listas */
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Enlaces */
a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Footer pequeño dentro del documento */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}