body { background-color: #f8f9fa; font-family: 'Segoe UI', sans-serif; }
.hero-section {
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.job-card {
    border-left: 4px solid #0d6efd;
    transition: transform 0.2s ease-in-out;
}
.job-card:hover {
    transform: scale(1.02);
}

.filter-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.filter-card-header {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-card-body {
    padding: 16px;
}

.filter-card .form-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-card .form-select {
    font-size: 0.88rem;
}


.course-list {
    max-height: 620px;
    overflow-y: auto;
    padding-left: 0;
    margin-bottom: 0;
}

.course-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list a {
    text-decoration: none;
    color: #0d6efd;
    display: block;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
}

.course-list a:hover {
    color: #198754;
    padding-left: 5px;
}

.free-course-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #dee2e6;
}

.free-course-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}
.free-course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.free-course-header {
    background: linear-gradient(45deg, #0d6efd, #198754);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-course-body {
    padding: 15px;
}

.free-course-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.free-course-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e2e2e2;
    padding-bottom: 6px;
}

.free-course-list li:last-child {
    border-bottom: none;
}

.free-course-list a {
    text-decoration: none;
    color: #0d6efd;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.free-course-list a:hover {
    color: #198754;
    transform: translateX(5px);
}

.free-course-list i {
    margin-right: 6px;
    color: #6c757d;
}


body { background: #f8f9fa; font-family: 'Segoe UI', sans-serif; }
.job-header { background: #0d6efd; color: white; padding: 40px 20px; }
.job-tags span { margin-right: 6px; margin-bottom: 6px; display: inline-block; }
.apply-btn { background: #198754; color: white; }
.apply-btn:hover { background: #157347; }