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

        body {
            font-family: Helvetica, Arial, sans-serif;
            color: #333;
            background: #fff;
            line-height: 1.6;
            font-size: 16px;
        }

        header {
            background: #fff;
            padding: 30px 0 20px;
            border-bottom: 2px solid #f09;
        }

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

        .site-logo {
            font-size: 2em;
            color: #f00;
            font-weight: normal;
            text-decoration: none;
            display: inline-block;
        }

        h1 {
            font-size: 1.8em;
            color: #f00;
            border-bottom: 2px solid #f09;
            padding-bottom: 8px;
            margin: 40px 0 30px;
            font-weight: normal;
        }

        article {
            background: linear-gradient(to bottom, #f7f7f7 0%, #fff 100px);
            padding: 30px 0;
            margin-bottom: 30px;
        }

        article p {
            margin-bottom: 1.2em;
            line-height: 1.6;
        }

        article h2 {
            color: #f00;
            font-weight: normal;
            margin: 25px 0 10px;
            font-size: 1.3em;
        }

        article h3 {
            color: #f00;
            font-weight: normal;
            margin: 20px 0 8px;
            font-size: 1.1em;
        }

        article a {
            color: #f00;
            text-decoration: none;
        }

        article a:hover {
            background: #f09;
            color: #fff;
            padding: 0 2px;
        }

        .transition-section {
            background: #f7f7f7;
            padding: 30px 0;
            border-top: 1px dashed #d9d9d9;
            border-bottom: 1px dashed #d9d9d9;
            margin-bottom: 30px;
        }

        .transition-section p {
            margin-bottom: 1em;
            line-height: 1.6;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(to bottom, #fff 0%, #f7f7f7 50px);
            padding: 30px 0 50px;
        }

        .links-section h3 {
            color: #f00;
            font-size: 1.2em;
            font-weight: normal;
            margin-bottom: 15px;
            margin-top: 30px;
        }

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

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

        .links-section li {
            margin-bottom: 8px;
            break-inside: avoid;
            padding-left: 15px;
            position: relative;
        }

        .links-section li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: #f09;
            border-radius: 50%;
        }

        .links-section a {
            color: #333;
            text-decoration: none;
            display: inline-block;
            transition: color 0.2s;
        }

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

        footer {
            background: linear-gradient(to bottom, #fff 0%, #f7f7f7 35px);
            padding: 35px 0 30px;
            margin-top: 50px;
            border-top: 5px solid #f7f7f7;
            font-size: 0.9em;
            color: #666;
        }

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

            article h2 {
                font-size: 1.2em;
            }

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

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 20px 0 15px;
            }

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

            article {
                padding: 20px 0;
            }

            .site-logo {
                font-size: 1.5em;
            }
        }
    