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

        body {
            font: 100% Verdana, Arial, Helvetica, sans-serif;
            background: linear-gradient(135deg, #666666, #888888);
            color: #000000;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #FFFFFF;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
            min-height: 100vh;
        }

        header {
            background: #DDDDDD;
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid #ccc;
        }

        h1 {
            font-size: 1.8em;
            font-weight: 300;
            color: #333;
            margin-bottom: 10px;
        }

        .logo {
            margin-top: 10px;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        main {
            padding: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 1.4em;
            color: #005FA9;
            margin-bottom: 20px;
            font-weight: 500;
        }

        article h3 {
            font-size: 1.2em;
            color: #333;
            margin: 20px 0 15px 0;
            font-weight: 500;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 0.95em;
        }

        article a {
            color: #005FA9;
            text-decoration: none;
        }

        article a:hover {
            text-decoration: underline;
            color: #333;
        }

        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background: #f8f8f8;
            border-left: 4px solid #005FA9;
            border-radius: 5px;
        }

        .links-section {
            margin-top: 40px;
            background: #EBEBEB;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        .links-section h3 {
            font-size: 1.1em;
            color: #005FA9;
            margin-bottom: 15px;
            font-weight: 600;
            border-bottom: 2px solid #005FA9;
            padding-bottom: 5px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 10px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            margin-bottom: 8px;
        }

        .links-section a {
            color: #666;
            text-decoration: none;
            font-size: 0.9em;
            display: block;
            padding: 5px 0;
            border-bottom: 1px dotted #ccc;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #333;
            text-decoration: none;
            border-bottom-color: #333;
            padding-left: 5px;
        }

        footer {
            background: #DDDDDD;
            padding: 20px;
            text-align: center;
            border-top: 2px solid #ccc;
            color: #666;
            font-size: 0.8em;
        }

        footer .highlight {
            color: #005FA9;
        }

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

            main {
                padding: 20px;
            }

            h1 {
                font-size: 1.5em;
            }

            .links-section {
                padding: 20px;
            }

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

            header, footer {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.3em;
            }

            main {
                padding: 15px;
            }

            article p {
                font-size: 0.9em;
            }
        }
    