/* Estilo general */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 40px;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Encabezados */
h1 {
    color: #004080;
    font-size: 2em;
    border-bottom: 2px solid #004080;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #0066cc;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

h3 {
    color: #007acc;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 5px;
}

h4 {
    color: #005599;
    margin-top: 30px;
    font-size: 1em;
}

/* Párrafos y listas */
p {
    margin-bottom: 15px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

ol {
    list-style-type: decimal;
}

/* Checkbox y etiqueta */
label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 0.95em;
}

input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #0066cc;
}

/* Enlaces */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}