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

        body {
            background: #f8f4f0;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.4;
            color: #444;
            min-height: 100vh;
        }

        .page-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            background: #fff;
            min-height: 100vh;
            position: relative;
        }

        header {
            background: linear-gradient(135deg, #472f91 0%, #10a8e2 100%);
            padding: 20px 0;
            text-align: center;
            position: relative;
        }

        header h1 {
            color: #fff;
            font-size: 24px;
            font-weight: normal;
            margin: 0;
        }

        .main-content {
            display: flex;
            flex-wrap: wrap;
            padding: 20px;
            gap: 30px;
        }

        .content-area {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 8px;
        }

        article {
            margin-bottom: 30px;
        }

        article h2, article h3, article h4, article h5, article h6 {
            color: #000;
            font-weight: normal;
            margin: 20px 0 15px 0;
            line-height: 1.3;
        }

        article h2 {
            font-size: 24px;
        }

        article h3 {
            font-size: 20px;
        }

        article h4 {
            font-size: 18px;
        }

        article p {
            margin: 15px 0;
            color: #444;
            line-height: 1.6;
        }

        article ul, article ol {
            margin: 15px 0;
            padding-left: 25px;
        }

        article li {
            margin: 8px 0;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            border-left: 4px solid #10a8e2;
        }

        .links-section {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-top: 30px;
            border: 1px solid #e0e0e0;
        }

        .links-section h3 {
            color: #10a8e2;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #10a8e2;
        }

        .links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .links-grid ul {
            list-style: none;
            padding: 0;
        }

        .links-grid li {
            margin: 8px 0;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .links-grid li:last-child {
            border-bottom: none;
        }

        .links-grid a {
            color: #472f91;
            text-decoration: none;
            font-size: 13px;
            line-height: 1.4;
            display: block;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .links-grid a:hover {
            color: #10a8e2;
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(135deg, #472f91 0%, #10a8e2 100%);
            color: #fff;
            padding: 20px;
            text-align: center;
            font-size: 12px;
            margin-top: auto;
        }

        footer a {
            color: #fff;
        }

        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: -1;
        }

        .decorative-elements::before {
            content: '';
            position: absolute;
            top: 10px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(16, 168, 226, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .decorative-elements::after {
            content: '';
            position: absolute;
            top: 100px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(71, 47, 145, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .page-wrapper {
                margin: 0;
            }

            .main-content {
                padding: 15px;
                gap: 20px;
            }

            header h1 {
                font-size: 20px;
                padding: 0 15px;
            }

            .links-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .links-section {
                padding: 15px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

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

        @media (max-width: 480px) {
            body {
                font-size: 13px;
            }

            header h1 {
                font-size: 18px;
            }

            .main-content {
                padding: 10px;
            }

            .links-section {
                padding: 12px;
            }

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