
    .course-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        background: #fff;
        height: 100%;
    }
    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        border-color: #045de9;
    }
    .course-icon {
        color: #045de9;
        font-size: 45px;
        margin-bottom: 15px;
    }
    .course-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 12px;
    }
    .course-desc {
        font-size: 14.5px;
        color: #555;
        line-height: 1.6;
    }
    .ssb-list {
        text-align: left;
        font-size: 14.5px;
        color: #555;
        padding-left: 0;
        list-style-type: none;
        margin-top: 10px;
    }
    .ssb-list li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 25px;
    }
    .ssb-list li::before {
        content: "\f00c"; /* FontAwesome Checkmark */
        font-family: FontAwesome;
        position: absolute;
        left: 0;
        color: #188f73; /* NDDA Green Accent */
    }