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

        html {
            font-size: 100%;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            font-family: Arial, Helvetica, "Helvetica Neue", Geneva, sans-serif;
            line-height: 1.6;
            color: #464646;
            background: #fff;
            margin: 0;
            padding: 0;
        }

        header {
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
            border-bottom: 3px solid #c5b788;
            padding: 1.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #314956;
            text-decoration: none;
            display: inline-block;
        }

        nav {
            margin-top: 1rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        nav a {
            color: #314956;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #75a2bb;
            text-decoration: underline;
        }

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

        h1 {
            color: #314956;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c5b788;
            font-weight: bold;
        }

        article {
            background: #fff;
            margin-bottom: 2rem;
        }

        article h2 {
            color: #314956;
            font-size: 1.6rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        article h3 {
            color: #314956;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-weight: bold;
        }

        article h4 {
            color: #314956;
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.6rem;
            font-weight: bold;
        }

        article p {
            color: #464646;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        article ul, article ol {
            margin-left: 2rem;
            margin-bottom: 1.2rem;
        }

        article li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        article a {
            color: #314956;
            text-decoration: underline;
        }

        article a:hover {
            color: #75a2bb;
        }

        .transition-section {
            background: #f9f7f0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 4px solid #c5b788;
            border-radius: 4px;
        }

        .transition-section p {
            color: #464646;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        {% if links %}
        .links-section {
            background: #efe9d0;
            padding: 2rem;
            margin-top: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .links-section h3 {
            color: #314956;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0.8rem 2rem;
            margin-left: 0;
        }

        .links-section li {
            margin-bottom: 0;
        }

        .links-section a {
            color: #314956;
            text-decoration: none;
            display: inline-block;
            padding: 0.4rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #75a2bb;
            border-bottom-color: #75a2bb;
            padding-left: 0.5rem;
        }
        {% endif %}

        footer {
            background: linear-gradient(to bottom, #4a5d68 0%, #314956 100%);
            color: #fff;
            padding: 2rem 0;
            margin-top: 3rem;
            text-align: center;
        }

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

        footer p {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        footer a:hover {
            border-bottom-color: #fff;
        }

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

            article h2 {
                font-size: 1.4rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            nav ul {
                flex-direction: column;
                gap: 0.8rem;
            }

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

            .container {
                padding: 1.5rem 15px;
            }
        }

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

            .logo {
                font-size: 1.4rem;
            }

            article p {
                font-size: 0.95rem;
            }
        }
    