body { 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
}

.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.job-card { 
    transition: all 0.2s ease-in-out; 
    border-radius: 16px;
    cursor: pointer;
}

.job-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important; 
    border-color: #198754 !important;
}

.job-card:hover .btn-light {
    background-color: #198754;
    color: white !important;
}

.company-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.object-fit-contain {
    object-fit: contain;
}