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

        body {
            font-family: Verdana, Arial, sans-serif;
            font-size: 8pt;
            color: #676767;
            background-color: #fff;
            line-height: 1.6;
        }

        .header-container {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23b40403" width="100" height="100"/></svg>') repeat-x center top;
            background-color: #f9f9f9;
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-title {
            font-size: 1.8em;
            color: #003759;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        h1 {
            font-size: 2em;
            font-weight: normal;
            color: #003759;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ebebeb;
        }

        article {
            margin-bottom: 40px;
            color: #676767;
        }

        article h2 {
            font-size: 1.5em;
            font-weight: normal;
            color: #b40403;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.3em;
            font-weight: normal;
            color: #b40403;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.1em;
            font-weight: normal;
            color: #003759;
            margin-top: 18px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            color: #676767;
            text-align: justify;
        }

        article ul, article ol {
            margin: 15px 0 15px 25px;
        }

        article li {
            margin-bottom: 8px;
            color: #676767;
        }

        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #b40403;
        }

        .transition-section p {
            margin-bottom: 12px;
            color: #676767;
        }

        .links-section {
            margin-top: 50px;
            padding: 30px;
            background-color: #fcfcfc;
            border: 1px solid #dbddde;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #b40403;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
        }

        .links-section a {
            color: #0072bc;
            text-decoration: none;
            display: inline-block;
            padding: 4px 0;
            transition: color 0.2s;
        }

        .links-section a:hover {
            color: #44aff6;
            text-decoration: underline;
        }

        .links-section a:before {
            content: "▸ ";
            color: #b40403;
            margin-right: 5px;
        }

        .footer-container {
            background-color: #21374c;
            color: #fff;
            padding: 30px 0;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-inner p {
            color: #9e9e9e;
            font-size: 0.9em;
        }

        @media screen and (max-width: 768px) {
            .site-title {
                font-size: 1.4em;
            }

            h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.15em;
            }

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

            .transition-section {
                padding: 15px;
            }

            .links-section {
                padding: 20px 15px;
            }
        }

        @media screen and (max-width: 480px) {
            body {
                font-size: 9pt;
            }

            .site-title {
                font-size: 1.2em;
            }

            h1 {
                font-size: 1.4em;
            }

            .main-container {
                padding: 20px 15px;
            }
        }
    