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

        body {
            font-family: 'Times New Roman', serif;
            background: linear-gradient(135deg, #FFB400 0%, #FF8000 100%);
            color: #333;
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }

        header {
            background: linear-gradient(to bottom, #800080, #6b006b);
            padding: 20px 10px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }

        header h1 {
            color: #FFFFFF;
            font-size: 2.5em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin: 0;
            padding: 10px 0;
        }

        .welcome-text {
            color: #FFFFFF;
            font-size: 1.1em;
            margin-top: 10px;
        }

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

        article {
            background: #FFFFFF;
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: 3px solid #FF8000;
        }

        article h2 {
            color: #800080;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.8em;
        }

        article h3 {
            color: #FF8000;
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.4em;
        }

        article p {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .transition-section {
            background: #FFFFCC;
            padding: 25px;
            margin: 20px 0;
            border-radius: 8px;
            border: 2px solid #FF8000;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        .transition-section p {
            color: #800080;
            font-size: 1.05em;
            line-height: 1.7;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(to bottom, #FFFFCC, #FFF8DC);
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            border: 3px solid #FF8000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .links-section h3 {
            color: #800080;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.6em;
            border-bottom: 2px solid #FF8000;
            padding-bottom: 10px;
        }

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

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

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

        .links-section a {
            color: #0000FF;
            text-decoration: none;
            font-size: 1em;
            transition: color 0.3s ease;
        }

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

        footer {
            background: linear-gradient(to top, #800080, #6b006b);
            color: #FFFFFF;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.2);
        }

        footer p {
            margin: 5px 0;
            font-size: 0.95em;
        }

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

            .welcome-text {
                font-size: 1em;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

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

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }

            article p {
                font-size: 1em;
            }
        }
    