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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #f4e4c1 0%, #e8d4a8 100%);
            color: #000080;
            line-height: 1.8;
            padding: 20px;
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }

        h1 {
            font-size: 2.5em;
            text-align: center;
            color: #000080;
            font-style: italic;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 5px solid #000080;
            line-height: 1.3;
        }

        article {
            margin-bottom: 40px;
        }

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

        article h2 {
            color: #663333;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.8em;
        }

        article h3 {
            color: #663333;
            margin-top: 25px;
            margin-bottom: 12px;
            font-size: 1.4em;
        }

        .transition-section {
            background: linear-gradient(to right, #f9f3e6, #fff9ed);
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #663333;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 1.1em;
            color: #663333;
            margin-bottom: 15px;
        }

        .links-section {
            background: linear-gradient(135deg, #faf6ed 0%, #f5eedc 100%);
            padding: 40px;
            margin-top: 40px;
            border-radius: 8px;
            border: 3px solid #d4c4a0;
        }

        .links-section h3 {
            color: #000080;
            margin-top: 30px;
            margin-bottom: 20px;
            font-size: 1.6em;
            padding-bottom: 10px;
            border-bottom: 3px solid #000080;
        }

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

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

        .links-section ul li {
            padding: 8px 0;
        }

        .links-section ul li a {
            color: #800080;
            text-decoration: none;
            font-size: 1.05em;
            transition: color 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .links-section ul li a:visited {
            color: #808000;
        }

        .links-section ul li a:hover {
            color: #663333;
        }

        .links-section ul li a::before {
            content: "▸ ";
            margin-right: 5px;
            color: #663333;
        }

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

            .container {
                padding: 25px;
            }

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

            article p {
                font-size: 1em;
            }

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

            .links-section {
                padding: 25px;
            }

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

            .links-section h3 {
                font-size: 1.4em;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 20px;
            }

            h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section ul li a {
                font-size: 1em;
            }
        }

        hr {
            border: none;
            border-top: 5px solid #000080;
            margin: 30px 0;
        }
    