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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

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

        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 60px 20px 40px;
            text-align: center;
            position: relative;
        }

        header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        hr {
            border: none;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, #e94560 50%, transparent 100%);
            margin: 30px auto;
            max-width: 200px;
        }

        article {
            background: #fff;
            padding: 60px 20px;
            margin: 40px auto;
            max-width: 1200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        article h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 40px 0 20px;
            font-weight: 700;
        }

        article h3 {
            font-size: 1.5rem;
            color: #1a1a2e;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        article h4 {
            font-size: 1.2rem;
            color: #16213e;
            margin: 25px 0 12px;
            font-weight: 600;
        }

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

        .transition-section {
            background: #fff;
            padding: 50px 20px;
            margin: 40px auto;
            max-width: 1200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .transition-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }

        .links-section {
            background: #fff;
            padding: 60px 20px;
            margin: 40px auto;
            max-width: 1200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .links-section h3 {
            font-size: 1.8rem;
            color: #16213e;
            margin-bottom: 25px;
            font-weight: 700;
            padding-bottom: 15px;
            border-bottom: 3px solid #e94560;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin-bottom: 40px;
        }

        .links-section li {
            margin-bottom: 15px;
            break-inside: avoid;
            page-break-inside: avoid;
        }

        .links-section a {
            color: #16213e;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        .links-section a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #e94560;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .links-section a:hover {
            color: #e94560;
            padding-left: 25px;
        }

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

        footer {
            background: #1a1a2e;
            color: #fff;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }

        footer p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

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

            article {
                padding: 40px 20px;
                margin: 20px 10px;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article h4 {
                font-size: 1.1rem;
            }

            article p {
                font-size: 1rem;
            }

            .transition-section {
                padding: 30px 20px;
                margin: 20px 10px;
            }

            .transition-section p {
                font-size: 1rem;
            }

            .links-section {
                padding: 40px 20px;
                margin: 20px 10px;
            }

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

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

        @media (max-width: 480px) {
            header {
                padding: 40px 15px 30px;
            }

            header h1 {
                font-size: 1.6rem;
            }

            article {
                padding: 30px 15px;
            }

            article h2 {
                font-size: 1.4rem;
            }

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

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

            .links-section a {
                font-size: 0.95rem;
            }
        }
    