
        /* Custom subtle breathing light effect for Hero Image */
        @keyframes breath-shadow {
            0% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 0 35px rgba(59, 130, 246, 0.6); }
            100% { box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); }
        }
        .breathing-light {
            animation: breath-shadow 3s infinite ease-in-out;
        }
        
        /* Aggregator Scope Compensation CSS */
        .aggregator-scope {
            font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.5;
            color: #1f2937;
        }
        .aggregator-scope * {
            box-sizing: border-box;
        }
        .aggregator-scope img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .aggregator-scope h1, .aggregator-scope h2, .aggregator-scope h3, .aggregator-scope h4 {
            margin-top: 0;
            font-weight: bold;
        }
        .aggregator-scope p {
            margin-top: 0;
        }
        .aggregator-scope a {
            text-decoration: none;
            color: inherit;
        }
    