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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .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: 28px;
            font-weight: 700;
            color: #e74c3c;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #e74c3c;
        }

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

        h1 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        article {
            background: #fff;
            padding: 40px;
            margin-bottom: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        article h2 {
            font-size: 32px;
            color: #1a1a1a;
            margin: 30px 0 20px;
            font-weight: 700;
            text-transform: uppercase;
        }

        article h3 {
            font-size: 24px;
            color: #2d2d2d;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        article h4 {
            font-size: 20px;
            color: #333;
            margin: 20px 0 12px;
            font-weight: 600;
        }

        article p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .transition-section {
            background: #f8f8f8;
            padding: 40px;
            margin-bottom: 50px;
            border-radius: 8px;
            border-left: 4px solid #e74c3c;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background: #fff;
            padding: 50px 40px;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .links-section h3 {
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 10px;
        }

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

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            display: block;
            padding: 12px 15px;
            background: #f8f8f8;
            border-radius: 5px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .links-section a:hover {
            background: #e74c3c;
            color: #fff;
            border-left-color: #c0392b;
            transform: translateX(5px);
        }
        {% endif %}

        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-content p {
            margin: 10px 0;
            font-size: 14px;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                justify-content: center;
                gap: 15px;
            }

            h1 {
                font-size: 32px;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

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

            .links-section {
                padding: 30px 20px;
            }
        }

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

            nav a {
                font-size: 12px;
            }

            article h2 {
                font-size: 22px;
            }
        }
    