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

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

        #header {
            background-color: #fff;
            border-bottom: 3px solid #8b1a1a;
            padding: 30px 0;
            text-align: center;
        }

        #navigation {
            background-color: #2c2c2c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        #navigation nav {
            max-width: 1200px;
            margin: 0 auto;
        }

        #navigation ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0;
        }

        #navigation li {
            margin: 0;
        }

        #navigation a {
            display: block;
            padding: 18px 25px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        #navigation a:hover {
            background-color: #8b1a1a;
            color: #fff;
        }

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

        .site-content {
            background-color: #fff;
            padding: 50px 0;
            min-height: 60vh;
        }

        h1 {
            color: #8b1a1a;
            font-size: 2.5em;
            margin-bottom: 30px;
            font-weight: normal;
            border-bottom: 2px solid #dcdad6;
            padding-bottom: 15px;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            color: #5a5a5a;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        article h3 {
            color: #6a6a6a;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: normal;
        }

        article h4 {
            color: #7a7a7a;
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: normal;
        }

        article p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }

        .transition-section {
            background-color: #fafafa;
            padding: 40px;
            margin: 40px 0;
            border-left: 4px solid #8b1a1a;
            border-radius: 3px;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: #f9f9f7;
            padding: 50px 40px;
            margin-top: 50px;
            border-top: 3px solid #8b1a1a;
            border-bottom: 3px solid #8b1a1a;
        }

        .links-section h2 {
            color: #8b1a1a;
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .links-section h3 {
            color: #5a5a5a;
            font-size: 1.5em;
            margin-top: 35px;
            margin-bottom: 20px;
            font-weight: normal;
            border-bottom: 1px solid #dcdad6;
            padding-bottom: 10px;
        }

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

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

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #8b1a1a;
            font-weight: bold;
        }

        .links-section a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
            line-height: 1.6;
        }

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

        #footer {
            background-color: #2c2c2c;
            color: #999;
            padding: 40px 0 0 0;
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            padding-bottom: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: #fff;
            font-size: 1.2em;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #444;
        }

        .footer-column a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: #8b1a1a;
        }

        .site-info {
            background-color: #1a1a1a;
            color: #666;
            text-align: center;
            padding: 20px;
            font-size: 12px;
        }

        .site-info a {
            color: #888;
            text-decoration: none;
        }

        .site-info a:hover {
            color: #8b1a1a;
        }

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

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            #navigation ul {
                flex-direction: column;
            }

            #navigation a {
                padding: 15px 20px;
                border-bottom: 1px solid #444;
            }

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

            .footer-content {
                flex-direction: column;
            }

            .transition-section {
                padding: 25px;
                margin: 30px 0;
            }

            .links-section {
                padding: 30px 20px;
            }
        }

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

            article p, .transition-section p {
                font-size: 15px;
            }

            #navigation a {
                padding: 12px 15px;
                font-size: 14px;
            }
        }
    