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

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f0;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
        }

        header {
            background: linear-gradient(135deg, #000080 0%, #1a1a66 100%);
            color: white;
            padding: 1.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .logo {
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
            text-decoration: none;
        }

        .publisher-info {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        h1 {
            font-size: 2.5rem;
            color: #400040;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #000080;
            line-height: 1.3;
        }

        article {
            background: white;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        article h2,
        article h3,
        article h4,
        article h5 {
            color: #400040;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        article h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #000080;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.5rem;
        }

        article h4 {
            font-size: 1.3rem;
        }

        article p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        article em {
            font-style: italic;
            color: #555;
        }

        article strong {
            font-weight: bold;
            color: #000080;
        }

        article u {
            text-decoration: underline;
        }

        .transition-section {
            background: white;
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
        }

        .transition-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .links-section {
            background: white;
            padding: 2.5rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        .links-section h3 {
            color: #000080;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #400040;
        }

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

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

        .links-section li {
            padding-left: 1.2rem;
            position: relative;
        }

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

        .links-section a {
            color: #000080;
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.6;
        }

        .links-section a:hover {
            color: #400040;
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(135deg, #000080 0%, #1a1a66 100%);
            color: white;
            padding: 1.5rem 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        hr {
            border: none;
            border-top: 2px solid #000080;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }

            h1 {
                font-size: 1.8rem;
            }

            article {
                padding: 1.5rem;
            }

            .transition-section {
                padding: 1.5rem;
            }

            .links-section {
                padding: 1.5rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .links-section h3 {
                font-size: 1.3rem;
            }
        }

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

            article {
                padding: 1rem;
            }

            .transition-section {
                padding: 1rem;
            }

            .links-section {
                padding: 1rem;
            }

            .logo {
                font-size: 1rem;
            }

            .publisher-info {
                font-size: 0.8rem;
            }
        }
    