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

        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 10pt;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        .container {
            max-width: 960px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        header {
            background: linear-gradient(to bottom, #01375f 0%, #012540 100%);
            padding: 20px;
            border-bottom: 3px solid #3b88bf;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .site-title {
            color: #fff;
            font-size: 18pt;
            font-weight: bold;
        }

        .header-nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .header-nav a {
            color: #95d3ff;
            text-decoration: none;
            font-size: 9pt;
        }

        .header-nav a:hover {
            color: #fff;
            text-decoration: underline;
        }

        nav {
            background: #012540;
            border-bottom: 3px solid #3b88bf;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            text-decoration: none;
            font-size: 11pt;
        }

        nav a:hover {
            background: #3b88bf;
        }

        main {
            padding: 30px 20px;
        }

        h1 {
            color: #3b88bf;
            font-size: 24pt;
            font-weight: bold;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #012540;
            font-size: 14pt;
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #333;
            font-size: 12pt;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 12px;
        }

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

        .transition-section {
            background: #eaf6ff;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #3b88bf;
            border-radius: 4px;
        }

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

        .links-section {
            background: linear-gradient(to bottom, #eee 0%, #fff 100%);
            padding: 30px 25px;
            margin-top: 30px;
            border: 1px solid #00529c;
            border-top: 3px solid #012540;
        }

        .links-section h3 {
            color: #012540;
            font-size: 13pt;
            font-weight: bold;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3b88bf;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

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

        .links-section a {
            color: #3b88bf;
            text-decoration: none;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.2s;
        }

        .links-section a:hover {
            color: #014a7f;
            text-decoration: underline;
        }

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

        footer {
            background: linear-gradient(to bottom, #01375f 0%, #000c14 100%);
            color: #fff;
            padding: 30px 20px;
            margin-top: 40px;
        }

        .footer-content {
            text-align: center;
            font-size: 9pt;
        }

        .footer-content p {
            margin: 10px 0;
        }

        .footer-content a {
            color: #95d3ff;
            text-decoration: none;
        }

        .footer-content a:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
            }

            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .site-title {
                font-size: 16pt;
                margin-bottom: 10px;
            }

            .header-nav {
                font-size: 8pt;
            }

            nav ul {
                flex-direction: column;
            }

            nav a {
                padding: 12px 15px;
                border-bottom: 1px solid #3b88bf;
            }

            h1 {
                font-size: 20pt;
            }

            article h2 {
                font-size: 12pt;
            }

            article h3 {
                font-size: 11pt;
            }

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

            main {
                padding: 20px 15px;
            }

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

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

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

            .site-title {
                font-size: 14pt;
            }

            h1 {
                font-size: 18pt;
            }

            nav a {
                font-size: 10pt;
            }
        }
    