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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #444;
            background: #eee;
        }

        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        header {
            background: #fff;
            border-bottom: 3px solid #3E6617;
            padding: 20px 0;
        }

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

        .logo-section {
            flex: 1;
            min-width: 250px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3E6617;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }

        .tagline {
            color: #777;
            font-size: 0.9rem;
        }

        nav {
            flex: 2;
            display: flex;
            justify-content: flex-end;
        }

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

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            padding: 12px 18px;
            color: #333;
            text-decoration: none;
            background: rgba(0, 40, 0, 0.1);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background: rgba(40, 40, 40, 0.2);
            color: #3E6617;
        }

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

        h1 {
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #3E6617;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #333;
            font-size: 2rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            color: #444;
            font-size: 1.5rem;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            color: #555;
            font-size: 1.25rem;
            margin-top: 20px;
            margin-bottom: 10px;
        }

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

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

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

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

        article li {
            margin: 8px 0;
        }

        .transition-section {
            background: #f9f9f9;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #3E6617;
            border-radius: 4px;
        }

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

        {% if links %}
        .links-section {
            background: #f5f5f5;
            padding: 40px 30px;
            margin: 40px 0;
            border-radius: 8px;
            border-top: 3px solid #3E6617;
        }

        .links-section h2 {
            color: #333;
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .links-section h3 {
            color: #3E6617;
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }

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

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

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

        .links-section ul li a {
            color: #3E6617;
            text-decoration: none;
            padding: 8px 12px;
            display: block;
            border-left: 3px solid #3E6617;
            background: #fff;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .links-section ul li a:hover {
            background: #3E6617;
            color: #fff;
            padding-left: 18px;
        }
        {% endif %}

        footer {
            background: #202020;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

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

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #f2f2f2;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: disc;
            margin-left: 20px;
        }

        .footer-section ul li {
            margin: 8px 0;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #404040;
            padding-top: 20px;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
        }

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

            .logo-section {
                margin-bottom: 15px;
            }

            nav {
                width: 100%;
                justify-content: center;
            }

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

            nav ul li a {
                padding: 10px 14px;
                font-size: 0.9rem;
            }

            h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.6rem;
            }

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

        @media (max-width: 480px) {
            .main-content {
                padding: 30px 15px;
            }

            h1 {
                font-size: 1.6rem;
            }

            article h2 {
                font-size: 1.4rem;
            }

            nav ul li a {
                padding: 8px 12px;
                font-size: 0.85rem;
            }

            .transition-section, .links-section {
                padding: 20px 15px;
            }
        }
    