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

        body {
            font-family: Verdana, Arial, sans-serif;
            font-size: 10pt;
            line-height: 1.6;
            color: #000080;
            background-color: #f8f9fa;
            font-weight: bold;
        }

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

        h1 {
            color: #000080;
            font-size: 24pt;
            font-weight: bold;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #CC0000;
            text-align: center;
        }

        article {
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #CC0000;
        }

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

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

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

        .transition-section {
            background: white;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 3px solid #CC0000;
        }

        .transition-section p {
            color: #000080;
            margin-bottom: 15px;
        }

        .links-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 2px solid #CC0000;
        }

        .links-section h3 {
            color: #000080;
            font-size: 14pt;
            font-weight: bold;
            margin-bottom: 20px;
            margin-top: 30px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin-bottom: 25px;
        }

        .links-section li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .links-section li:last-child {
            border-bottom: none;
        }

        .links-section a {
            color: #000080;
            text-decoration: none;
            font-weight: bold;
            font-size: 10pt;
            display: block;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #CC0000;
            background-color: #f8f9fa;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 20pt;
                margin-bottom: 20px;
            }

            article {
                padding: 20px;
                margin-bottom: 20px;
            }

            article h2 {
                font-size: 13pt;
            }

            article h3 {
                font-size: 11pt;
            }

            .transition-section {
                padding: 20px;
                margin-bottom: 20px;
            }

            .links-section {
                padding: 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .links-section h3 {
                font-size: 13pt;
                margin-top: 25px;
                margin-bottom: 15px;
            }
        }

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

            h1 {
                font-size: 18pt;
            }

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 12pt;
            }

            article h3 {
                font-size: 10pt;
            }

            .transition-section {
                padding: 15px;
            }

            .links-section {
                padding: 15px;
            }

            .links-section h3 {
                font-size: 12pt;
            }
        }
    