    /* Content Area */
    .section-title { color: var(--primary-blue); font-weight: 700; margin-bottom: 25px; }
    p { color: var(--text-black); }
	.register-para{color: #fff !important;}

    .breadcrumb-area { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; }
    .breadcrumb-area a { color: var(--primary-blue); text-decoration: none; font-weight: 500; }

    /* Sidebar */
    .sidebar-widget { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 30px; }
    .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); }

    /* Quote Box */
    .quote-box {
        border-left: 6px solid var(--accent-red);
        background: #f8f9ff;
        padding: 35px;
        margin-bottom: 40px;
        border-radius: 0 8px 8px 0;
    }
    .quote-box p { font-size: 1.4rem; font-style: italic; color: var(--primary-blue); margin-bottom: 10px; }
    .quote-box span { font-weight: 700; color: var(--text-black); }

    /* Cards */
    .feature-card {
        background: #fff;
        padding: 35px;
        border-radius: 12px;
        border: 1px solid #eef0f7;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        height: 100%;
        transition: 0.3s;
    }
    .feature-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); }
    .feature-icon { font-size: 2.5rem; color: var(--accent-red); margin-bottom: 20px; }
    .feature-card h4 { color: var(--primary-blue); font-weight: 700; margin-bottom: 15px; }

    /* Highlights */
    .highlight-list { list-style: none; padding: 0; }
    .highlight-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text-black); 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);
}
