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

        body {
            font-family: Georgia, 'Times New Roman', serif;
            background-color: #FFFFDD;
            color: #330000;
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #FFFEF5;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(51, 0, 0, 0.1);
        }

        h1 {
            font-size: 2.5em;
            color: #330000;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #DEB887;
            font-weight: normal;
            letter-spacing: 1px;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.1em;
            text-align: justify;
        }

        article h2 {
            font-size: 1.8em;
            color: #4d1a00;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        article h3 {
            font-size: 1.4em;
            color: #4d1a00;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: normal;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background-color: #FFF8DC;
            border-left: 4px solid #DEB887;
        }

        .transition-section p {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .links-section {
            margin-top: 40px;
            padding: 30px;
            background-color: #FFFEF5;
            border: 2px solid #DEB887;
            border-radius: 5px;
        }

        .links-section h3 {
            font-size: 1.5em;
            color: #4d1a00;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #F5DEB3;
            font-weight: normal;
        }

        .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;
        }

        .links-section a {
            color: #8B4513;
            text-decoration: none;
            font-size: 1.05em;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #A0522D;
            text-decoration: underline;
        }

        .links-section a::before {
            content: "→ ";
            margin-right: 5px;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 20px;
            }

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

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

            .links-section {
                padding: 20px;
            }

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

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

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

            .links-section a {
                font-size: 1em;
            }
        }
    