:root {
            --primary-color: #28a745; /* Verde para privacidad transmite confianza */
            --text-color: #333;
            --bg-color: #f9f9f9;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 800px;
            margin: 40px auto;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        header {
            border-bottom: 2px solid #eee;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }

        h1 { font-size: 1.8rem; color: #000; margin-bottom: 5px; }
        .last-update { font-size: 0.9rem; color: #888; }

        h2 { font-size: 1.3rem; margin-top: 30px; color: var(--primary-color); border-left: 4px solid var(--primary-color); padding-left: 15px; }
        
        p { margin-bottom: 15px; }

        ul { margin-bottom: 20px; padding-left: 20px; }
        li { margin-bottom: 8px; }

        .back-link {
            display: inline-block;
            margin-top: 30px;
            margin-bottom: 20px;
            text-decoration: none;
            color: #f33;
            font-weight: 600;
        }

        @media (max-width: 600px) {
            .container { margin: 0; padding: 20px; border-radius: 0; }
        }