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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .content-wrapper {
            padding: 40px;
        }

        h1 {
            text-align: center;
            color: #667eea;
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        article {
            text-align: center;
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

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

        article h2 {
            font-size: 1.8rem;
        }

        article h3 {
            font-size: 1.5rem;
        }

        .transition-section {
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            background: #f8f9ff;
            border-radius: 8px;
        }

        .transition-section p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .links-section {
            margin-top: 40px;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9ff 0%, #e9ecff 100%);
            border-top: 4px solid #667eea;
        }

        .links-section h3 {
            color: #667eea;
            font-size: 1.4rem;
            margin-bottom: 20px;
            margin-top: 30px;
        }

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

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #764ba2;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 18px;
        }

        .links-section a:before {
            content: '→';
            position: absolute;
            left: 0;
            transition: transform 0.3s ease;
        }

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

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

        @media (max-width: 768px) {
            .content-wrapper {
                padding: 30px 20px;
            }

            h1 {
                font-size: 2rem;
            }

            article p {
                font-size: 1rem;
            }

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

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

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

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

            .content-wrapper {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }

            article h2 {
                font-size: 1.5rem;
            }

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

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