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

        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #171d27;
            background: #000;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 990px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 8px;
            margin-top: 20px;
            margin-bottom: 20px;
            flex: 1;
        }

        h1 {
            font-size: 2.2em;
            color: #1F3E64;
            margin-bottom: 30px;
            font-weight: bold;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #2E72BB;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        article h2, article h3, article h4, article h5, article h6 {
            margin: 25px 0 15px 0;
            color: #1F3E64;
        }

        article h2 {
            font-size: 1.5em;
            color: #2E72BB;
        }

        article h3 {
            font-size: 1.3em;
        }

        article h4 {
            font-size: 1.1em;
        }

        .transition-section {
            background: #f3f3f3;
            padding: 25px;
            border-radius: 6px;
            margin-bottom: 30px;
            border-left: 4px solid #2E72BB;
        }

        .transition-section p {
            margin-bottom: 15px;
        }

        .links-section {
            background: #ffffff;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .links-section h3 {
            color: #1F3E64;
            font-size: 1.4em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #2E72BB;
            text-decoration: none;
            display: block;
            padding: 10px 15px;
            background: #f8f9fa;
            border-radius: 4px;
            transition: all 0.3s ease;
            border-left: 3px solid #2E72BB;
        }

        .links-section a:hover {
            background: #e3ebec;
            color: #1F3E64;
            transform: translateX(5px);
            text-decoration: none;
        }

        footer {
            background: #333;
            color: #999;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 15px;
                border-radius: 6px;
            }

            h1 {
                font-size: 1.8em;
                margin-bottom: 20px;
            }

            .links-section {
                padding: 20px;
            }

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

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

            article {
                margin-bottom: 30px;
            }

            article p {
                font-size: 15px;
                margin-bottom: 15px;
            }
        }

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

            h1 {
                font-size: 1.6em;
                margin-bottom: 15px;
            }

            .links-section {
                padding: 15px;
            }

            .transition-section {
                padding: 15px;
            }

            article p {
                font-size: 14px;
                line-height: 1.6;
            }
        }
    