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

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

        header {
            background: linear-gradient(to bottom, #cd290d 0%, #b5240c 100%);
            border-bottom: 3px solid #cd290d;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

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

        nav {
            background-color: #EBBEB1;
            border-top: 1px solid #cd290d;
            border-bottom: 1px solid #cd290d;
            padding: 15px 0;
        }

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

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

        .nav-menu li {
            display: inline-block;
        }

        .nav-menu a {
            text-decoration: none;
            color: #cd290d;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #8b1c09;
        }

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

        h1 {
            color: #cd290d;
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 30px;
            font-weight: normal;
            letter-spacing: 1px;
        }

        article {
            background-color: #FDF7F0;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #C8EB81;
        }

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

        article h3 {
            color: #8b1c09;
            font-size: 1.4em;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: normal;
        }

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

        .transition-section {
            background-color: #FDF7F0;
            padding: 30px 40px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .transition-section p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background-color: #FDF7F0;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #cd290d;
            margin-bottom: 30px;
        }

        .links-section h2 {
            color: #cd290d;
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .links-section h3 {
            color: #8b1c09;
            font-size: 1.3em;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: normal;
        }

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

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

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

        .links-section a {
            color: #cd290d;
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.8;
        }

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

        footer {
            background-color: #EBBEB1;
            border-top: 2px solid #cd290d;
            padding: 20px 0;
            margin-top: 50px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            color: #666;
            font-size: 0.9em;
        }

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

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .nav-menu {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }

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

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

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

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

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.3em;
            }

            .nav-menu a {
                font-size: 13px;
            }
        }
    