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

        body {
            font-family: 'Inter', Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
        }

        a {
            color: #1a73e8;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }

        /* Container */


        h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #111;
            text-align: center;
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #111;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 5px;
        }

        p {
            margin-bottom: 15px;
            font-size: 1rem;
        }

        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        ul li {
            margin-bottom: 10px;
        }

        .section {
            margin-bottom: 50px;
        }

        address {
            font-style: normal;
            line-height: 1.6;
        }

        /* Table of contents */
        .toc ul {
            list-style: disc inside;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .container {
                padding: 20px;
                margin: 20px;
            }

            h1 {
                font-size: 1.6rem;
            }

            h2 {
                font-size: 1.3rem;
            }
        }
