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

        body {
            font-family: Arial, sans-serif;
            background-color: #FFFFCC;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }

        h1 {
            font-family: "Monotype Corsiva", cursive;
            font-weight: bold;
            font-size: 2.5rem;
            color: #FF0000;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        article {
            max-width: 800px;
            margin: 0 auto 40px;
            background: rgba(255,255,255,0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
        }

        article h2, article h3, article h4 {
            color: #FF0000;
            margin: 25px 0 15px;
        }

        .transition-section {
            max-width: 800px;
            margin: 0 auto 40px;
            background: rgba(255,255,255,0.6);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }

        .transition-section p {
            margin-bottom: 15px;
            text-align: center;
            font-size: 1.1rem;
        }

        .links-section {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255,255,255,0.9);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .links-section h3 {
            color: #FF0000;
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF0000;
        }

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

        .links-section li {
            padding: 12px 0;
            border-bottom: 1px dotted #ccc;
        }

        .links-section a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .links-section a:visited {
            color: #666;
        }

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

            h1 {
                font-size: 2rem;
                margin-bottom: 25px;
            }

            article, .transition-section, .links-section {
                padding: 20px;
                margin-bottom: 25px;
            }

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

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

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

            h1 {
                font-size: 1.8rem;
            }

            article, .transition-section, .links-section {
                padding: 15px;
                margin-bottom: 20px;
            }
        }
    