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

        body {
            font-family: Georgia, "Times New Roman", Times, serif;
            line-height: 1.6;
            background: linear-gradient(to bottom, #f5f0ea 0%, #e8e1d9 100%);
            color: #7e7b6a;
            font-size: 16px;
        }

        .container {
            max-width: 995px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        }

        header {
            background: linear-gradient(135deg, #6b5d4f 0%, #8b7b6b 100%);
            padding: 20px 40px;
            color: #e7e1da;
        }

        header h1 {
            font-size: 2em;
            font-weight: normal;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        nav {
            background: #5a4d3f;
            padding: 0;
            border-bottom: 3px solid #a89679;
        }

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

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 12px 18px;
            color: #e7e1da;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        main {
            padding: 40px;
            background: #fff;
        }

        article {
            margin-bottom: 40px;
            color: #7e7b6a;
            font-size: 14px;
            line-height: 1.8;
        }

        article h2 {
            font-size: 1.8em;
            color: #6b5d4f;
            margin-bottom: 20px;
            font-weight: normal;
            padding-bottom: 10px;
            border-bottom: 2px solid #a89679;
        }

        article h3 {
            font-size: 1.4em;
            color: #6b695a;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h4 {
            font-size: 1.2em;
            color: #6b695a;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: bold;
        }

        article p {
            margin-bottom: 15px;
            color: #7e7b6a;
        }

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

        article a:hover {
            text-decoration: none;
        }

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article li {
            margin-bottom: 8px;
        }

        .transition-section {
            margin: 40px 0;
            padding: 30px;
            background: #f9f7f4;
            border-left: 4px solid #a89679;
            color: #7e7b6a;
            font-size: 14px;
            line-height: 1.8;
        }

        .transition-section p {
            margin-bottom: 12px;
        }

        .links-section {
            background: #f3f0eb;
            padding: 40px;
            border-top: 3px solid #a89679;
            border-bottom: 3px solid #a89679;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #6b5d4f;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .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 ul li a {
            color: #504e44;
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            background: #fff;
            border-left: 3px solid #a89679;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .links-section ul li a:hover {
            background: #fff;
            border-left-color: #6b5d4f;
            color: #000;
            padding-left: 18px;
        }

        footer {
            background: #6b5d4f;
            color: #a7a08d;
            text-align: center;
            padding: 30px 20px;
            font-size: 12px;
        }

        footer a {
            color: #a7a08d;
            text-decoration: none;
            margin: 0 8px;
        }

        footer a:hover {
            color: #e7e1da;
        }

        .decorative-divider {
            text-align: center;
            margin: 30px 0;
        }

        .decorative-divider::after {
            content: "∼";
            font-size: 24px;
            color: #a89679;
        }

        @media (max-width: 768px) {
            header {
                padding: 20px 20px;
            }

            header h1 {
                font-size: 1.5em;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li a {
                padding: 12px 20px;
            }

            main {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

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

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

            .transition-section {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 1.3em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.2em;
            }

            nav ul li a {
                font-size: 12px;
            }
        }
    