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

        body {
            font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
            background-color: #FFFFFF;
            color: #000000;
            line-height: 1.8;
            font-size: 14px;
        }

        a {
            color: #0033CC;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #FF0000;
        }

        a:visited {
            color: #990099;
        }

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

        h1 {
            font-size: 24px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #0033CC;
        }

        article {
            margin-bottom: 40px;
        }

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

        article h2 {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #0033CC;
        }

        article h3 {
            font-size: 18px;
            margin-top: 25px;
            margin-bottom: 12px;
            color: #333;
        }

        article h4 {
            font-size: 16px;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #333;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background-color: #f8f8f8;
            border-left: 4px solid #0033CC;
        }

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

        .links-section {
            margin-top: 50px;
            padding: 30px;
            background-color: #f5f5f5;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .links-section h3 {
            font-size: 18px;
            color: #0033CC;
            margin-bottom: 15px;
            margin-top: 25px;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 20px;
            margin-bottom: 25px;
        }

        .links-section ul li {
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0033CC;
            font-weight: bold;
        }

        .links-section ul li a {
            display: inline;
            line-height: 1.6;
        }

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

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

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }

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

            .links-section h3 {
                font-size: 16px;
            }
        }

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

            h1 {
                font-size: 18px;
            }

            .container {
                padding: 10px;
            }

            .transition-section {
                padding: 15px;
            }

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