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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23f0f0f0" width="100" height="100"/></svg>');
            background-repeat: repeat-x;
            background-color: #fff;
        }

        .page-wrapper {
            max-width: 1024px;
            min-width: 320px;
            margin: 2em auto;
            padding: 10px;
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 0 4px 0 #9F9581;
        }

        header {
            padding: 1.5em 0;
            border-bottom: 2px solid #f4c661;
            margin-bottom: 2em;
        }

        h1 {
            font-size: 2em;
            font-weight: normal;
            color: #520606;
            padding-bottom: 0.5em;
            border-bottom: 1px dotted #ccc;
            margin-bottom: 0.5em;
        }

        article {
            padding: 1em 2em;
            margin-bottom: 2em;
        }

        article h2 {
            font-size: 1.5em;
            font-weight: normal;
            color: #980101;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="8" fill="%23f4c661"/></svg>');
            background-repeat: no-repeat;
            background-position: left center;
            padding-left: 30px;
            margin: 1.5em 0 0.66em;
        }

        article h3 {
            font-size: 1.3em;
            font-weight: normal;
            color: #222;
            margin: 1.2em 0 0.66em;
        }

        article h4 {
            font-size: 1.15em;
            font-weight: normal;
            color: #222;
            margin: 1em 0 0.66em;
        }

        article p {
            margin-bottom: 1em;
            line-height: 1.6;
        }

        article ul,
        article ol {
            margin: 0 0 1em 2em;
        }

        article li {
            margin-left: 1em;
            line-height: 1.6;
        }

        article a {
            color: #520606;
            text-decoration: none;
            font-weight: bold;
        }

        article a:hover {
            text-decoration: underline;
        }

        article strong {
            font-weight: bold;
        }

        article em {
            font-style: italic;
        }

        .transition-section {
            padding: 1em 2em;
            margin-bottom: 2em;
        }

        .transition-section p {
            margin-bottom: 1em;
            line-height: 1.6;
        }

        .links-section {
            padding: 2em;
            background-color: #fff6d3;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin: 0 1em 2em;
        }

        .links-section h3 {
            font-size: 1.3em;
            font-weight: normal;
            color: #520606;
            margin-bottom: 1em;
            padding-bottom: 0.5em;
            border-bottom: 1px solid #f4c661;
        }

        .links-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
            column-count: 2;
            column-gap: 2em;
        }

        .links-section li {
            margin: 0 0 0.8em 0;
            padding: 0.4em 0;
            break-inside: avoid;
        }

        .links-section li a {
            color: #520606;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: color 0.2s;
        }

        .links-section li a:hover {
            color: #980101;
            text-decoration: underline;
        }

        .links-section li a::before {
            content: "→ ";
            color: #f4c661;
            font-weight: bold;
        }

        footer {
            padding: 2em;
            text-align: center;
            border-top: 2px solid #f4c661;
            margin-top: 2em;
            font-size: 0.9em;
            color: #666;
        }

        @media screen and (max-width: 768px) {
            .page-wrapper {
                margin: 1em;
                padding: 5px;
            }

            h1 {
                font-size: 1.6em;
                padding: 0.5em 0.5em 0.3em;
            }

            article {
                padding: 0.5em 1em;
            }

            article h2 {
                font-size: 1.3em;
                padding-left: 25px;
                background-size: 20px 20px;
            }

            article h3 {
                font-size: 1.15em;
            }

            .transition-section {
                padding: 0.5em 1em;
            }

            .links-section {
                padding: 1em;
                margin: 0 0.5em 1em;
            }

            .links-section ul {
                column-count: 1;
            }

            footer {
                padding: 1em;
            }
        }

        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .page-wrapper {
                margin: 1.5em;
            }

            .links-section ul {
                column-count: 2;
            }
        }

        @media print {
            body {
                background: none;
                font-size: 10pt;
            }

            .page-wrapper {
                box-shadow: none;
                max-width: 100%;
                margin: 0;
            }

            .links-section {
                background-color: transparent;
            }

            a {
                text-decoration: underline;
                color: #000;
            }
        }
    