/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa; /* Fondo limpio y profesional */
    color: #343a40; /* Texto gris oscuro para alta legibilidad */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Contenedor Principal */
.container {
    max-width: 900px;
    background: #ffffff; /* Fondo blanco */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
    line-height: 1.8;
}

/* Títulos */
h1, h2 {
    color: #007bff; /* Azul profesional */
    margin-bottom: 20px;
    font-weight: bold;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #007bff; /* Línea decorativa */
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    margin-top: 20px;
}

/* Párrafos */
p {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: justify;
    color: #495057; /* Gris medio */
}

/* Listas */
ul {
    margin: 20px 0;
    padding-left: 40px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #343a40; /* Texto gris oscuro */
}

/* Enlaces */
a {
    color: #007bff; /* Azul profesional */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #0056b3; /* Azul más oscuro */
}

/* Botón para Regresar */
button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #0056b3;
    transform: scale(1.05);
}
