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

        body {
            font-family: Arial, sans-serif;
            font-size: 0.9em;
            line-height: 1.4;
            color: #372716;
            background-color: #232911;
        }

        .site-wrap {
            max-width: 1230px;
            margin: 0 auto;
            padding: 0 1em;
            background-color: #fff;
        }

        header {
            background-color: #e3e0d3;
            padding: 2em 1em 1em;
            text-align: center;
        }

        .logo {
            font-family: Questrial, Arial, sans-serif;
            font-size: 2em;
            color: #372716;
            margin-bottom: 1em;
        }

        nav {
            background-color: #e3e0d3;
            border-bottom: 2px solid #dbdbd4;
            padding: 0 1em;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5em;
        }

        nav li {
            display: inline-block;
        }

        nav a {
            display: block;
            padding: 0.75em 1em;
            font-family: Questrial, Arial, sans-serif;
            font-size: 1.2em;
            color: #372716;
            text-decoration: none;
            transition: all 0.3s;
        }

        nav a:hover {
            color: #2a3551;
            background-color: rgba(255, 255, 255, 0.3);
        }

        main {
            background-color: #fff;
            padding: 2em 1em;
            min-height: 400px;
        }

        h1 {
            font-family: Questrial, Arial, sans-serif;
            font-size: 1.8em;
            color: #372716;
            margin-bottom: 1em;
            border-bottom: 3px solid #dbdbd4;
            padding-bottom: 0.5em;
        }

        article {
            margin-bottom: 2em;
        }

        article p {
            margin-bottom: 1.4em;
        }

        article h2 {
            font-family: Questrial, Arial, sans-serif;
            font-size: 1.3em;
            color: #333f67;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        article h3 {
            font-family: Questrial, Arial, sans-serif;
            font-size: 1.2em;
            color: #324525;
            margin-top: 1.4em;
            margin-bottom: 0.5em;
        }

        .transition-section {
            margin: 2em 0;
            padding: 1.5em;
            background-color: #f4f4eb;
            border-radius: 8px;
        }

        .transition-section p {
            margin-bottom: 1em;
        }

        .links-section {
            background-color: #f4f4eb;
            padding: 2em 1em;
            border-radius: 8px;
            margin-top: 2em;
        }

        .links-section h3 {
            font-family: Questrial, Arial, sans-serif;
            font-size: 1.3em;
            color: #333f67;
            margin-bottom: 0.75em;
            padding-bottom: 0.5em;
            border-bottom: 2px solid #dbdbd4;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 2em;
            margin-bottom: 2em;
        }

        .links-section li {
            margin-bottom: 0.5em;
            break-inside: avoid;
        }

        .links-section a {
            color: #54602e;
            text-decoration: underline;
            transition: color 0.3s;
        }

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

        footer {
            background: linear-gradient(to bottom, #535c34, #232911);
            color: #fff;
            padding: 2em 1em;
            text-align: center;
        }

        footer p {
            margin-bottom: 0.5em;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                align-items: stretch;
            }

            nav a {
                text-align: center;
            }

            .links-section ul {
                columns: 1;
            }

            h1 {
                font-size: 1.5em;
            }

            article h2 {
                font-size: 1.2em;
            }

            article h3 {
                font-size: 1.1em;
            }
        }

        @media (max-width: 600px) {
            body {
                font-size: 0.85em;
            }

            .site-wrap {
                padding: 0 0.5em;
            }

            main {
                padding: 1em 0.5em;
            }

            .links-section {
                padding: 1em 0.5em;
            }
        }
    