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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #443922;
            background: linear-gradient(135deg, #f5f5dc 0%, #fff8dc 100%);
            min-height: 100vh;
        }

        header {
            background: linear-gradient(to bottom, #443922 0%, #5a4a2e 100%);
            color: #bdb08c;
            padding: 2rem 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border-bottom: 3px solid #82231e;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .logo-section {
            text-align: center;
        }

        .logo-section img {
            border: 2px solid #bdb08c;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            max-width: 100px;
            height: auto;
        }

        .logo-section a {
            color: #bdb08c;
            text-decoration: none;
            display: block;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        .logo-section a:hover {
            color: #fff;
        }

        h1 {
            font-size: 2.5rem;
            color: #bdb08c;
            text-align: center;
            margin: 2rem 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            font-weight: normal;
            letter-spacing: 1px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }

        article {
            background: #fff;
            padding: 2.5rem;
            margin: 2rem auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(68, 57, 34, 0.15);
            border-left: 5px solid #82231e;
        }

        article h2 {
            color: #443922;
            margin: 2rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #bdb08c;
            font-size: 1.8rem;
        }

        article h3 {
            color: #5a4a2e;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }

        article p {
            margin: 1rem 0;
            text-align: justify;
        }

        article ul, article ol {
            margin: 1rem 0 1rem 2rem;
        }

        article li {
            margin: 0.5rem 0;
        }

        article a {
            color: #82231e;
            text-decoration: none;
            border-bottom: 1px dotted #82231e;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #a02a24;
            border-bottom-style: solid;
        }

        .transition-section {
            background: #f9f6f0;
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 8px;
            border: 1px solid #bdb08c;
            box-shadow: 0 2px 10px rgba(68, 57, 34, 0.1);
        }

        .links-section {
            background: #fff;
            padding: 2.5rem;
            margin: 2rem auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(68, 57, 34, 0.15);
            border-top: 4px solid #443922;
        }

        .links-section h2, .links-section h3 {
            color: #443922;
            margin: 2rem 0 1rem 0;
        }

        .links-section h3 {
            font-size: 1.3rem;
            padding-left: 0.5rem;
            border-left: 4px solid #82231e;
            margin-top: 2.5rem;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 2rem;
            margin: 1.5rem 0;
        }

        .links-section li {
            margin: 0.75rem 0;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .links-section a {
            color: #443922;
            text-decoration: none;
            display: inline-block;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 1.2rem;
        }

        .links-section a:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #82231e;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: #82231e;
            padding-left: 1.5rem;
        }

        .links-section a:hover:before {
            transform: translateX(3px);
        }

        footer {
            background: linear-gradient(to top, #443922 0%, #5a4a2e 100%);
            color: #bdb08c;
            padding: 2rem 1rem;
            margin-top: 3rem;
            text-align: center;
            border-top: 3px solid #82231e;
        }

        footer a {
            color: #bdb08c;
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

        hr {
            border: none;
            border-top: 2px solid #bdb08c;
            margin: 2rem 0;
            opacity: 0.5;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

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

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .links-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
                margin: 1rem 0.5rem;
            }

            article {
                padding: 1rem;
            }

            article h2 {
                font-size: 1.3rem;
            }

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

        strong, b {
            color: #5a4a2e;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
        }

        table {
            width: 100%;
            margin: 1.5rem 0;
            border-collapse: collapse;
        }

        table td {
            padding: 1rem;
            vertical-align: top;
        }
    