    /* Sidebar & Research Content Styles */
    .sidebar-widget { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 30px; background: #fff;}
    .sidebar-header { background: var(--primary-blue); color: #fff; padding: 15px 20px; font-weight: 700; }
    .sidebar-links { list-style: none; padding: 0; margin: 0; }
    .sidebar-links li a { display: block; padding: 12px 20px; color: var(--text-black); text-decoration: none; border-bottom: 1px solid #f0f0f0; transition: 0.3s; }
    .sidebar-links li a:hover, .sidebar-links li a.active { background: #f0f2ff; color: var(--primary-blue); font-weight: 600; border-left: 4px solid var(--accent-red); }

    .section-title { color: var(--text-black); font-weight: 700; margin-bottom: 25px; position: relative;text-align:center; }
    /*.section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--accent-red); margin-top: 10px; }*/

    .research-card {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        border: 1px solid #eef0f7;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        height: 100%;
        transition: 0.3s;
    }
    .research-icon { font-size: 2.5rem; color: var(--accent-red); margin-bottom: 20px; }
    
    .highlight-list { list-style: none; padding: 0; }
    .highlight-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: 500; }
.highlight-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free"; /* ✅ FIX */
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-red);
}


    /* Footer Styles from Old Code */
    .footer { background: #000; color: #fff; }
    .footer-top { background: #111; padding: 60px 0; }
    .footer h5 { color: #fff; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; font-size: 1.1rem;}
    .footer .menu { list-style: none; padding: 0; }
    .footer .menu li { margin-bottom: 8px; }
    .footer .menu li a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
    .footer .menu li a:hover { color: var(--accent-red); padding-left: 5px; }
    .contact-info { list-style: none; padding: 0; }
    .contact-info li { margin-bottom: 15px; display: flex; align-items: flex-start; }
    .contact-info .icon { width: 35px; height: 35px; background: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; flex-shrink: 0;}
    .footer-bottom { background: #000; padding: 20px 0; text-align: center; font-size: 0.85rem; border-top: 1px solid #222; }