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

        body {
            background-color: #1a1614;
            color: #cacaca;
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: linear-gradient(to bottom, #2a2420 0%, #1a1614 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ae9e78;
        }

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

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

        nav {
            background-color: #802d12;
            background-image: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 100%);
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

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

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

        nav a {
            color: #f3d59b;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ffffff;
        }

        main {
            flex: 1;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            width: 100%;
        }

        h1 {
            font-size: 48px;
            color: #eccc8f;
            text-transform: uppercase;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ae9e78;
            line-height: 1.2;
        }

        article {
            background-color: rgba(45, 40, 35, 0.5);
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 5px;
            border-left: 4px solid #ae9e78;
        }

        article h2 {
            font-size: 32px;
            color: #eccc8f;
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

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

        article h3 {
            font-size: 24px;
            color: #ae9e78;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 20px;
            color: #ae9e78;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            background-color: rgba(128, 45, 18, 0.3);
            padding: 25px;
            margin-bottom: 40px;
            border-radius: 5px;
            border-left: 4px solid #802d12;
        }

        .transition-section p {
            margin-bottom: 10px;
        }

        {% if links %}
        .links-section {
            background-color: rgba(45, 40, 35, 0.5);
            padding: 30px;
            border-radius: 5px;
            border-left: 4px solid #ae9e78;
            margin-bottom: 40px;
        }

        .links-section h2 {
            font-size: 32px;
            color: #eccc8f;
            margin-bottom: 25px;
            text-transform: uppercase;
            border-bottom: 2px solid #ae9e78;
            padding-bottom: 10px;
        }

        .links-section h3 {
            font-size: 22px;
            color: #ae9e78;
            margin-top: 25px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 30px;
            margin-bottom: 25px;
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #cacaca;
            text-decoration: none;
            padding-left: 15px;
            position: relative;
            display: inline-block;
            transition: color 0.3s;
        }

        .links-section a:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #ae9e78;
            font-size: 20px;
        }

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

        footer {
            background: linear-gradient(to top, #2a2420 0%, #1a1614 100%);
            padding: 30px 0;
            border-top: 3px solid #ae9e78;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: #ae9e78;
        }

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

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            nav ul {
                gap: 15px;
            }

            nav a {
                font-size: 12px;
            }

            article, .transition-section, .links-section {
                padding: 20px;
            }

            {% if links %}
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            {% endif %}

            .header-container {
                flex-direction: column;
                gap: 15px;
            }
        }

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

            body {
                font-size: 14px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            .links-section h3 {
                font-size: 18px;
            }
        }
    