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

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

        header {
            background-color: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #8e3769;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #6d2e52;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #d8b33e;
        }

        .hero-section {
            background: linear-gradient(135deg, #6d2e52 0%, #8e3769 100%);
            padding: 60px 20px;
            text-align: center;
            color: #fff;
        }

        h1 {
            font-size: 48px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

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

        article {
            background: #fff;
            padding: 60px 40px;
            margin: -30px auto 40px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            border-radius: 2px;
            position: relative;
        }

        article h2 {
            color: #8e3769;
            font-size: 32px;
            margin: 30px 0 15px;
            font-style: italic;
            font-weight: 400;
        }

        article h3 {
            color: #6d2e52;
            font-size: 24px;
            margin: 25px 0 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        article h4 {
            color: #8e3769;
            font-size: 20px;
            margin: 20px 0 10px;
        }

        article p {
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

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

        article li {
            font-size: 18px;
            margin-bottom: 10px;
        }

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

        .transition-section p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 50px 40px;
            margin: 0 auto 60px;
            max-width: 900px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            border-radius: 2px;
        }

        .links-section h3 {
            color: #6d2e52;
            font-size: 24px;
            margin: 30px 0 20px;
            text-transform: uppercase;
            font-weight: 600;
            border-bottom: 2px solid #d8b33e;
            padding-bottom: 10px;
        }

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

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

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

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

        .links-section a {
            color: #212121;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.4;
            transition: color 0.3s;
            display: inline;
            background-image: linear-gradient(#8e3769 0%, #8e3769 100%);
            background-repeat: no-repeat;
            background-position: center 100%;
            background-size: 0% 1px;
            transition: background-size 0.3s, color 0.3s;
        }

        .links-section a:hover {
            color: #8e3769;
            background-size: 100% 1px;
        }
        {% endif %}

        footer {
            background-color: #fff;
            padding: 40px 20px 20px;
            margin-top: 60px;
            border-top: 2px solid #d8b33e;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            color: #8e3769;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-nav {
            margin-top: 30px;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }

        .footer-nav a {
            color: #6d2e52;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: #d8b33e;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            h1 {
                font-size: 32px;
            }

            article {
                padding: 40px 25px;
                margin-top: -20px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

            article p, article li {
                font-size: 16px;
            }

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

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

            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }

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

        @media (max-width: 480px) {
            h1 {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .hero-section {
                padding: 40px 20px;
            }
        }
    