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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 1.7;
            color: #333;
            background: #f5f1e8;
        }

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

        header {
            background: linear-gradient(to bottom, #8b4513 0%, #654321 100%);
            padding: 30px 40px;
            border-bottom: 3px solid #d4a574;
        }

        header h1 {
            color: #fff;
            font-size: 2.5em;
            font-weight: normal;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .content-wrapper {
            padding: 50px 40px;
            background: #fff;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            color: #654321;
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: normal;
            border-bottom: 2px solid #d4a574;
            padding-bottom: 10px;
        }

        article h3 {
            color: #8b4513;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        article h4 {
            color: #654321;
            font-size: 1.2em;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: normal;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #444;
            font-size: 1.05em;
        }

        .transition-section {
            background: #faf8f3;
            padding: 35px;
            margin: 40px 0;
            border-left: 4px solid #8b4513;
            border-radius: 3px;
        }

        .transition-section p {
            margin-bottom: 15px;
            color: #555;
            font-size: 1.05em;
            line-height: 1.8;
        }

        .links-section {
            background: #fdfcfa;
            padding: 45px 40px;
            border-top: 3px solid #d4a574;
            margin-top: 40px;
        }

        .links-section h3 {
            color: #654321;
            font-size: 1.6em;
            margin-bottom: 20px;
            margin-top: 30px;
            font-weight: normal;
            padding-bottom: 8px;
            border-bottom: 1px solid #e0d5c0;
        }

        .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: 35px;
        }

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #8b4513;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 18px;
            font-size: 1.02em;
        }

        .links-section a:before {
            content: "›";
            position: absolute;
            left: 0;
            color: #d4a574;
            font-size: 1.3em;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #654321;
            padding-left: 22px;
        }

        .links-section a:hover:before {
            color: #8b4513;
            left: 4px;
        }

        footer {
            background: linear-gradient(to bottom, #654321 0%, #4a3219 100%);
            color: #d4a574;
            padding: 25px 40px;
            text-align: center;
            font-size: 0.9em;
            border-top: 3px solid #8b4513;
        }

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

            header h1 {
                font-size: 1.8em;
            }

            .content-wrapper {
                padding: 30px 25px;
            }

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article h4 {
                font-size: 1.1em;
            }

            article p {
                text-align: left;
                font-size: 1em;
            }

            .transition-section {
                padding: 25px;
                margin: 30px 0;
            }

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

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

            .links-section h3 {
                font-size: 1.4em;
                margin-top: 25px;
            }

            footer {
                padding: 20px 25px;
            }
        }

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

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section h3 {
                font-size: 1.3em;
            }
        }
    