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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        header {
            background: #000;
            color: #fff;
            padding: 15px 0;
            border-bottom: 3px solid #e25b32;
        }

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

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

        nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

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

        nav a:hover {
            color: #e25b32;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 42px;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 30px;
            color: #000;
            padding-bottom: 20px;
            border-bottom: 2px solid #e5e5e5;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 32px;
            font-weight: 400;
            margin: 30px 0 20px;
            color: #000;
        }

        article h3 {
            font-size: 24px;
            font-weight: 400;
            margin: 25px 0 15px;
            color: #000;
        }

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

        article p {
            margin: 0 0 20px;
            line-height: 1.8;
            color: #666;
        }

        article a {
            color: #e25b32;
            text-decoration: none;
        }

        article a:hover {
            color: #363636;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px 0;
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
        }

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

        {% if links %}
        .links-section {
            background: #f9f9f9;
            padding: 40px 30px;
            margin: 40px -20px 0;
            border-top: 3px solid #e25b32;
        }

        .links-section h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 30px 0 20px;
            color: #000;
            text-transform: uppercase;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            line-height: 1.5;
        }

        .links-section a {
            color: #363636;
            text-decoration: none;
            font-size: 15px;
            display: inline-block;
            padding: 5px 0;
            transition: color 0.2s;
        }

        .links-section a:hover {
            color: #e25b32;
        }

        .links-section a::before {
            content: "→ ";
            color: #e25b32;
            margin-right: 5px;
        }
        {% endif %}

        footer {
            background: #000;
            color: #999;
            padding: 30px 0;
            margin-top: 60px;
            border-top: 2px solid #e25b32;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            nav {
                margin-top: 15px;
                gap: 15px;
            }

            h1 {
                font-size: 32px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

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

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

        @media (max-width: 480px) {
            .container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 26px;
            }

            nav {
                width: 100%;
            }

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