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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #001052;
            background-color: #f5f5f5;
            background-image: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
        }

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

        h1 {
            color: #006C33;
            font-size: 2.5em;
            margin: 30px 0;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        article {
            background: #ffffff;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #006C33;
        }

        article h2 {
            color: #006C33;
            font-size: 1.8em;
            margin: 30px 0 15px 0;
            font-weight: 600;
        }

        article h3 {
            color: #006C33;
            font-size: 1.4em;
            margin: 25px 0 12px 0;
            font-weight: 600;
        }

        article h4 {
            color: #001052;
            font-size: 1.2em;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }

        article p {
            margin-bottom: 15px;
            color: #001052;
            font-size: 1.05em;
        }

        article p:last-child {
            margin-bottom: 0;
        }

        .transition-section {
            background: #ffffff;
            padding: 35px 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

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

        .links-section {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-top: 3px solid #006C33;
        }

        .links-section h2 {
            color: #006C33;
            font-size: 1.8em;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .links-section h3 {
            color: #006C33;
            font-size: 1.4em;
            margin: 30px 0 15px 0;
            font-weight: 600;
        }

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

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

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

        .links-section li:before {
            content: "•";
            color: #006C33;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }

        .links-section a {
            color: #006C33;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05em;
            display: inline-block;
        }

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

        .links-section a:visited {
            color: #006C33;
        }

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

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

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article h4 {
                font-size: 1.1em;
            }

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

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

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

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

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

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

            article {
                padding: 20px 15px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

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

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