
        @font-face {
            font-family: "CelticGaramond";
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: Arial, sans-serif;
            background: #f5f3f0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQIW2NkYGD4z8DAwMgABXAGNgGwSgwVAFbmAgXxvpkPAAAAAElFTkSuQmCC') repeat;
            color: #452202;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .top-bar {
            height: 54px;
            background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

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

        header {
            position: relative;
            padding: 20px 0;
        }

        .logo {
            font-family: Georgia, serif;
            font-size: 28px;
            color: #452202;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
        }

        h1 {
            font-family: Georgia, serif;
            font-size: 2.5em;
            color: #a5c62a;
            margin: 40px 0 30px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #a5c62a;
            text-align: center;
            letter-spacing: -1px;
        }

        article {
            background: #fff;
            padding: 40px;
            margin: 30px 0;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #e8e6e3;
        }

        article h2 {
            font-family: Georgia, serif;
            font-size: 1.8em;
            color: #a5c62a;
            margin: 30px 0 15px;
            font-weight: normal;
        }

        article h3 {
            font-family: Georgia, serif;
            font-size: 1.4em;
            color: #452202;
            margin: 25px 0 12px;
            font-weight: normal;
        }

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

        article p {
            margin: 15px 0;
            font-size: 14px;
            line-height: 1.8;
            color: #452202;
        }

        article a {
            color: #a5c62a;
            text-decoration: none;
            transition: color 0.3s;
        }

        article a:hover {
            color: #452202;
        }

        .transition-section {
            background: #fff;
            padding: 30px 40px;
            margin: 30px 0;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #e8e6e3;
        }

        .transition-section p {
            font-size: 14px;
            line-height: 1.8;
            color: #452202;
            margin: 15px 0;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 40px;
            margin: 30px 0 50px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #e8e6e3;
        }

        .links-section h3 {
            font-family: Georgia, serif;
            font-size: 1.6em;
            color: #a5c62a;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e8e6e3;
        }

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

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

        .links-section a {
            color: #452202;
            text-decoration: none;
            font-size: 14px;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.3s;
            position: relative;
            padding-left: 15px;
        }

        .links-section a:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #a5c62a;
            font-size: 18px;
            font-weight: bold;
        }

        .links-section a:hover {
            color: #a5c62a;
        }
        {% endif %}

        footer {
            background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
            color: #999;
            padding: 30px 0;
            margin-top: 60px;
            text-align: center;
            font-size: 12px;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
        }

        footer p {
            margin: 10px 0;
        }

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

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

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

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article p {
                font-size: 13px;
            }

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

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

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