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

        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f5f5dc;
            background-image: linear-gradient(45deg, #e8e8d0 25%, transparent 25%, transparent 75%, #e8e8d0 75%, #e8e8d0),
                              linear-gradient(45deg, #e8e8d0 25%, transparent 25%, transparent 75%, #e8e8d0 75%, #e8e8d0);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            color: #003300;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(to bottom, #ffffff 0%, #f0f0e8 100%);
            border-bottom: 4px solid #339900;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .header-images {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        h1 {
            color: #660000;
            font-size: 2.5em;
            text-align: center;
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

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

        article {
            background: #ffffff;
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid #339900;
        }

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

        article h2, article h3, article h4 {
            color: #660000;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        article h2 {
            font-size: 1.8em;
            border-bottom: 3px solid #339900;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.4em;
        }

        .transition-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f0 100%);
            padding: 25px 30px;
            margin: 20px 0;
            border-radius: 8px;
            border-left: 5px solid #339900;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .transition-section p {
            font-size: 1.05em;
            margin-bottom: 10px;
        }

        .links-section {
            background: #ffffff;
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid #339900;
        }

        .links-section h2 {
            color: #660000;
            font-size: 2em;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid #339900;
            padding-bottom: 15px;
        }

        .links-section h3 {
            color: #003300;
            font-size: 1.3em;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid #339900;
        }

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

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

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

        .links-section a {
            color: #003300;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05em;
        }

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

        footer {
            background: linear-gradient(to top, #003300 0%, #005500 100%);
            color: #ffffff;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            font-size: 0.9em;
        }

        footer p {
            margin: 5px 0;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
                padding: 20px 15px;
            }

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

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

            .header-content {
                padding: 15px;
            }
        }

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

            article p, .transition-section p {
                font-size: 1em;
            }

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

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

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