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

        body {
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.6;
            color: #000;
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
        }

        .page-wrapper {
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: linear-gradient(135deg, #6e5a52 0%, #4e3b31 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-title {
            color: #d25110;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

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

        h1 {
            font-size: 34px;
            color: #d25110;
            margin-bottom: 25px;
            line-height: 1.3;
            padding-bottom: 15px;
            border-bottom: 3px solid #0e8a21;
        }

        article {
            background-color: #fff;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae4dd;
        }

        article p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #333;
            text-align: justify;
        }

        article h2 {
            font-size: 24px;
            color: #d25110;
            margin-top: 30px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        article h3 {
            font-size: 18px;
            color: #4e3b31;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 16px;
            color: #6e5a52;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .transition-section {
            background-color: #f8f8f8;
            padding: 25px 30px;
            margin-bottom: 40px;
            border-radius: 10px;
            border-left: 4px solid #0e8a21;
        }

        .transition-section p {
            font-size: 14px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 12px;
        }

        .links-section {
            background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
            padding: 40px 30px;
            border-radius: 10px;
            border: 1px solid #c0ae8d;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .links-section h3 {
            font-size: 20px;
            color: #d25110;
            margin-bottom: 15px;
            margin-top: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eae4dd;
        }

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

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin-bottom: 20px;
        }

        .links-section li {
            margin-bottom: 10px;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .links-section a {
            color: #4e3b31;
            text-decoration: none;
            display: inline-block;
            padding: 5px 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0e8a21;
            font-weight: bold;
        }

        .links-section a:hover {
            color: #d25110;
            padding-left: 20px;
        }

        .footer {
            background: linear-gradient(135deg, #4e3b31 0%, #2f211a 100%);
            color: #fff;
            padding: 30px 20px;
            margin-top: auto;
            border-top: 3px solid #d25110;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer p {
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 22px;
                padding: 10px;
            }

            h1 {
                font-size: 26px;
                margin-bottom: 20px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 16px;
            }

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

            .links-section ul {
                column-count: 1;
            }

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

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

        @media (max-width: 480px) {
            .site-title {
                font-size: 18px;
            }

            h1 {
                font-size: 22px;
            }

            article {
                padding: 15px;
            }

            article p {
                font-size: 13px;
            }

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