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

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #262626;
            background-color: #ffffff;
        }

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

        header {
            background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
            border-bottom: 3px solid #ff9900;
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #800000;
            text-decoration: none;
        }

        .quote-section {
            background: linear-gradient(to right, #ff9900, #ffb347);
            color: white;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 5px;
            font-style: italic;
            position: relative;
        }

        .quote-section::before {
            content: '"';
            font-size: 60px;
            position: absolute;
            left: 10px;
            top: -10px;
            opacity: 0.3;
        }

        .quote-text {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .quote-author {
            font-weight: bold;
            font-style: normal;
            text-align: right;
        }

        nav {
            background: linear-gradient(to bottom, #92A4C8, #7a8fb5);
            padding: 12px 0;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

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

        nav ul li {
            display: inline;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            display: inline-block;
            font-size: 14px;
            font-weight: bold;
            transition: background 0.3s;
        }

        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        h1 {
            font-size: 32px;
            color: #800000;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff9900;
        }

        article {
            background: #ffffff;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        article h2 {
            color: #800000;
            font-size: 24px;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #92A4C8;
            font-size: 20px;
            margin-top: 20px;
            margin-bottom: 12px;
        }

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

        .transition-section {
            background: #fff0cf;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid #ff9900;
            border-radius: 3px;
        }

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

        {% if links %}
        .links-section {
            background: linear-gradient(to bottom, #f9f9f9, #ffffff);
            padding: 30px 25px;
            margin-bottom: 30px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
        }

        .links-section h3 {
            color: #800000;
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff9900;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px 20px;
            margin-bottom: 30px;
        }

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            position: relative;
            padding-left: 20px;
        }

        .links-section li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: #ff9900;
            font-size: 10px;
        }

        .links-section a {
            color: #800000;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

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

        footer {
            background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
            padding: 25px 20px;
            margin-top: 40px;
            border-top: 3px solid #ff9900;
        }

        .footer-nav {
            text-align: center;
            margin-bottom: 15px;
        }

        .footer-nav a {
            color: #262626;
            text-decoration: none;
            font-size: 12px;
            padding: 0 8px;
            border-right: 1px solid #999;
        }

        .footer-nav a:last-child {
            border-right: none;
        }

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

        .footer-copyright {
            text-align: center;
            font-size: 11px;
            color: #666;
        }

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

            .header-content {
                justify-content: center;
                text-align: center;
            }

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

            nav ul li {
                display: block;
                width: 100%;
                text-align: center;
            }

            article {
                padding: 20px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
            }

            .footer-nav {
                line-height: 2;
            }

            .footer-nav a {
                display: inline-block;
                border-right: none;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }

            h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }
        }
    