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

        html, body {
            height: 100%;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }

        body {
            background: #fff;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .page-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        header {
            background: rgba(255, 255, 255, 0.93);
            padding: 2rem 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .logo-text {
            font-size: 2rem;
            font-weight: 300;
            color: #444;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav {
            border-top: 1px dotted #ccc;
            border-bottom: 1px dotted #ccc;
            padding: 0.8rem 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem 2rem;
        }

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #666;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            padding: 0.5rem 0.8rem;
            transition: all 0.3s ease;
            display: block;
        }

        nav ul li a:hover {
            color: #ce534c;
        }

        main {
            flex: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 5%;
            width: 100%;
        }

        h1 {
            font-size: 2.5rem;
            color: #222;
            font-weight: 300;
            margin-bottom: 2rem;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 1px;
        }

        article {
            background: rgba(0, 0, 0, 0.02);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }

        article h2 {
            color: #ce534c;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            font-weight: 400;
        }

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

        article h3 {
            color: #666;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            font-weight: 500;
        }

        article h4 {
            color: #444;
            font-size: 1.1rem;
            margin: 1.2rem 0 0.6rem;
            font-weight: 500;
        }

        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            color: #666;
        }

        article img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1.5rem auto;
        }

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

        article a {
            color: #ce534c;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #ed605b;
        }

        .transition-section {
            background: rgba(206, 83, 76, 0.04);
            padding: 2rem 2.5rem;
            margin-bottom: 3rem;
            border-left: 4px solid #ce534c;
            border-radius: 4px;
        }

        .transition-section p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        {% if links %}
        .links-section {
            background: rgba(0, 0, 0, 0.02);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 3rem;
        }

        .links-section h2 {
            color: #222;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 300;
        }

        .links-section h3 {
            color: #ce534c;
            font-size: 1.3rem;
            margin: 2rem 0 1rem;
            font-weight: 400;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(206, 83, 76, 0.2);
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem 2rem;
            margin-bottom: 1.5rem;
        }

        .links-section ul li {
            padding-left: 1.2rem;
            position: relative;
        }

        .links-section ul li:before {
            content: '›';
            position: absolute;
            left: 0;
            color: #ce534c;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.3rem 0;
        }

        .links-section ul li a:hover {
            color: #ce534c;
        }
        {% endif %}

        footer {
            background: rgba(0, 0, 0, 0.03);
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            margin-top: auto;
        }

        footer p {
            color: #888;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            header {
                padding: 1.5rem 4%;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            nav ul {
                gap: 0.3rem 1rem;
            }

            nav ul li a {
                font-size: 0.8rem;
                padding: 0.4rem 0.5rem;
            }

            main {
                padding: 2rem 4%;
            }

            h1 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            .transition-section {
                padding: 1.5rem;
            }

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

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
            {% endif %}
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article {
                padding: 1.2rem;
            }

            article h2 {
                font-size: 1.3rem;
            }
        }
    