/* Base */
body {
    margin: 0;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
    line-height: 1.7;
}

/* Contenedor */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Títulos */
h1 {
    font-size: 32px;
    margin-bottom: 10px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

h2 {
    margin-top: 40px;
    font-size: 20px;
    color: #ccc;
}

/* Texto */
p {
    margin: 15px 0;
}

/* Listas */
ul {
    margin-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 8px;
}

/* Bloque de crédito */
blockquote {
    background-color: #1c1c1c;
    padding: 15px;
    border-left: 4px solid #888;
    margin: 20px 0;
    font-style: italic;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
    text-align: center;
}

/* Enlaces */
a {
    color: white;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #ccc;
}