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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f5f0;
        }

        h1 {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            margin: 0;
        }

        article {
            max-width: 900px;
            margin: 3rem auto;
            padding: 2.5rem;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-radius: 8px;
        }

        article h2 {
            color: #8b4513;
            font-size: 1.8rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d2b48c;
        }

        article h2:first-child {
            margin-top: 0;
        }

        article h3 {
            color: #a0522d;
            font-size: 1.4rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        article p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            text-align: justify;
        }

        article strong {
            color: #8b4513;
            font-weight: 600;
        }

        .transition-section {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 2.5rem;
        }

        .transition-section p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 1rem;
        }

        {% if links %}
        .links-section {
            max-width: 900px;
            margin: 3rem auto;
            padding: 2.5rem;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-radius: 8px;
        }

        .links-section h3 {
            color: #8b4513;
            font-size: 1.6rem;
            margin-top: 2rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #d2b48c;
        }

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

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .links-section li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .links-section a {
            color: #a0522d;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 1.2rem;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #d2b48c;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: #8b4513;
        }

        .links-section a:hover:before {
            transform: translateX(3px);
        }
        {% endif %}

        footer {
            background: #8b4513;
            color: #f5f5f0;
            text-align: center;
            padding: 1.5rem;
            margin-top: 4rem;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                padding: 2rem 1.5rem;
            }

            article {
                margin: 2rem 1rem;
                padding: 1.8rem;
                border-radius: 6px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            article p {
                font-size: 1rem;
                text-align: left;
            }

            .transition-section {
                padding: 0 1.5rem;
                margin: 1.5rem auto;
            }

            {% if links %}
            .links-section {
                margin: 2rem 1rem;
                padding: 1.8rem;
                border-radius: 6px;
            }

            .links-section h3 {
                font-size: 1.4rem;
            }

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

            .links-section a {
                font-size: 1rem;
            }
            {% endif %}
        }

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

            article {
                margin: 1.5rem 0.5rem;
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.3rem;
            }

            {% if links %}
            .links-section {
                margin: 1.5rem 0.5rem;
                padding: 1.5rem;
            }
            {% endif %}
        }
    