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

        body {
            font-family: "Century Gothic", Arial, Helvetica, sans-serif;
            font-size: 13px;
            letter-spacing: 1px;
            color: #545927;
            background-color: #252628;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" fill="%23252628"><rect width="1200" height="800" fill="%23252628"/></svg>');
            background-repeat: no-repeat;
            background-attachment: scroll;
            background-position: top center;
            line-height: 125%;
            min-width: 320px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: #fff;
            min-height: 100vh;
            position: relative;
        }

        .header {
            background-image: linear-gradient(135deg, #7a9720, #53751f);
            height: 177px;
            position: relative;
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
        }

        .header-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin: 0;
        }

        .main-content {
            padding: 20px 30px;
        }

        h1 {
            color: #707B0E;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 3px;
            margin: 20px 0;
            text-align: center;
        }

        h2, h3, h4, h5, h6 {
            color: #9CAD0B;
            font-weight: bold;
            margin: 15px 0 10px 0;
        }

        h2 {
            font-size: 20px;
            letter-spacing: 2px;
        }

        h3 {
            font-size: 18px;
            letter-spacing: 1px;
            color: #949405;
        }

        h4 {
            font-size: 16px;
            color: #AEC00C;
        }

        article {
            margin-bottom: 30px;
        }

        article p {
            margin: 14px 0;
            line-height: 1.6;
        }

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

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

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-left: 4px solid #7a9720;
            border-radius: 5px;
        }

        .links-section {
            margin-top: 40px;
            padding: 30px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }

        .links-section h3 {
            color: #707B0E;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #7a9720;
        }

        .links-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
        }

        .links-section li {
            margin: 5px 0;
            padding: 8px 12px;
            background: white;
            border-radius: 5px;
            border-left: 3px solid #7a9720;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: #f0f8e8;
            transform: translateX(5px);
        }

        .links-section a {
            color: #545927;
            text-decoration: none;
            font-weight: normal;
            display: block;
        }

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

        .footer {
            margin-top: 50px;
            padding: 20px;
            background: #343a40;
            color: #848690;
            text-align: center;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0;
                min-width: 100%;
            }

            .header {
                height: 120px;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 15px 20px;
            }

            h1 {
                font-size: 20px;
                letter-spacing: 1px;
            }

            h2 {
                font-size: 18px;
            }

            h3 {
                font-size: 16px;
            }

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

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

            .transition-section {
                padding: 15px;
                margin: 20px 0;
            }
        }

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

            .header h1 {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 18px;
            }

            .links-section {
                padding: 15px 10px;
            }
        }
    