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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #faf8f8;
            color: #262626;
            line-height: 1.6;
            padding: 20px;
        }

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

        a:visited {
            color: #ff472e;
        }

        a:hover {
            text-decoration: underline;
        }

        header {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 30px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f0eeee 100%);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 2.5em;
            color: #303391;
            margin-bottom: 15px;
            font-weight: bold;
            text-align: center;
        }

        h2 {
            font-size: 2em;
            color: #303391;
            margin: 30px 0 20px;
            font-weight: bold;
        }

        h3 {
            font-size: 1.5em;
            color: #262626;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        h4 {
            font-size: 1.2em;
            color: #262626;
            margin: 20px 0 10px;
            font-weight: bold;
        }

        article {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 30px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

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

        .transition-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 25px 30px;
            background: #f5f3f3;
            border-left: 4px solid #303391;
            border-radius: 8px;
        }

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

        .links-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 30px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .links-section h3 {
            color: #303391;
            border-bottom: 2px solid #ff472e;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

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

        .links-section li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            break-inside: avoid;
        }

        .links-section li:before {
            content: "♪";
            position: absolute;
            left: 0;
            color: #ff472e;
            font-weight: bold;
        }

        footer {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #666;
            border-top: 1px solid #ddd;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            h1 {
                font-size: 2em;
            }

            h2 {
                font-size: 1.6em;
            }

            h3 {
                font-size: 1.3em;
            }

            header, article, .transition-section, .links-section {
                padding: 20px;
            }

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

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

            h2 {
                font-size: 1.4em;
            }

            h3 {
                font-size: 1.2em;
            }

            header, article, .transition-section, .links-section {
                padding: 15px;
            }
        }

        strong {
            font-weight: bold;
        }

        em {
            font-style: italic;
        }
    