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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

        header {
            background-color: #181919;
            border-bottom: 1px solid #4c4e4e;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #cbac8e;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #fff;
            border-bottom-color: #b53e3e;
        }

        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 3%;
        }

        h1 {
            font-size: 3rem;
            font-weight: 300;
            color: #202323;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 1rem;
        }

        h1:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100px;
            height: 5px;
            background-color: #b53e3e;
        }

        article {
            background: #fff;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        article h3 {
            font-size: 1.5rem;
            color: #4b4141;
            margin: 1.5rem 0 1rem;
            font-weight: 500;
        }

        article h4 {
            font-size: 1.25rem;
            color: #4b4141;
            margin: 1.25rem 0 0.75rem;
            font-weight: 500;
        }

        article p {
            color: #5d5d5d;
            margin-bottom: 1.25rem;
            line-height: 1.8;
            text-align: justify;
        }

        article ul, article ol {
            margin-left: 2rem;
            margin-bottom: 1.25rem;
            color: #5d5d5d;
        }

        article li {
            margin-bottom: 0.5rem;
        }

        .transition-section {
            background: #fff;
            padding: 2.5rem 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        {% if links %}
        .links-section {
            background: #202323;
            padding: 3rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .links-section h2 {
            font-size: 2rem;
            color: #cbac8e;
            margin-bottom: 2rem;
            font-weight: 300;
            text-transform: uppercase;
        }

        .links-section h3 {
            font-size: 1.25rem;
            color: #cbac8e;
            margin: 2rem 0 1rem;
            font-weight: 500;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .links-section h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #b53e3e;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 3rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            break-inside: avoid;
            margin-bottom: 0.75rem;
        }

        .links-section a {
            color: #9f9f9f;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            padding: 0.25rem 0;
        }

        .links-section a:hover {
            color: #cbac8e;
        }
        {% endif %}

        footer {
            background-color: #cbac8e;
            color: #4d4944;
            text-align: center;
            padding: 2rem 3%;
            margin-top: 3rem;
        }

        footer p {
            font-size: 0.85rem;
            border-top: 1px solid #4d4944;
            padding-top: 1rem;
            margin: 0;
        }

        @media (max-width: 968px) {
            h1 {
                font-size: 2.5rem;
            }

            article h2 {
                font-size: 1.75rem;
            }

            article h3 {
                font-size: 1.35rem;
            }

            nav ul {
                gap: 1rem;
            }

            nav a {
                font-size: 0.85rem;
            }

            article, .transition-section, .links-section {
                padding: 2rem;
            }

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

        @media (max-width: 650px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }

            h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article, .transition-section, .links-section {
                padding: 1.5rem;
            }

            main {
                padding: 2rem 4%;
            }
        }

        @media (max-width: 450px) {
            h1 {
                font-size: 1.75rem;
            }

            article h2 {
                font-size: 1.35rem;
            }

            article h3 {
                font-size: 1.15rem;
            }

            nav a {
                font-size: 0.8rem;
                padding: 0.35rem;
            }

            article, .transition-section, .links-section {
                padding: 1.25rem;
            }
        }
    