
        /* Basic styling for readability and responsiveness */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            color: #333;
        }
        h1, h2, h3 {
            color: #2c3e50;
            margin-top: 1.5em;
        }
        h1 {
            font-size: 2.2em;
            margin-bottom: 0.8em;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8em;
            margin-bottom: 0.6em;
            border-left: 4px solid #3498db;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.4em;
            margin-bottom: 0.4em;
            color: #3498db;
        }
        ul {
            margin-bottom: 1.2em;
            padding-left: 20px;
        }
        li {
            margin-bottom: 0.5em;
        }
        .faq-item {
            margin-bottom: 1.2em;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        .faq-question {
            font-weight: bold;
            margin-bottom: 0.3em;
        }
        .example {
            font-style: italic;
            color: #666;
            margin-top: 0.3em;
            padding-left: 10px;
            border-left: 2px solid #ccc;
        }
        a {
            color: #3498db;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.2em;
            }
        }
    