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

        body {
            font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            background: #f0f5e8;
            text-align: center;
        }

        #container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        header {
            background: linear-gradient(135deg, #79B30B 0%, #6a9e0a 100%);
            padding: 30px 40px;
            position: relative;
        }

        h1 {
            font-family: Georgia, serif, Times, "Times New Roman";
            font-size: 2.5em;
            color: #fff;
            margin: 0;
            text-transform: capitalize;
            letter-spacing: -1px;
        }

        h1 a {
            color: #fff;
            text-decoration: none;
        }

        .description {
            color: #e8f5d0;
            font-size: 1.1em;
            margin-top: 8px;
        }

        nav {
            background: #333;
            border-bottom: 4px solid #79B30B;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 18px 25px;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9em;
            transition: background 0.3s, color 0.3s;
            border-left: 1px solid #444;
        }

        nav ul li:first-child a {
            border-left: none;
        }

        nav ul li a:hover {
            background: #79B30B;
            color: #fff;
        }

        main {
            padding: 40px;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
            font-size: 2em;
            color: #79B30B;
            margin: 30px 0 15px 0;
            text-transform: uppercase;
        }

        article h3 {
            font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
            font-size: 1.5em;
            color: #79B30B;
            margin: 25px 0 12px 0;
            text-transform: uppercase;
        }

        article h4 {
            font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
            font-size: 1.2em;
            color: #79B30B;
            margin: 20px 0 10px 0;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        article a {
            color: #326ea1;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: color 0.3s, border-color 0.3s;
        }

        article a:hover {
            color: #79B30B;
            border-bottom-color: #79B30B;
        }

        article ul, article ol {
            margin: 15px 0 15px 40px;
        }

        article ul li {
            list-style-type: square;
            margin-bottom: 8px;
        }

        article ol li {
            margin-bottom: 8px;
        }

        article blockquote {
            padding: 15px 20px;
            margin: 20px 0;
            border-left: 4px solid #79B30B;
            background: #f9fcf5;
            font-style: italic;
        }

        article img {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            padding: 5px;
            margin: 15px 0;
        }

        .transition-section {
            background: #f9fcf5;
            padding: 30px 40px;
            border-top: 3px solid #79B30B;
            border-bottom: 3px solid #79B30B;
        }

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

        {% if links %}
        .links-section {
            padding: 40px;
            background: #fff;
        }

        .links-section h2 {
            font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
            font-size: 2em;
            color: #79B30B;
            margin-bottom: 30px;
            text-transform: uppercase;
            text-align: center;
        }

        .links-section h3 {
            font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
            font-size: 1.4em;
            color: #333;
            margin: 25px 0 15px 0;
            text-transform: uppercase;
            border-bottom: 2px solid #79B30B;
            padding-bottom: 8px;
        }

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

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

        .links-section ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #79B30B;
            font-size: 1.2em;
        }

        .links-section ul li a {
            color: #326ea1;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }

        .links-section ul li a:hover {
            color: #79B30B;
        }
        {% endif %}

        footer {
            background: #333;
            color: #aaa;
            padding: 25px 40px;
            text-align: center;
            font-size: 0.9em;
        }

        footer a {
            color: #79B30B;
            text-decoration: none;
        }

        footer a:hover {
            color: #8fc515;
        }

        @media (max-width: 768px) {
            header {
                padding: 20px 25px;
            }

            h1 {
                font-size: 1.8em;
            }

            .description {
                font-size: 1em;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li a {
                border-left: none;
                border-bottom: 1px solid #444;
                padding: 15px 20px;
            }

            main {
                padding: 25px;
            }

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

            {% if links %}
            .links-section {
                padding: 25px;
            }

            .links-section ul {
                columns: 1;
            }
            {% endif %}

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

            footer {
                padding: 20px 25px;
            }
        }

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

            .description {
                font-size: 0.9em;
            }

            nav ul li a {
                font-size: 0.85em;
                padding: 12px 15px;
            }

            main {
                padding: 20px;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }
        }
    