/* Estilos generales para ambas páginas */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Estilos para los encabezados principales */
h1 {
    text-align: center;
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 20px;
}

/* Estilos para los encabezados secundarios */
h2 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Separadores estilizados */
hr {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #0056b3;
}

/* Estilo para listas */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 5px 0;
    font-size: 1rem;
    color: #555;
}

/* Estilo para enlaces */
a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #004085;
}

/* Estilo para secciones */
section {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Estilo para párrafos */
p {
    font-size: 1rem;
    color: #555;
}

/* Estilo responsivo para pantallas pequeñas */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }

    p, ul li {
        font-size: 0.9rem;
    }

    section {
        padding: 10px;
    }
}
