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

        body {
            font-family: Verdana, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background: #d52d10 url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IiNkNTJkMTAiLz48L3N2Zz4=) repeat-x top left;
            margin: 0;
            padding: 0;
        }

        .wrapper {
            max-width: 920px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 2px 0 8px rgba(0,0,0,0.15);
        }

        header {
            background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
            padding: 20px 30px;
            border-bottom: 3px solid #d52d10;
        }

        header h1 {
            color: #d52d10;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 32px;
            font-weight: bold;
            margin: 0;
            text-transform: capitalize;
        }

        .container {
            padding: 30px;
            background: #fff;
        }

        article {
            margin-bottom: 40px;
        }

        article h2, article h3, article h4 {
            color: #d52d10;
            font-family: Arial, Helvetica, sans-serif;
            margin: 20px 0 15px 0;
            font-weight: bold;
        }

        article h2 {
            font-size: 24px;
            border-bottom: 2px solid #7a7a7a;
            padding-bottom: 5px;
        }

        article h3 {
            font-size: 18px;
        }

        article h4 {
            font-size: 16px;
        }

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

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

        article li {
            margin-bottom: 8px;
        }

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

        article a:hover {
            text-decoration: underline;
        }

        .transition-section {
            background: #f7f7f7;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #d52d10;
        }

        .transition-section p {
            text-align: justify;
            margin-bottom: 15px;
            color: #575757;
        }

        {% if links %}
        .links-section {
            background: #f9f9f9;
            padding: 30px;
            margin-top: 30px;
            border-top: 3px solid #d52d10;
        }

        .links-section h3 {
            color: #d52d10;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

        .links-section li {
            margin-bottom: 10px;
            padding-left: 18px;
            background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjQiIGN5PSI0IiByPSI0IiBmaWxsPSIjZDUyZDEwIi8+PC9zdmc+) no-repeat left 7px;
            break-inside: avoid;
        }

        .links-section a {
            color: #d52d10;
            text-decoration: none;
            font-size: 13px;
        }

        .links-section a:hover {
            color: #a32208;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background: linear-gradient(to top, #2a2a2a 0%, #3d3d3d 100%);
            color: #fff;
            padding: 20px 30px;
            font-size: 12px;
            text-align: left;
            border-top: 3px solid #d52d10;
        }

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

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .wrapper {
                margin: 0;
            }

            header {
                padding: 15px 20px;
            }

            header h1 {
                font-size: 24px;
            }

            .container {
                padding: 20px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

            .transition-section {
                padding: 15px;
            }

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

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

            footer {
                padding: 15px 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 13px;
            }

            header h1 {
                font-size: 20px;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 15px;
            }

            article h4 {
                font-size: 14px;
            }
        }
    