  /* ====== GLOBAL VARIABLES ====== */
        :root {
            --primary-pg15: #1a365d;
            --secondary-pg15: #2d3748;
            --accent-pg15: #4299e1;
            --gold-pg15: #d4af37;
            --light-pg15: #f7fafc;
            --border-pg15: #e2e8f0;
            --text-pg15: #2d3748;
        }
        
        /* ====== HERO SECTION ====== */
        .fx-hero-pg15 {
            background: linear-gradient(135deg, var(--primary-pg15) 0%, #2d3748 100%);
            color: white;
            padding: 80px 0 40px;
            margin-bottom: 40px;
        }
        
        .fx-hero-content-pg15 {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }
        
        .breadcrumb-pg15 {
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .breadcrumb-pg15 a {
            color: var(--accent-pg15);
            text-decoration: none;
        }
        
        .breadcrumb-pg15 span {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .fx-hero-pg15 h1 {
            font-size: 40px;
            font-weight: 700;
            margin: 0 0 20px 0;
            line-height: 1.2;
            color: white;
        }
        
        .fx-hero-lead-pg15 {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .fx-hero-stats-pg15 {
            display: flex;
            gap: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fx-stat-pg15 {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .fx-stat-number-pg15 {
            font-size: 18px;
            font-weight: 600;
            color: var(--accent-pg15);
        }
        
        .fx-stat-label-pg15 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
        }
        
        /* ====== ARTICLE CONTENT ====== */
        .article-content-pg15 {
            padding: 60px 0;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .article-body-pg15 {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-pg15);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        .article-body-pg15 h2 {
            color: var(--primary-pg15);
            margin-top: 48px;
            margin-bottom: 24px;
            font-size: 28px;
            font-weight: 700;
            border-bottom: 2px solid var(--border-pg15);
            padding-bottom: 12px;
        }
        
        .article-body-pg15 h3 {
            color: var(--secondary-pg15);
            margin-top: 36px;
            margin-bottom: 18px;
            font-size: 22px;
            font-weight: 600;
        }
        
        .article-body-pg15 p {
            margin-bottom: 24px;
        }
        
        /* ====== KEY INSIGHT BOX ====== */
        .key-insight-pg15 {
            background: #f0fff4;
            border: 1px solid #c6f6d5;
            border-radius: 8px;
            padding: 24px;
            margin: 30px 0;
            position: relative;
        }
        
        .key-insight-pg15::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--gold-pg15);
        }
        
        .key-insight-pg15 h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 0;
            margin-bottom: 16px;
            color: #276749;
            font-size: 20px;
        }
        
        .key-insight-pg15 h3 i {
            color: var(--gold-pg15);
            font-size: 24px;
        }
        
        /* ====== WARNING BOX ====== */
        .warning-box-pg15 {
            background: #fffaf0;
            border: 1px solid #fed7d7;
            border-left: 4px solid #c53030;
            border-radius: 0 6px 6px 0;
            padding: 20px;
            margin: 25px 0;
        }
        
        .warning-box-pg15 h4 {
            color: #c53030;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .warning-box-pg15 h4 i {
            color: #c53030;
        }
        
        /* ====== DATA POINTS GRID ====== */
        .data-points-pg15 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .data-point-pg15 {
            background: white;
            border: 1px solid var(--border-pg15);
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.2s ease;
        }
        
        .data-point-pg15:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .data-icon-pg15 {
            width: 40px;
            height: 40px;
            background: var(--gold-pg15);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .data-content-pg15 h4 {
            color: var(--primary-pg15);
            margin: 0 0 10px 0;
            font-size: 18px;
            font-weight: 600;
        }
        
        /* ====== KEY TAKEAWAYS ====== */
        .key-takeaways-pg15 {
            background: linear-gradient(135deg, #FFF9E6 0%, #FFE999 100%);
            border: 2px solid var(--gold-pg15);
            border-radius: 12px;
            padding: 32px;
            margin: 48px 0;
        }
        
        .key-takeaways-pg15 h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 0;
            margin-bottom: 25px;
            color: var(--primary-pg15);
            font-size: 22px;
        }
        
        .key-takeaways-pg15 h3 i {
            color: var(--gold-pg15);
        }
        
        .key-takeaways-pg15 ul {
            padding-left: 20px;
            margin: 0;
        }
        
        .key-takeaways-pg15 li {
            margin-bottom: 16px;
            line-height: 1.6;
            color: var(--text-pg15);
            font-size: 16px;
        }
        
        .key-takeaways-pg15 li strong {
            color: var(--primary-pg15);
            font-weight: 600;
        }
        
        /* ====== RESPONSIVE DESIGN ====== */
        @media (max-width: 768px) {
            .fx-hero-pg15 {
                padding: 60px 0 30px;
            }
            
            .fx-hero-pg15 h1 {
                font-size: 32px;
            }
            
            .fx-hero-lead-pg15 {
                font-size: 16px;
            }
            
            .article-body-pg15 h2 {
                font-size: 24px;
            }
            
            .article-body-pg15 h3 {
                font-size: 20px;
            }
            
            .data-points-pg15 {
                grid-template-columns: 1fr;
            }
        }
        /* 2. Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #e6a23c;
    text-decoration: underline;
}

.breadcrumb span {
    color: #e6a23c;
    font-weight: 600;
}
/* Fix for hero stats */
.fx-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.fx-stat {
    text-align: left;
}

.fx-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e6a23c;
    display: block;
    line-height: 1;
}

.fx-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Data points with lift effect */
.data-point-pg15 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-point-pg15:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Key insight subtle pulse */
.key-insight-pg15 {
    transition: border-color 0.3s ease;
}

.key-insight-pg15:hover {
    border-color: var(--gold-pg15);
}

/* Gold icon rotation */
.data-icon-pg15 {
    transition: transform 0.5s ease, background 0.3s ease;
}

.data-point-pg15:hover .data-icon-pg15 {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, var(--gold-pg15), #b8860b);
}

/* Header underline animation */
.article-body-pg15 h2 {
    position: relative;
}

.article-body-pg15 h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-pg15);
    transition: width 0.5s ease;
}

.article-body-pg15 h2:hover::after {
    width: 100%;
}

/* Counter animation for stats */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fx-stat-number-pg15 {
    animation: countUp 1s ease-out forwards;
}

/* Scroll-based reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}