   /* Scoped CSS for Footer */
    #article-hub-footer-wrapper { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    #article-hub-footer-wrapper .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    #article-hub-footer-wrapper footer { background: #1a1a2e; color: #fff; padding: 80px 0 20px 0; margin-top: 50px; }
    #article-hub-footer-wrapper .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 50px; }
    
    #article-hub-footer-wrapper .footer-about h2 { font-size: 30px; margin-bottom: 20px; color: #fff; }
    #article-hub-footer-wrapper .footer-about h2 span { color: #ff4d4d; }
    #article-hub-footer-wrapper .footer-about p { color: #adb5bd; font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
    
    #article-hub-footer-wrapper .footer-social a { background: #2a2a40; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; color: #fff; text-decoration: none; transition: 0.3s; }
    #article-hub-footer-wrapper .footer-social a:hover { background: #ff4d4d; }

    #article-hub-footer-wrapper .footer-links h3 { margin-bottom: 25px; position: relative; font-size: 18px; color: #fff; }
    #article-hub-footer-wrapper .footer-links h3::after { content: ''; width: 30px; height: 2px; background: #ff4d4d; position: absolute; bottom: -8px; left: 0; }
    #article-hub-footer-wrapper .footer-links ul { list-style: none; padding: 0; }
    #article-hub-footer-wrapper .footer-links ul li { margin-bottom: 12px; }
    #article-hub-footer-wrapper .footer-links ul li a { color: #adb5bd; font-size: 14px; text-decoration: none; transition: 0.3s; }
    #article-hub-footer-wrapper .footer-links ul li a:hover { color: #ff4d4d; padding-left: 5px; }

    #article-hub-footer-wrapper .newsletter h3 { margin-bottom: 25px; font-size: 18px; }
    #article-hub-footer-wrapper .newsletter p { font-size: 14px; color: #adb5bd; margin-bottom: 20px; }
    #article-hub-footer-wrapper .subscribe-form { display: flex; }
    #article-hub-footer-wrapper .subscribe-form input { padding: 12px; border: none; background: #2a2a40; color: #fff; width: 100%; border-radius: 4px 0 0 4px; outline: none; }
    #article-hub-footer-wrapper .subscribe-form button { background: #ff4d4d; border: none; color: #fff; padding: 0 20px; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; transition: 0.3s; }
    #article-hub-footer-wrapper .subscribe-form button:hover { background: #e64545; }

    #article-hub-footer-wrapper .footer-bottom { border-top: 1px solid #2a2a40; padding-top: 20px; text-align: center; color: #666; font-size: 13px; }
    #article-hub-footer-wrapper .footer-bottom span { color: #ff4d4d; }

    @media (max-width: 992px) {
        #article-hub-footer-wrapper .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        #article-hub-footer-wrapper .footer-grid { grid-template-columns: 1fr; }
    }