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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #004d00 0%, #006600 50%, #005500 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 40px 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        h1 {
            color: #33ff33;
            font-size: 2.5em;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
        }

        article {
            max-width: 1200px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 12px;
            color: #333;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

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

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

        article h4 {
            color: #004d00;
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

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

        .transition-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.9);
            padding: 30px 40px;
            border-radius: 12px;
            color: #333;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .transition-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .links-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .links-section h2 {
            color: #006600;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2em;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .links-section h3 {
            color: #005500;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.5em;
            padding-bottom: 10px;
            border-bottom: 2px solid #33ff33;
        }

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

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

        .links-section a {
            color: #006600;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .links-section a:hover {
            color: #33ff33;
            transform: translateX(5px);
        }

        .links-section a::before {
            content: "▸ ";
            color: #33ff33;
            font-weight: bold;
        }

        footer {
            max-width: 1200px;
            margin: 40px auto 20px;
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            color: #33ff33;
            font-size: 0.9em;
        }

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

            h1 {
                font-size: 1.8em;
            }

            header {
                padding: 30px 15px;
            }

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

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section h2 {
                font-size: 1.6em;
            }

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

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

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

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

            article h2 {
                font-size: 1.3em;
            }

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