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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #f5f0e8 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23f5f0e8"/></svg>');
            color: #3a3a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
        }

        header {
            background: linear-gradient(to bottom, #8b7355 0%, #6d5a47 100%);
            padding: 40px 30px;
            text-align: center;
            border-bottom: 3px solid #4a3f35;
        }

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

        article {
            padding: 50px 40px;
            background: #ffffff;
        }

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

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

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

        article strong {
            color: #6d5a47;
            font-weight: bold;
        }

        article a {
            color: #8b7355;
            text-decoration: none;
            border-bottom: 1px solid #d4c4b0;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #6d5a47;
            border-bottom-color: #8b7355;
        }

        .transition-section {
            padding: 30px 40px;
            background: #faf8f4;
            border-top: 1px solid #e5ddd0;
            border-bottom: 1px solid #e5ddd0;
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 1.05em;
            color: #4a4a4a;
            text-align: justify;
        }

        .links-section {
            padding: 50px 40px;
            background: #ffffff;
        }

        .links-section h3 {
            color: #6d5a47;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: normal;
            padding-bottom: 8px;
            border-bottom: 2px solid #d4c4b0;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            position: relative;
            padding-left: 20px;
        }

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

        .links-section a {
            color: #5a4a3a;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #8b7355;
            padding-left: 5px;
        }

        footer {
            background: linear-gradient(to top, #8b7355 0%, #6d5a47 100%);
            padding: 20px 40px;
            text-align: center;
            border-top: 3px solid #4a3f35;
            color: #ffffff;
            font-size: 0.9em;
        }

        footer a {
            color: #f5e6d3;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #ffffff;
        }

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

            header {
                padding: 30px 20px;
            }

            article {
                padding: 30px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .transition-section {
                padding: 20px;
            }

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

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

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

            footer {
                padding: 15px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.4em;
                letter-spacing: 0.5px;
            }

            article p,
            .transition-section p {
                font-size: 1em;
                text-align: left;
            }

            article h2 {
                font-size: 1.3em;
            }
        }
    