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

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

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

        header {
            background: linear-gradient(135deg, #FF6600 0%, #FF8833 100%);
            padding: 30px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        h1 {
            color: #fff;
            text-align: center;
            font-size: 2.5em;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            padding: 0 20px;
        }

        article {
            background: #fff;
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #FF6600;
        }

        article h2 {
            color: #FF6600;
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: 400;
        }

        article h3 {
            color: #FF8833;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 400;
        }

        article h4 {
            color: #666;
            font-size: 1.2em;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.05em;
        }

        .transition-section {
            background: #fff;
            padding: 35px 40px;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            border-top: 3px solid #FF6600;
        }

        .transition-section p {
            color: #555;
            font-size: 1.05em;
            margin-bottom: 15px;
        }

        .links-section {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .links-section h2 {
            color: #FF6600;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 400;
        }

        .links-section h3 {
            color: #FF6600;
            font-size: 1.4em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 500;
            padding-bottom: 10px;
            border-bottom: 2px solid #fffbcb;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            margin-bottom: 25px;
        }

        .links-section li {
            padding: 8px 0;
        }

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

        .links-section a:hover {
            color: #FF8833;
            transform: translateX(5px);
        }

        .links-section a::before {
            content: "→";
            margin-right: 8px;
            transition: margin-right 0.3s ease;
        }

        .links-section a:hover::before {
            margin-right: 12px;
        }

        footer {
            background: linear-gradient(135deg, #FF6600 0%, #FF8833 100%);
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        }

        footer p {
            font-size: 0.95em;
            opacity: 0.9;
        }

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

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

            .transition-section {
                padding: 25px;
            }

            .links-section {
                padding: 25px;
            }

            .links-section h2 {
                font-size: 1.6em;
            }

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

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

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

            h1 {
                font-size: 1.5em;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

            .links-section {
                padding: 20px;
            }

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