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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #232323;
            background-color: #f5f5f5;
        }

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

        header {
            background: linear-gradient(135deg, #2c5f2d 0%, #4a8c4f 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo-section {
            flex: 1;
            min-width: 250px;
        }

        .site-title {
            font-size: 2.5em;
            font-style: italic;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .site-subtitle {
            font-size: 1.2em;
            color: #ffcc66;
            font-weight: 300;
        }

        main {
            background: white;
            margin: 30px auto;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        h1 {
            color: #2c5f2d;
            font-size: 2.2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffcc66;
        }

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

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

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

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

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background: #f9f9f9;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #4a8c4f;
            border-radius: 4px;
        }

        .transition-section p {
            color: #555;
            font-size: 1.05em;
        }

        .links-section {
            background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
            padding: 40px;
            margin-top: 40px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

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

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

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

        .links-section li {
            break-inside: avoid;
            margin-bottom: 10px;
        }

        .links-section a {
            color: #4a8c4f;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 15px;
        }

        .links-section a:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #ffcc66;
            font-size: 0.9em;
        }

        .links-section a:hover {
            color: #2c5f2d;
            padding-left: 20px;
        }

        footer {
            background: #2c5f2d;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.8em;
            }

            .site-subtitle {
                font-size: 1em;
            }

            main {
                padding: 25px;
                margin: 20px auto;
            }

            h1 {
                font-size: 1.8em;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section {
                padding: 25px;
            }

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

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

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

            main {
                padding: 20px;
            }

            h1 {
                font-size: 1.5em;
            }

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