:root {
    --primary-color: #ff8c00; /* Naranja Gotchivergas */
    --secondary-color: #f0e68c; /* Amarillo Pálido */
    --text-color: #333;
    --border-radius: 8px;
    --container-bg: #ffffff; /* Fondo blanco para el contenido */
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinear arriba para páginas largas */
    min-height: 100vh;
}

.container {
    background-color: var(--container-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    padding: 25px 30px;
    width: 100%;
    max-width: 800px; /* Más ancho para texto legal */
    box-sizing: border-box;
    margin: 20px auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

header h1 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 2.2em;
}

header h2 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.2em;
    font-style: italic;
}

section h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

section p, section ul {
    margin-bottom: 15px;
    font-size: 0.95em;
}

section ul {
    padding-left: 20px;
}

section li {
    margin-bottom: 8px;
}

strong {
    color: #111;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
    color: #555;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }
    header h1 {
        font-size: 1.8em;
    }
    header h2 {
        font-size: 1.1em;
    }
    section h3 {
        font-size: 1.2em;
    }
    section p, section ul {
        font-size: 0.9em;
    }
}