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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #FF8C51 0%, #FD6D35 100%);
            min-height: 100vh;
        }

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

        header {
            background: linear-gradient(to right, #FA9C69, #F9C092);
            padding: 40px 20px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        h1 {
            color: #2c3e50;
            font-size: 2.5em;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        }

        article {
            background: #F9C092;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        article h2,
        article h3,
        article h4 {
            color: #2c3e50;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h2 {
            font-size: 2em;
            border-bottom: 3px solid #FD6D35;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5em;
        }

        article h4 {
            font-size: 1.2em;
        }

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

        article img {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin: 15px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        article a {
            color: #2c3e50;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        article a:hover {
            color: #FD6D35;
        }

        .transition-section {
            background: #FFC993;
            padding: 25px 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

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

        .links-section {
            background: #F9C092;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .links-section h2 {
            color: #2c3e50;
            font-size: 2em;
            margin-bottom: 20px;
            border-bottom: 3px solid #FD6D35;
            padding-bottom: 10px;
        }

        .links-section h3 {
            color: #2c3e50;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .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: #2c3e50;
            text-decoration: none;
            display: inline-block;
            padding: 5px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #FD6D35;
            border-bottom: 1px solid #FD6D35;
            padding-left: 5px;
        }

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

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

            .links-section {
                padding: 20px;
            }

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

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

            header {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.6em;
            }

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 1.4em;
            }

            article p {
                font-size: 0.95em;
            }
        }
    