 :root {
            --primary-color: var(--brand-primary);
            --secondary-color: var(--brand-hover);
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-hover) 100%);
            min-height: 100vh;
        }

        .page-header {
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .header-logo img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .header-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-inverse);
        }

        .back-btn {
            background: var(--card-bg);
            color: var(--brand-primary);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .content-wrapper {
            max-width: 1000px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 2rem;
        }

        .info-card h1 {
            color: var(--brand-primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .info-card h2 {
            color: var(--brand-hover);
            font-size: 1.6rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .info-card h3 {
            color: var(--brand-primary);
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .info-card p {
            color: var(--text-primary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .info-card ul {
            color: var(--text-primary);
            line-height: 1.8;
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        .highlight-box {
            background: #f0f7ff;
            border-left: 4px solid var(--brand-primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        .highlight-box p {
            margin: 0;
        }

        .highlight-box p + p {
            margin-top: 1rem;
        }

        .highlight-box.footer-box {
            margin-top: 2rem;
        }

        .info-card a {
            color: var(--brand-primary);
            text-decoration: none;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        .related-links {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }

        .related-links h3 {
            color: var(--brand-hover);
            margin-bottom: 1rem;
        }

        .related-links ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .related-links li {
            margin-bottom: 0;
        }

        .related-links a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #f0f7ff;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .related-links a:hover {
            background: var(--brand-primary);
            color: var(--text-inverse);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .info-card {
                padding: 2rem 1.5rem;
            }

            .info-card h1 {
                font-size: 2rem;
            }
        }

/* == Inline styles extracted == */
.ic-3fc759 { width:100%;border-collapse:collapse;font-size:0.9em; }
.ic-e3867f { padding:8px;border:1px solid var(--border-color);text-align:left; }
.table-cell { padding: 8px; border: 1px solid var(--border-color); }
.tr-striped { background: var(--bg-primary); }
.tr-highlighted { background: var(--brand-primary-alpha); }
